buy_order.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. <?php
  2. $pay_status = Dever::config('base', 'pay')->pay['status'];
  3. $status = array
  4. (
  5. 1 => '待支付',
  6. 2 => '待审核',
  7. 3 => '待发货',
  8. 4 => '待收货确认',
  9. 5 => '已完成',
  10. 6 => '已完成(有退款)',
  11. 7 => '已取消',
  12. 8 => '已退款',
  13. 11 => '已过期',
  14. );
  15. $source_type = array
  16. (
  17. 1 => '仓库',
  18. 2 => '工厂',
  19. );
  20. return array
  21. (
  22. # 表名
  23. 'name' => 'buy_order',
  24. # 显示给用户看的名称
  25. 'lang' => '采购订单',
  26. 'order' => 99,
  27. 'status' => $status,
  28. # 数据结构
  29. 'struct' => array
  30. (
  31. 'id' => array
  32. (
  33. 'type' => 'int-11',
  34. 'name' => 'ID',
  35. 'default' => '',
  36. 'desc' => '',
  37. 'match' => 'is_numeric',
  38. 'search' => 'order',
  39. //'list' => true,
  40. ),
  41. 'shop_id' => array
  42. (
  43. 'type' => 'int-11',
  44. 'name' => '所属门店',
  45. 'default' => '',
  46. 'desc' => '所属门店',
  47. 'match' => 'is_numeric',
  48. 'update' => 'hidden',
  49. 'value' => Dever::input('search_option_shop_id'),
  50. 'list' => 'Dever::load("shop/info-find#name", {shop_id})',
  51. ),
  52. 'mobile' => array
  53. (
  54. 'type' => 'varchar-300',
  55. 'name' => '下单手机号',
  56. 'default' => '',
  57. 'desc' => '手机号',
  58. 'match' => 'option',
  59. 'search' => array
  60. (
  61. 'api' => 'shop/info-select',//接口地址,最好是获取多条数据的地址
  62. 'col' => 'mobile',//要查询的字段
  63. 'result' => 'id',//返回的字段
  64. 'search' => 'shop_id',//本表的字段,默认为当前的字段
  65. ),
  66. ),
  67. 'name' => array
  68. (
  69. 'type' => 'varchar-800',
  70. 'name' => '订单名称',
  71. 'default' => '',
  72. 'desc' => '订单名称',
  73. 'match' => 'is_string',
  74. 'update' => 'text',
  75. ),
  76. 'order_num' => array
  77. (
  78. 'type' => 'varchar-100',
  79. 'name' => '订单编号',
  80. 'default' => '',
  81. 'desc' => '订单编号',
  82. 'match' => 'is_string',
  83. 'update' => 'text',
  84. 'search' => 'fulltext',
  85. 'list' => true,
  86. ),
  87. 'price' => array
  88. (
  89. 'type' => 'varchar-50',
  90. 'name' => '购买价格',
  91. 'default' => '',
  92. 'desc' => '购买价格',
  93. 'match' => 'option',
  94. 'update' => 'text',
  95. 'list' => true,
  96. ),
  97. 'num' => array
  98. (
  99. 'type' => 'int-11',
  100. 'name' => '购买数量',
  101. 'default' => '',
  102. 'desc' => '购买数量',
  103. 'match' => 'is_numeric',
  104. 'search' => 'select',
  105. 'list' => true,
  106. ),
  107. 'refund_cash' => array
  108. (
  109. 'type' => 'varchar-50',
  110. 'name' => '退款合计金额',
  111. 'default' => '0',
  112. 'desc' => '退款合计金额',
  113. 'match' => 'option',
  114. 'update' => 'text',
  115. ),
  116. 'type' => array
  117. (
  118. 'type' => 'int-11',
  119. 'name' => '采购来源',
  120. 'default' => '',
  121. 'desc' => '采购来源',
  122. 'match' => 'is_numeric',
  123. ),
  124. 'type_id' => array
  125. (
  126. 'type' => 'int-11',
  127. 'name' => '来源id',
  128. 'default' => '',
  129. 'desc' => '来源id',
  130. 'match' => 'is_numeric',
  131. ),
  132. 'info' => array
  133. (
  134. 'type' => 'varchar-300',
  135. 'name' => '订单备注',
  136. 'default' => '',
  137. 'desc' => '订单备注',
  138. 'match' => 'option',
  139. 'update' => 'textarea',
  140. ),
  141. 'area' => array
  142. (
  143. 'type' => 'varchar-500',
  144. 'name' => '所在地区',
  145. 'default' => '',
  146. 'desc' => '所在地区',
  147. 'match' => 'option',
  148. 'search' => 'linkage',
  149. 'option' => Dever::url('api.get?level_total=4', 'area'),
  150. ),
  151. 'province' => array
  152. (
  153. 'type' => 'int-11',
  154. 'name' => '省份',
  155. 'default' => '',
  156. 'desc' => '省份',
  157. 'match' => 'option',
  158. //'update' => 'text',
  159. ),
  160. 'city' => array
  161. (
  162. 'type' => 'int-11',
  163. 'name' => '城市',
  164. 'default' => '',
  165. 'desc' => '城市',
  166. 'match' => 'option',
  167. //'update' => 'text',
  168. ),
  169. 'county' => array
  170. (
  171. 'type' => 'int-11',
  172. 'name' => '县区',
  173. 'default' => '',
  174. 'desc' => '县区',
  175. 'match' => 'option',
  176. //'update' => 'text',
  177. ),
  178. 'town' => array
  179. (
  180. 'type' => 'int-11',
  181. 'name' => '街道',
  182. 'default' => '',
  183. 'desc' => '街道',
  184. 'match' => 'option',
  185. //'update' => 'text',
  186. ),
  187. 'status' => array
  188. (
  189. 'type' => 'tinyint-1',
  190. 'name' => '状态',
  191. 'default' => '1',
  192. 'desc' => '状态',
  193. 'match' => 'is_numeric',
  194. 'option' => $status,
  195. 'search' => 'select',
  196. 'list' => 'Dever::load("mshop/lib/buy.orderStatus", "{id}")',
  197. ),
  198. 'state' => array
  199. (
  200. 'type' => 'tinyint-1',
  201. 'name' => '状态',
  202. 'default' => '1',
  203. 'desc' => '请选择状态',
  204. 'match' => 'is_numeric',
  205. ),
  206. 'operdate' => array
  207. (
  208. 'type' => 'int-11',
  209. 'name' => '审核时间',
  210. 'default' => '',
  211. 'match' => 'is_numeric',
  212. 'desc' => '',
  213. ),
  214. 'fdate' => array
  215. (
  216. 'type' => 'int-11',
  217. 'name' => '发货时间',
  218. 'default' => '',
  219. 'match' => 'is_numeric',
  220. 'desc' => '',
  221. ),
  222. 'qfdate' => array
  223. (
  224. 'type' => 'int-11',
  225. 'name' => '确认发货时间',
  226. 'default' => '',
  227. 'match' => 'is_numeric',
  228. 'desc' => '',
  229. ),
  230. 'shdate' => array
  231. (
  232. 'type' => 'int-11',
  233. 'name' => '确认收货时间',
  234. 'default' => '',
  235. 'match' => 'is_numeric',
  236. 'desc' => '',
  237. ),
  238. 'cdate' => array
  239. (
  240. 'type' => 'int-11',
  241. 'name' => '下单时间',
  242. 'match' => array('is_numeric', time()),
  243. 'desc' => '',
  244. # 只有insert时才生效
  245. 'insert' => true,
  246. 'search' => 'date',
  247. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  248. //'list' => 'Dever::load("service/lib/manage.showOrderTime", "{id}")',
  249. ),
  250. ),
  251. 'manage' => array
  252. (
  253. 'delete' => false,
  254. 'edit' => false,
  255. 'insert' => false,
  256. 'button' => array
  257. (
  258. //'导出订单' => array('location', 'user/lib/manage.out'),
  259. ),
  260. 'list_button' => array(
  261. //'edit' => array('退款', 'status,tk_time,tk_pic,tk_desc,tk_admin', '{status} == 2'),
  262. //'delete' => array('删除', '', '{status} == 1'),
  263. 'fast_list' => array('查看详情', '"buy_order_goods&project=shop&order_id={id}&page_type=1"'),
  264. 'oper' => array('审核', '"mshop/lib/manage.audit?order_id={id}"', '{status} == 2'),
  265. 'oper1' => array('发货', '"mshop/lib/manage.send?order_id={id}"', '{status} == 3'),
  266. ),
  267. ),
  268. 'request' => array
  269. (
  270. 'getAll' => array
  271. (
  272. # 匹配的正则或函数 选填项
  273. 'option' => array
  274. (
  275. 'name' => array('yes', 'like'),
  276. 'shop_id' => 'yes',
  277. 'mobile' => 'yes',
  278. 'start' => array('yes-cdate', '>='),
  279. 'end' => array('yes-cdate', '<='),
  280. 'status' => array('yes', 'in'),
  281. 'state' => 1,
  282. ),
  283. 'type' => 'all',
  284. 'order' => array('cdate' => 'desc'),
  285. 'page' => array(10, 'list'),
  286. 'col' => '*',
  287. ),
  288. # 获取订单数量
  289. 'getOrderNum' => array
  290. (
  291. # 匹配的正则或函数 选填项
  292. 'option' => array
  293. (
  294. 'start' => array('yes-cdate', '>='),
  295. 'end' => array('yes-cdate', '<='),
  296. 'shop_id' => 'yes',
  297. 'status' => array('yes', 'in'),
  298. 'state' => 1,
  299. ),
  300. 'type' => 'count',
  301. 'col' => '*',
  302. ),
  303. # 获取总金额
  304. 'getCashNum' => array
  305. (
  306. # 匹配的正则或函数 选填项
  307. 'option' => array
  308. (
  309. 'start' => array('yes-cdate', '>='),
  310. 'end' => array('yes-cdate', '<='),
  311. 'shop_id' => 'yes',
  312. 'status' => array('yes', 'in'),
  313. 'state' => 1,
  314. ),
  315. 'type' => 'one',
  316. 'col' => 'sum(price) as total',
  317. ),
  318. # 获取商品数量
  319. 'getGoodsNum' => array
  320. (
  321. # 匹配的正则或函数 选填项
  322. 'option' => array
  323. (
  324. 'start' => array('yes-cdate', '>='),
  325. 'end' => array('yes-cdate', '<='),
  326. 'shop_id' => 'yes',
  327. 'status' => array('yes', 'in'),
  328. 'state' => 1,
  329. ),
  330. 'type' => 'one',
  331. 'col' => 'sum(num) as total',
  332. ),
  333. ),
  334. );