dh_order_goods.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. <?php
  2. $status = array
  3. (
  4. 1 => '正常',
  5. 2 => '申请退款中',
  6. 3 => '已取消',
  7. );
  8. return array
  9. (
  10. # 表名
  11. 'name' => 'dh_order_goods',
  12. # 显示给用户看的名称
  13. 'lang' => '订单商品表',
  14. 'menu' => false,
  15. 'status' => $status,
  16. # 数据结构
  17. 'struct' => array
  18. (
  19. 'id' => array
  20. (
  21. 'type' => 'int-11',
  22. 'name' => 'ID',
  23. 'default' => '',
  24. 'desc' => '',
  25. 'match' => 'is_numeric',
  26. 'search' => 'order',
  27. 'update' => 'hidden',
  28. //'list' => true,
  29. ),
  30. 'order_id' => array
  31. (
  32. 'type' => 'int-11',
  33. 'name' => '订单表id',
  34. 'default' => '',
  35. 'desc' => '订单表id',
  36. 'match' => 'is_numeric',
  37. ),
  38. 'shop_id' => array
  39. (
  40. 'type' => 'int-11',
  41. 'name' => '门店名称',
  42. 'default' => '',
  43. 'desc' => '门店名称',
  44. 'match' => 'is_numeric',
  45. ),
  46. 'mid' => array
  47. (
  48. 'type' => 'int-11',
  49. 'name' => '代理商姓名/手机号',
  50. 'default' => '-1',
  51. 'desc' => '代理商',
  52. 'match' => 'is_string',
  53. 'update' => 'text',
  54. ),
  55. // 'shop_id' => array
  56. // (
  57. // 'type' => 'int-11',
  58. // 'name' => '门店名称',
  59. // 'default' => '',
  60. // 'desc' => '门店名称',
  61. // 'match' => 'is_numeric',
  62. // ),
  63. 'goods_id' => array
  64. (
  65. 'type' => 'int-11',
  66. 'name' => '商品名称',
  67. 'default' => '',
  68. 'desc' => '商品名称',
  69. 'match' => 'is_numeric',
  70. 'list' => 'Dever::load("goods/info-find#name", {goods_id})',
  71. ),
  72. 'sku_id' => array
  73. (
  74. 'type' => 'int-11',
  75. 'name' => 'sku_id',
  76. 'default' => '-1',
  77. 'desc' => 'sku_id',
  78. 'match' => 'is_numeric',
  79. ),
  80. 'price' => array
  81. (
  82. 'type' => 'varchar-50',
  83. 'name' => '单价',
  84. 'default' => '',
  85. 'desc' => '单价',
  86. 'match' => 'option',
  87. 'update' => 'text',
  88. 'list' => true,
  89. ),
  90. 'num' => array
  91. (
  92. 'type' => 'int-11',
  93. 'name' => '购买数量',
  94. 'default' => '',
  95. 'desc' => '购买数量',
  96. 'match' => 'is_numeric',
  97. 'search' => 'select',
  98. 'list' => true,
  99. ),
  100. 'status' => array
  101. (
  102. 'type' => 'int-11',
  103. 'name' => '状态',
  104. 'default' => '1',
  105. 'desc' => '状态',
  106. 'match' => 'is_numeric',
  107. //'update' => 'select',
  108. 'option' => $status,
  109. 'search' => 'select',
  110. 'list' => true,
  111. 'edit' => true,
  112. ),
  113. 'state' => array
  114. (
  115. 'type' => 'tinyint-1',
  116. 'name' => '状态',
  117. 'default' => '1',
  118. 'desc' => '请选择状态',
  119. 'match' => 'is_numeric',
  120. ),
  121. 'cdate' => array
  122. (
  123. 'type' => 'int-11',
  124. 'name' => '创建时间',
  125. 'match' => array('is_numeric', time()),
  126. 'desc' => '',
  127. # 只有insert时才生效
  128. 'insert' => true,
  129. 'search' => 'date',
  130. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  131. ),
  132. ),
  133. 'manage' => array
  134. (
  135. 'insert' => false,
  136. 'delete' => false,
  137. 'page_list' => 'dh_order_goods',
  138. ),
  139. 'request' => array
  140. (
  141. # 获取单条数据
  142. 'getIds' => array
  143. (
  144. # 匹配的正则或函数 选填项
  145. 'option' => array
  146. (
  147. 'uid' => 'yes',
  148. 'shop_id' => 'yes',
  149. 'order_id' => 'yes',
  150. 'status' => 1,
  151. 'state' => 1,
  152. ),
  153. 'type' => 'all',
  154. 'col' => '*|id',
  155. ),
  156. # 获取多条数据
  157. 'getDataByIds' => array
  158. (
  159. # 匹配的正则或函数 选填项
  160. 'option' => array
  161. (
  162. 'ids' => array('yes-id', 'in'),
  163. 'uid' => 'yes',
  164. 'shop_id' => 'yes',
  165. 'order_id' => 'yes',
  166. 'state' => 1,
  167. ),
  168. 'type' => 'all',
  169. 'col' => '*',
  170. ),
  171. # 获取多条数据
  172. 'getTotal' => array
  173. (
  174. # 匹配的正则或函数 选填项
  175. 'option' => array
  176. (
  177. 'order_id' => 'yes',
  178. 'status' => array('yes', 'in'),
  179. 'state' => 1,
  180. ),
  181. 'type' => 'count',
  182. 'col' => '*',
  183. ),
  184. # 获取订单数量
  185. 'getOrderNum' => array
  186. (
  187. # 匹配的正则或函数 选填项
  188. 'option' => array
  189. (
  190. 'start' => array('yes-cdate', '>='),
  191. 'end' => array('yes-cdate', '<='),
  192. 'shop_id' => 'yes',
  193. 'goods_id' => 'yes',
  194. 'status' => 'yes',
  195. 'state' => 1,
  196. ),
  197. 'type' => 'count',
  198. 'col' => '*',
  199. ),
  200. # 获取总金额
  201. 'getCashNum' => array
  202. (
  203. # 匹配的正则或函数 选填项
  204. 'option' => array
  205. (
  206. 'start' => array('yes-cdate', '>='),
  207. 'end' => array('yes-cdate', '<='),
  208. 'shop_id' => 'yes',
  209. 'goods_id' => 'yes',
  210. 'status' => 'yes',
  211. 'state' => 1,
  212. ),
  213. 'type' => 'one',
  214. 'col' => 'sum(price) as total',
  215. ),
  216. ),
  217. );