info_sku.php 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. <?php
  2. $type = Dever::db('attr/info')->config['sell_type'];
  3. $config = array
  4. (
  5. # 表名
  6. 'name' => 'info_sku',
  7. # 显示给用户看的名称
  8. 'lang' => '商品价格设置',
  9. 'order' => 200,
  10. 'menu' => false,
  11. # 数据结构 不同的字段放这里
  12. 'struct' => array
  13. (
  14. 'id' => array
  15. (
  16. 'type' => 'int-11',
  17. 'name' => 'ID',
  18. 'default' => '',
  19. 'desc' => '',
  20. 'match' => 'is_numeric',
  21. //'list' => true,
  22. ),
  23. 'info_id' => array
  24. (
  25. 'type' => 'int-11',
  26. 'name' => '商品ID',
  27. 'default' => '',
  28. 'desc' => '商品ID',
  29. 'match' => 'is_numeric',
  30. 'update' => 'text',
  31. 'list' => true,
  32. ),
  33. 'key' => array
  34. (
  35. 'type' => 'varchar-100',
  36. 'name' => '属性标识',
  37. 'default' => '-1',
  38. 'desc' => '属性标识',
  39. 'match' => 'is_string',
  40. 'update' => 'text',
  41. ),
  42. 'attr' => array
  43. (
  44. 'type' => 'text-255',
  45. 'name' => '属性组合规则',
  46. 'default' => '',
  47. 'desc' => '属性组合规则',
  48. 'match' => 'is_string',
  49. 'update' => 'textarea',
  50. 'list' => true,
  51. ),
  52. 'type' => array
  53. (
  54. 'type' => 'tinyint-1',
  55. 'name' => '属性类型',
  56. 'default' => '1',
  57. 'desc' => '属性类型',
  58. 'match' => 'is_numeric',
  59. 'update' => 'radio',
  60. 'option' => $type,
  61. ),
  62. 'price' => array
  63. (
  64. 'type' => 'decimal-10,2',
  65. 'name' => '销售价',
  66. 'default' => '',
  67. 'desc' => '销售价',
  68. 'match' => 'option',
  69. 'update' => 'text',
  70. 'list' => true,
  71. ),
  72. 's_price' => array
  73. (
  74. 'type' => 'decimal-10,2',
  75. 'name' => '市场价',
  76. 'default' => '',
  77. 'desc' => '市场价',
  78. 'match' => 'option',
  79. 'update' => 'text',
  80. 'list' => true,
  81. ),
  82. 'f_price' => array
  83. (
  84. 'type' => 'decimal-10,2',
  85. 'name' => '采购价',
  86. 'default' => '',
  87. 'desc' => '采购价',
  88. 'match' => 'option',
  89. 'update' => 'text',
  90. 'list' => true,
  91. ),
  92. 'num' => array
  93. (
  94. 'type' => 'int-11',
  95. 'name' => '库存',
  96. 'default' => '',
  97. 'desc' => '库存',
  98. 'match' => 'is_string',
  99. 'update' => 'text',
  100. 'list' => true,
  101. ),
  102. 'sell_num' => array
  103. (
  104. 'type' => 'int-11',
  105. 'name' => '销量',
  106. 'default' => '0',
  107. 'desc' => '请填写销量',
  108. 'match' => 'option',
  109. 'search' => 'order',
  110. 'list' => true,
  111. ),
  112. 'reorder' => array
  113. (
  114. 'type' => 'int-11',
  115. 'name' => '排序-数值越大越靠前,相当于置顶',
  116. 'default' => '1',
  117. 'desc' => '请输入排序',
  118. 'match' => 'option',
  119. //'update' => 'text',
  120. 'search' => 'order',
  121. 'list' => true,
  122. 'order' => 'desc',
  123. 'edit' => true,
  124. ),
  125. 'state' => array
  126. (
  127. 'type' => 'tinyint-1',
  128. 'name' => '数据状态',
  129. 'default' => '1',
  130. 'desc' => '请选择状态',
  131. 'match' => 'is_numeric',
  132. ),
  133. 'cdate' => array
  134. (
  135. 'type' => 'int-11',
  136. 'name' => '发布时间',
  137. 'match' => array('is_numeric', time()),
  138. 'desc' => '',
  139. # 只有insert时才生效
  140. 'insert' => true,
  141. //'search' => 'date',
  142. //'list' => 'date("Y-m-d H:i:s", {cdate})',
  143. ),
  144. ),
  145. 'manage' => array
  146. (
  147. 'insert' => false,
  148. 'edit' => false,
  149. 'delete' => false,
  150. 'num' => false,
  151. 'page_list_table' => 'sku',
  152. # 自定义快捷新增和编辑
  153. 'button' => array
  154. (
  155. //'自定义属性' => array('fast', 1, 'config&where_id=1'),
  156. ),
  157. ),
  158. # request 请求接口定义
  159. 'request' => array
  160. (
  161. # 后台搜索用到 也可以不加,自动生成
  162. 'search' => array
  163. (
  164. # 匹配的正则或函数 选填项
  165. 'option' => array
  166. (
  167. 'ids' => array('yes-id', 'in'),
  168. 'info_id' => 'yes',
  169. 'id' => 'yes',
  170. 'state' => 1,
  171. ),
  172. 'type' => 'all',
  173. 'order' => array('reorder' => 'desc', 'id' => 'desc'),
  174. 'limit' => '0,10',
  175. 'col' => 'key as name, id, id as value, "" as selected, "" as disabled|id',
  176. ),
  177. # 列表
  178. 'getData' => array
  179. (
  180. # 匹配的正则或函数 选填项
  181. 'option' => array
  182. (
  183. 'info_id' => 'yes',
  184. 'state' => 1,
  185. ),
  186. 'type' => 'all',
  187. 'order' => array('id' => 'desc'),
  188. 'col' => 'id,info_id,`key`,price,s_price,type',
  189. ),
  190. # 列表
  191. 'getDataByKeys' => array
  192. (
  193. # 匹配的正则或函数 选填项
  194. 'option' => array
  195. (
  196. 'info_id' => 'yes',
  197. 'state' => 1,
  198. ),
  199. 'type' => 'all',
  200. 'order' => array('id' => 'desc'),
  201. 'col' => 'id,info_id,`key`,price,s_price,f_price|key',
  202. ),
  203. # 获取单条数据
  204. 'getOne' => array
  205. (
  206. # 匹配的正则或函数 选填项
  207. 'option' => array
  208. (
  209. 'info_id' => 'yes',
  210. 'state' => 1,
  211. ),
  212. 'type' => 'one',
  213. 'col' => 'id,info_id,price,s_price,f_price',
  214. ),
  215. 'getMinOne' => array
  216. (
  217. # 匹配的正则或函数 选填项
  218. 'option' => array
  219. (
  220. 'info_id' => 'yes',
  221. 'state' => 1,
  222. ),
  223. 'type' => 'one',
  224. 'order' => array('price' => 'asc', 'id' => 'desc'),
  225. 'col' => 'id,info_id,price,s_price',
  226. ),
  227. 'getMaxOne' => array
  228. (
  229. # 匹配的正则或函数 选填项
  230. 'option' => array
  231. (
  232. 'info_id' => 'yes',
  233. 'state' => 1,
  234. ),
  235. 'type' => 'one',
  236. 'order' => array('price' => 'desc', 'id' => 'desc'),
  237. 'col' => 'id,info_id,price,s_price',
  238. ),
  239. # 更新售出量
  240. 'updateSell' => array
  241. (
  242. 'type' => 'update',
  243. 'where' => array
  244. (
  245. 'id' => 'yes',
  246. ),
  247. 'set' => array
  248. (
  249. 'sell_num' => array('yes', '+='),
  250. ),
  251. ),
  252. ),
  253. );
  254. return $config;