code.php 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. <?php
  2. $status = array
  3. (
  4. 1 => '已生成',
  5. 2 => '已绑定',
  6. 3 => '已兑换',
  7. 4 => '已使用',
  8. 5 => '已过期',
  9. );
  10. $type = array
  11. (
  12. 1 => '商城用户',
  13. 2 => '代理商',
  14. );
  15. return array
  16. (
  17. # 表名
  18. 'name' => 'code',
  19. # 显示给用户看的名称
  20. 'lang' => '礼品卡卡号',
  21. 'status' => $status,
  22. 'check' => 'card',
  23. # 后台菜单排序
  24. 'order' => 99,
  25. 'menu' => false,
  26. # 数据结构
  27. 'struct' => array
  28. (
  29. 'id' => array
  30. (
  31. 'type' => 'int-11',
  32. 'name' => 'ID',
  33. 'default' => '',
  34. 'desc' => '',
  35. 'match' => 'is_numeric',
  36. 'search' => 'order',
  37. 'list' => true,
  38. 'order' => 'desc',
  39. ),
  40. 'card_id' => array
  41. (
  42. 'type' => 'int-11',
  43. 'name' => '礼品卡',
  44. 'default' => '',
  45. 'desc' => '礼品卡',
  46. 'match' => 'is_numeric',
  47. 'update' => 'hidden',
  48. 'search' => 'hidden',
  49. 'value' => Dever::input('search_option_card_id'),
  50. 'list' => 'Dever::load("card/info-find#name", "{card_id}")',
  51. ),
  52. 'card' => array
  53. (
  54. 'type' => 'varchar-32',
  55. 'name' => '卡号',
  56. 'default' => '',
  57. 'desc' => '卡号',
  58. 'match' => 'is_string',
  59. 'update' => 'text',
  60. 'search' => 'fulltext',
  61. 'list' => true,
  62. ),
  63. 'status' => array
  64. (
  65. 'type' => 'int-11',
  66. 'name' => '使用状态',
  67. 'default' => '1',
  68. 'desc' => '使用状态',
  69. 'match' => 'is_numeric',
  70. 'option' => $status,
  71. 'search' => 'select',
  72. 'update' => 'select',
  73. 'list' => true,
  74. //'mul' => array(1 => '恢复使用', 4 => '已作废'),
  75. ),
  76. 'total_cash' => array
  77. (
  78. 'type' => 'float-11,2',
  79. 'name' => '总额',
  80. 'default' => '0',
  81. 'desc' => '总额',
  82. 'match' => 'option',
  83. 'update' => 'text',
  84. ),
  85. 'use_cash' => array
  86. (
  87. 'type' => 'float-11,2',
  88. 'name' => '已使用',
  89. 'default' => '0',
  90. 'desc' => '已使用',
  91. 'match' => 'option',
  92. 'update' => 'text',
  93. ),
  94. 'type' => array
  95. (
  96. 'type' => 'tinyint-1',
  97. 'name' => '类型',
  98. 'default' => '1',
  99. 'desc' => '类型',
  100. 'match' => 'is_numeric',
  101. 'option' => $type,
  102. ),
  103. 'uid' => array
  104. (
  105. 'type' => 'int-11',
  106. 'name' => '下单用户',
  107. 'default' => '0',
  108. 'desc' => '下单用户',
  109. 'match' => 'is_numeric',
  110. 'list_name' => '更多信息',
  111. 'list' => 'Dever::load("card/lib/manage.showUserInfo", "{id}")',
  112. ),
  113. 'dh_uid' => array
  114. (
  115. 'type' => 'int-11',
  116. 'name' => '兑换用户',
  117. 'default' => '0',
  118. 'desc' => '兑换用户',
  119. 'match' => 'is_numeric',
  120. ),
  121. 'shop_id' => array
  122. (
  123. 'type' => 'int-11',
  124. 'name' => '门店',
  125. 'default' => '',
  126. 'desc' => '门店',
  127. 'match' => 'is_numeric',
  128. ),
  129. 'city' => array
  130. (
  131. 'type' => 'int-11',
  132. 'name' => '城市',
  133. 'default' => '',
  134. 'desc' => '城市',
  135. 'match' => 'option',
  136. //'update' => 'text',
  137. ),
  138. 'order_id' => array
  139. (
  140. 'type' => 'int-11',
  141. 'name' => '订单表id',
  142. 'default' => '',
  143. 'desc' => '订单表id',
  144. 'match' => 'is_numeric',
  145. ),
  146. 'order_card_id' => array
  147. (
  148. 'type' => 'int-11',
  149. 'name' => '订单表id',
  150. 'default' => '',
  151. 'desc' => '订单表id',
  152. 'match' => 'is_numeric',
  153. ),
  154. 'bdate' => array
  155. (
  156. 'type' => 'int-11',
  157. 'name' => '绑定时间',
  158. 'match' => 'option',
  159. 'default' => '',
  160. 'desc' => '',
  161. //'search' => 'date',
  162. ),
  163. 'ddate' => array
  164. (
  165. 'type' => 'int-11',
  166. 'name' => '兑换时间',
  167. 'match' => 'option',
  168. 'default' => '',
  169. 'desc' => '',
  170. // 'search' => 'date',
  171. ),
  172. 'state' => array
  173. (
  174. 'type' => 'tinyint-1',
  175. 'name' => '状态',
  176. 'default' => '1',
  177. 'desc' => '请选择状态',
  178. 'match' => 'is_numeric',
  179. ),
  180. 'cdate' => array
  181. (
  182. 'type' => 'int-11',
  183. 'name' => '生成时间',
  184. 'match' => array('is_numeric', time()),
  185. 'desc' => '',
  186. # 只有insert时才生效
  187. 'insert' => true,
  188. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  189. ),
  190. ),
  191. 'alter' => array
  192. (
  193. 2 => array
  194. (
  195. array('update', 'total_cash', 'total_cash', 'float-11 0 总面值'),
  196. array('update', 'use_cash', 'use_cash', 'float-11 0 已用面值'),
  197. ),
  198. 'version' => 2,
  199. ),
  200. 'manage' => array
  201. (
  202. 'excel' => array(array('导出数据', '礼品卡卡号列表', 'card/lib/manage.outCode')),
  203. 'delete' => false,
  204. 'edit' => false,
  205. 'insert' => false,
  206. // 'mul' => '{type} == 1 || {type} == 4',
  207. 'list_button' => array
  208. (
  209. //'oper' => array('作废', 'goods/lib/manage.drop?id={id}', '{type} == 1'),
  210. //'oper2' => array('恢复使用', 'goods/lib/manage.recovery?id={id}', '{type} == 4'),
  211. ),
  212. ),
  213. # 索引
  214. 'index' => array
  215. (
  216. # 索引名 => 索引id
  217. 1 => array
  218. (
  219. 'card' => 'card',
  220. 'uid' => 'uid',
  221. 'dh_uid' => 'dh_uid',
  222. ),
  223. 'version' => 1,
  224. ),
  225. 'request' => array
  226. (
  227. 'getData' => array
  228. (
  229. # 匹配的正则或函数 选填项
  230. 'option' => array
  231. (
  232. 'uid' => 'yes',
  233. 'dh_uid' => 'yes',
  234. 'card_id' => 'yes',
  235. 'status' => 'yes',
  236. 'state' => 1,
  237. ),
  238. 'type' => 'all',
  239. //'limit' => '0,1000',
  240. 'order' => array('ddate' => 'desc'),
  241. 'col' => '*',
  242. ),
  243. 'getPageData' => array
  244. (
  245. # 匹配的正则或函数 选填项
  246. 'option' => array
  247. (
  248. 'uid' => 'yes',
  249. 'dh_uid' => 'yes',
  250. 'status' => 'yes',
  251. 'state' => 1,
  252. ),
  253. 'type' => 'all',
  254. 'page' => array(100, 'list'),
  255. 'order' => array('total_cash`-`use_cash' => 'desc', 'ddate' => 'desc'),
  256. 'col' => '*',
  257. ),
  258. 'incUseCash' => array
  259. (
  260. 'type' => 'update',
  261. 'where' => array
  262. (
  263. 'id' => 'yes',
  264. ),
  265. 'set' => array
  266. (
  267. 'use_cash' => array('yes', '+='),
  268. ),
  269. ),
  270. 'decUseCash' => array
  271. (
  272. 'type' => 'update',
  273. 'where' => array
  274. (
  275. 'id' => 'yes',
  276. ),
  277. 'set' => array
  278. (
  279. 'use_cash' => array('yes', '-='),
  280. ),
  281. ),
  282. #兑换的数量
  283. 'getNum' => array
  284. (
  285. # 匹配的正则或函数 选填项
  286. 'option' => array
  287. (
  288. 'card_id' => 'yes',
  289. 'status' => 'yes',
  290. 'state' => 1,
  291. ),
  292. 'type' => 'count',
  293. 'col' => '*',
  294. ),
  295. 'getDuiprice' => array
  296. (
  297. # 匹配的正则或函数 选填项
  298. 'option' => array
  299. (
  300. 'card_id' => 'yes',
  301. 'status' => array('yes','in'),
  302. 'state' => 1,
  303. ),
  304. 'type' => 'one',
  305. 'col' => 'sum(total_cash) as total',
  306. ),
  307. #已使用的面值
  308. 'getDprice' => array
  309. (
  310. # 匹配的正则或函数 选填项
  311. 'option' => array
  312. (
  313. 'card_id' => 'yes',
  314. // 'status' => 'yes',
  315. 'state' => 1,
  316. ),
  317. 'type' => 'one',
  318. 'col' => 'sum(use_cash) as total',
  319. ),
  320. ),
  321. );