info_sku.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  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. 'check' => 'code',
  12. # 数据结构 不同的字段放这里
  13. 'struct' => array
  14. (
  15. 'id' => array
  16. (
  17. 'type' => 'int-11',
  18. 'name' => 'ID',
  19. 'default' => '',
  20. 'desc' => '',
  21. 'match' => 'is_numeric',
  22. //'list' => true,
  23. ),
  24. 'info_id' => array
  25. (
  26. 'type' => 'int-11',
  27. 'name' => '商品ID',
  28. 'default' => '',
  29. 'desc' => '商品ID',
  30. 'match' => 'is_numeric',
  31. 'update' => 'text',
  32. 'list' => true,
  33. ),
  34. 'key' => array
  35. (
  36. 'type' => 'varchar-100',
  37. 'name' => '属性标识',
  38. 'default' => '-1',
  39. 'desc' => '属性标识',
  40. 'match' => 'is_string',
  41. 'update' => 'text',
  42. ),
  43. 'attr' => array
  44. (
  45. 'type' => 'text-255',
  46. 'name' => '属性组合规则',
  47. 'default' => '',
  48. 'desc' => '属性组合规则',
  49. 'match' => 'is_string',
  50. 'update' => 'textarea',
  51. 'list' => true,
  52. ),
  53. 'type' => array
  54. (
  55. 'type' => 'tinyint-1',
  56. 'name' => '属性类型',
  57. 'default' => '1',
  58. 'desc' => '属性类型',
  59. 'match' => 'is_numeric',
  60. 'update' => 'radio',
  61. 'option' => $type,
  62. ),
  63. 'code' => array
  64. (
  65. 'type' => 'varchar-100',
  66. 'name' => '商品条码号',
  67. 'default' => '',
  68. 'desc' => '商品条码号',
  69. 'match' => 'is_string',
  70. 'update' => 'text',
  71. 'search' => 'fulltext',
  72. 'list' => true,
  73. ),
  74. 'price' => array
  75. (
  76. 'type' => 'varchar-100',
  77. 'name' => '销售价',
  78. 'default' => '',
  79. 'desc' => '销售价',
  80. 'match' => 'option',
  81. 'update' => 'text',
  82. 'list' => true,
  83. ),
  84. 's_price' => array
  85. (
  86. 'type' => 'varchar-100',
  87. 'name' => '市场价',
  88. 'default' => '',
  89. 'desc' => '市场价',
  90. 'match' => 'option',
  91. 'update' => 'text',
  92. 'list' => true,
  93. ),
  94. 'f_price' => array
  95. (
  96. 'type' => 'varchar-100',
  97. 'name' => '门店采购价',
  98. 'default' => '',
  99. 'desc' => '采购价',
  100. 'match' => 'option',
  101. 'update' => 'text',
  102. 'list' => true,
  103. ),
  104. 'c_price' => array
  105. (
  106. 'type' => 'varchar-100',
  107. 'name' => '成本价',
  108. 'default' => '',
  109. 'desc' => '成本价',
  110. 'match' => 'option',
  111. 'update' => 'text',
  112. //'list' => true,
  113. ),
  114. 'min' => array
  115. (
  116. 'type' => 'int-11',
  117. 'name' => '起购数',
  118. 'default' => '1',
  119. 'desc' => '起购数',
  120. 'match' => 'is_string',
  121. 'update' => 'text',
  122. 'list' => true,
  123. ),
  124. 'unit' => array
  125. (
  126. 'type' => 'varchar-100',
  127. 'name' => '计量单位',
  128. 'default' => '',
  129. 'desc' => '计量单位',
  130. 'match' => 'is_string',
  131. //'update' => 'text',
  132. //'list' => true,
  133. ),
  134. 'weight' => array
  135. (
  136. 'type' => 'varchar-100',
  137. 'name' => '重量',
  138. 'default' => '',
  139. 'desc' => '重量',
  140. 'match' => 'is_string',
  141. //'update' => 'text',
  142. //'list' => true,
  143. ),
  144. 'cunhuo_code' => array
  145. (
  146. 'type' => 'varchar-100',
  147. 'name' => '存货编码',
  148. 'default' => '',
  149. 'desc' => '存货编码',
  150. 'match' => 'is_string',
  151. //'update' => 'text',
  152. //'list' => true,
  153. ),
  154. 'num' => array
  155. (
  156. 'type' => 'int-11',
  157. 'name' => '库存',
  158. 'default' => '',
  159. 'desc' => '库存',
  160. 'match' => 'is_string',
  161. 'update' => 'text',
  162. 'list' => true,
  163. ),
  164. 'sell_num' => array
  165. (
  166. 'type' => 'int-11',
  167. 'name' => '销量',
  168. 'default' => '0',
  169. 'desc' => '请填写销量',
  170. 'match' => 'option',
  171. 'search' => 'order',
  172. 'list' => true,
  173. ),
  174. 'reorder' => array
  175. (
  176. 'type' => 'int-11',
  177. 'name' => '排序-数值越大越靠前,相当于置顶',
  178. 'default' => '1',
  179. 'desc' => '请输入排序',
  180. 'match' => 'option',
  181. //'update' => 'text',
  182. 'search' => 'order',
  183. 'list' => true,
  184. 'order' => 'desc',
  185. 'edit' => true,
  186. ),
  187. 'state' => array
  188. (
  189. 'type' => 'tinyint-1',
  190. 'name' => '数据状态',
  191. 'default' => '1',
  192. 'desc' => '请选择状态',
  193. 'match' => 'is_numeric',
  194. ),
  195. 'cdate' => array
  196. (
  197. 'type' => 'int-11',
  198. 'name' => '发布时间',
  199. 'match' => array('is_numeric', time()),
  200. 'desc' => '',
  201. # 只有insert时才生效
  202. 'insert' => true,
  203. //'search' => 'date',
  204. //'list' => 'date("Y-m-d H:i:s", {cdate})',
  205. ),
  206. ),
  207. 'alter' => array
  208. (
  209. 2 => array
  210. (
  211. array('update', 'price', 'price', 'varchar-100 0 销售价'),
  212. array('update', 's_price', 's_price', 'varchar-100 0 市场价'),
  213. array('update', 'f_price', 'f_price', 'varchar-100 0 采购价'),
  214. ),
  215. 'version' => 2,
  216. ),
  217. 'manage' => array
  218. (
  219. 'insert' => false,
  220. 'edit' => false,
  221. 'delete' => false,
  222. 'num' => false,
  223. 'page_list_table' => 'sku',
  224. # 自定义快捷新增和编辑
  225. 'button' => array
  226. (
  227. //'自定义属性' => array('fast', 1, 'config&where_id=1'),
  228. ),
  229. ),
  230. # request 请求接口定义
  231. 'request' => array
  232. (
  233. # 后台搜索用到 也可以不加,自动生成
  234. 'search' => array
  235. (
  236. # 匹配的正则或函数 选填项
  237. 'option' => array
  238. (
  239. 'ids' => array('yes-id', 'in'),
  240. 'info_id' => 'yes',
  241. 'id' => 'yes',
  242. 'state' => 1,
  243. ),
  244. 'type' => 'all',
  245. 'order' => array('reorder' => 'desc', 'id' => 'desc'),
  246. 'limit' => '0,10',
  247. 'col' => 'key as name, id, id as value, "" as selected, "" as disabled|id',
  248. ),
  249. # 列表
  250. 'getData' => array
  251. (
  252. # 匹配的正则或函数 选填项
  253. 'option' => array
  254. (
  255. 'info_id' => 'yes',
  256. 'state' => 1,
  257. ),
  258. 'type' => 'all',
  259. 'order' => array('id' => 'desc'),
  260. 'col' => 'id,info_id,`key`,price,s_price,f_price,c_price,type,min,code,unit,weight,cunhuo_code',
  261. ),
  262. # 列表
  263. 'getDataByKeys' => array
  264. (
  265. # 匹配的正则或函数 选填项
  266. 'option' => array
  267. (
  268. 'info_id' => 'yes',
  269. 'state' => 1,
  270. ),
  271. 'type' => 'all',
  272. 'order' => array('id' => 'desc'),
  273. 'col' => 'id,info_id,`key`,price,s_price,f_price,c_price,min,code,unit,weight,cunhuo_code|key',
  274. ),
  275. # 获取单条数据
  276. 'getOne' => array
  277. (
  278. # 匹配的正则或函数 选填项
  279. 'option' => array
  280. (
  281. 'info_id' => 'yes',
  282. 'state' => 1,
  283. ),
  284. 'type' => 'one',
  285. 'col' => 'id,info_id,price,s_price,f_price,c_price,min,code,unit,weight,cunhuo_code',
  286. ),
  287. 'getMinOne' => array
  288. (
  289. # 匹配的正则或函数 选填项
  290. 'option' => array
  291. (
  292. 'info_id' => 'yes',
  293. 'state' => 1,
  294. ),
  295. 'type' => 'one',
  296. 'order' => array('price' => 'asc', 'id' => 'desc'),
  297. 'col' => 'id,info_id,price,s_price,min,code,unit,weight,cunhuo_code',
  298. ),
  299. 'getMaxOne' => array
  300. (
  301. # 匹配的正则或函数 选填项
  302. 'option' => array
  303. (
  304. 'info_id' => 'yes',
  305. 'state' => 1,
  306. ),
  307. 'type' => 'one',
  308. 'order' => array('price' => 'desc', 'id' => 'desc'),
  309. 'col' => 'id,info_id,price,s_price,min,code,unit,weight,cunhuo_code',
  310. ),
  311. # 更新售出量
  312. 'updateSell' => array
  313. (
  314. 'type' => 'update',
  315. 'where' => array
  316. (
  317. 'id' => 'yes',
  318. ),
  319. 'set' => array
  320. (
  321. 'sell_num' => array('yes', '+='),
  322. ),
  323. ),
  324. 'like' => array
  325. (
  326. # 匹配的正则或函数 选填项
  327. 'option' => array
  328. (
  329. 'code' => array('yes', 'like'),
  330. 'id' => 'yes',
  331. 'state' => 1,
  332. ),
  333. 'type' => 'all',
  334. 'order' => array('reorder' => 'desc', 'id' => 'desc'),
  335. 'col' => '*|id',
  336. ),
  337. ),
  338. );
  339. return $config;