order.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. <?php
  2. $type = array
  3. (
  4. 1 => '购买',
  5. 2 => '兑换',
  6. );
  7. # 系统
  8. $system = array
  9. (
  10. 1 => '小程序',
  11. 2 => 'H5',
  12. 3 => 'ios',
  13. 4 => '安卓',
  14. );
  15. # 渠道
  16. $source = function()
  17. {
  18. return array();
  19. return Dever::db('source/info')->state();
  20. };
  21. $status = array
  22. (
  23. 1 => '待支付',
  24. 2 => '已支付',
  25. 3 => '支付失败',
  26. //4 => '申请退款',
  27. 5 => '已退款',
  28. );
  29. $product = function()
  30. {
  31. return Dever::db('journal/info')->state();
  32. };
  33. $buy = function()
  34. {
  35. return Dever::db('journal/buy_num')->state();
  36. };
  37. return array
  38. (
  39. # 表名
  40. 'name' => 'order',
  41. # 显示给用户看的名称
  42. 'lang' => '订单管理',
  43. 'order' => 1,
  44. 'end' => array
  45. (
  46. //'update' => 'journal/lib/manage.order',
  47. ),
  48. # 数据结构
  49. 'struct' => array
  50. (
  51. 'id' => array
  52. (
  53. 'type' => 'int-11',
  54. 'name' => 'ID',
  55. 'default' => '',
  56. 'desc' => '',
  57. 'match' => 'is_numeric',
  58. 'search' => 'order',
  59. //'list' => true,
  60. ),
  61. 'order_id' => array
  62. (
  63. 'type' => 'varchar-100',
  64. 'name' => '订单id',
  65. 'default' => '',
  66. 'desc' => '付款订单id',
  67. 'match' => 'is_string',
  68. 'update' => 'text',
  69. 'search' => 'fulltext',
  70. 'list' => true,
  71. //'list' => '"{order_id}" ? "{order_id}" : "{code}"',
  72. ),
  73. 'name' => array
  74. (
  75. 'type' => 'varchar-80',
  76. 'name' => '订单名称',
  77. 'default' => '',
  78. 'desc' => '订单名称',
  79. 'match' => 'is_string',
  80. 'update' => 'text',
  81. 'search' => 'fulltext',
  82. 'list_name' => '订单信息',
  83. 'list' => 'Dever::load("journal/lib/manage.showOrderUser", "{id}")',
  84. ),
  85. 'uid' => array
  86. (
  87. 'type' => 'int-11',
  88. 'name' => '用户id',
  89. 'default' => '',
  90. 'desc' => '用户id',
  91. 'match' => 'is_numeric',
  92. 'update' => 'text',
  93. ),
  94. 'source_uid' => array
  95. (
  96. 'type' => 'int-11',
  97. 'name' => '邀请人',
  98. 'default' => '',
  99. 'desc' => '邀请人',
  100. 'match' => 'is_numeric',
  101. 'update' => 'text',
  102. ),
  103. 'product_id' => array
  104. (
  105. 'type' => 'int-11',
  106. 'name' => '小刊',
  107. 'default' => '',
  108. 'desc' => '小刊',
  109. 'match' => 'is_numeric',
  110. 'update' => 'select',
  111. 'option' => $product,
  112. 'search' => 'select',
  113. //'list' => true,
  114. ),
  115. 'buy_id' => array
  116. (
  117. 'type' => 'int-11',
  118. 'name' => '购买本数',
  119. 'default' => '',
  120. 'desc' => '购买本数',
  121. 'match' => 'is_numeric',
  122. 'update' => 'select',
  123. 'option' => $buy,
  124. 'search' => 'select',
  125. //'list' => true,
  126. ),
  127. 'type' => array
  128. (
  129. 'type' => 'int-11',
  130. 'name' => '支付方式',
  131. 'default' => '1',
  132. 'desc' => '支付方式',
  133. 'match' => 'is_numeric',
  134. 'option' => $type,
  135. 'search' => 'select',
  136. 'update' => 'radio',
  137. //'list' => true,
  138. 'control' => 'type',
  139. ),
  140. 'system' => array
  141. (
  142. 'type' => 'int-11',
  143. 'name' => '系统',
  144. 'default' => '1',
  145. 'desc' => '系统',
  146. 'match' => 'is_numeric',
  147. 'option' => $system,
  148. 'search' => 'select',
  149. 'update' => 'radio',
  150. 'list' => true,
  151. ),
  152. 'source' => array
  153. (
  154. 'type' => 'int-11',
  155. 'name' => '来源',
  156. 'default' => '1',
  157. 'desc' => '支付方式',
  158. 'match' => 'is_numeric',
  159. 'option' => $source,
  160. 'search' => 'select',
  161. 'update' => 'radio',
  162. //'list' => true,
  163. ),
  164. 'notice' => array
  165. (
  166. 'type' => 'int-11',
  167. 'name' => '模板消息提醒次数',
  168. 'default' => '0',
  169. 'desc' => '模板消息提醒次数',
  170. 'match' => 'is_numeric',
  171. ),
  172. 'cash' => array
  173. (
  174. 'type' => 'varchar-50',
  175. 'name' => '支付金额',
  176. 'default' => '',
  177. 'desc' => '支付金额',
  178. 'match' => 'option',
  179. 'update' => 'text',
  180. //'list' => true,
  181. 'show' => 'type=1',
  182. ),
  183. 'code' => array
  184. (
  185. 'type' => 'varchar-50',
  186. 'name' => '使用的兑换码',
  187. 'default' => '',
  188. 'desc' => '使用的兑换码',
  189. 'match' => 'option',
  190. 'update' => 'text',
  191. //'list' => true,
  192. 'show' => 'type=2',
  193. ),
  194. 'status' => array
  195. (
  196. 'type' => 'tinyint-1',
  197. 'name' => '订单状态',
  198. 'default' => '1',
  199. 'desc' => '请选择订单状态',
  200. 'match' => 'is_numeric',
  201. 'option' => $status,
  202. 'search' => 'select',
  203. 'update' => 'radio',
  204. 'list' => 'Dever::load("journal/lib/manage.showOrderStatus", "{id}")',
  205. 'control' => 'status',
  206. ),
  207. 'tk_time' => array
  208. (
  209. 'type' => 'int-11',
  210. 'name' => '退款时间',
  211. 'default' => '',
  212. 'desc' => '退款时间',
  213. 'match' => 'option',
  214. //'list' => true,
  215. 'show' => 'status=5',
  216. ),
  217. 'tk_admin' => array
  218. (
  219. 'type' => 'int-11',
  220. 'name' => '退款审核人',
  221. 'default' => '1',
  222. 'desc' => '退款审核人',
  223. 'match' => 'option',
  224. //'list' => true,
  225. 'show' => 'status=5',
  226. ),
  227. 'tk_desc' => array
  228. (
  229. 'type' => 'varchar-300',
  230. 'name' => '退款备注',
  231. 'default' => '',
  232. 'desc' => '退款备注',
  233. 'match' => 'option',
  234. 'update' => 'textarea',
  235. //'show' => 'status=5',
  236. ),
  237. 'state' => array
  238. (
  239. 'type' => 'tinyint-1',
  240. 'name' => '状态',
  241. 'default' => '1',
  242. 'desc' => '请选择状态',
  243. 'match' => 'is_numeric',
  244. ),
  245. 'cdate' => array
  246. (
  247. 'type' => 'int-11',
  248. 'name' => '下单时间',
  249. 'match' => array('is_numeric', time()),
  250. 'desc' => '',
  251. # 只有insert时才生效
  252. 'insert' => true,
  253. 'search' => 'date',
  254. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  255. //'list' => 'Dever::load("service/lib/manage.showOrderTime", "{id}")',
  256. ),
  257. 'info' => array
  258. (
  259. 'type' => 'varchar-300',
  260. 'name' => '备注',
  261. 'default' => '',
  262. 'desc' => '备注',
  263. 'match' => 'option',
  264. 'update' => 'textarea',
  265. //'show' => 'status=5'
  266. 'list' => '"{info}" ? "{info}" : "双击添加备注"',
  267. 'edit' => true,
  268. ),
  269. 'mobile' => array
  270. (
  271. 'type' => 'varchar-300',
  272. 'name' => '手机号',
  273. 'default' => '',
  274. 'desc' => '手机号',
  275. 'match' => 'option',
  276. //'show' => 'status=5'
  277. 'search' => array
  278. (
  279. 'api' => 'passport/user-all',//接口地址,最好是获取多条数据的地址
  280. 'col' => 'mobile',//要查询的字段
  281. 'result' => 'id',//返回的字段
  282. 'search' => 'uid',//本表的字段,默认为当前的字段
  283. ),
  284. ),
  285. ),
  286. 'manage' => array
  287. (
  288. 'delete' => false,
  289. 'edit' => false,
  290. 'insert' => false,
  291. 'button' => array
  292. (
  293. //'导出订单' => array('location', 'journal/lib/manage.out'),
  294. ),
  295. 'list_button' => array(
  296. //'edit' => array('退款', 'tk_time,tk_desc,tk_admin', '{status} > 1'),
  297. //'delete' => array('删除', '', '{status} == 1'),
  298. ),
  299. ),
  300. 'request' => array
  301. (
  302. 'getAll' => array
  303. (
  304. # 匹配的正则或函数 选填项
  305. 'option' => array
  306. (
  307. 'status' => array('1', '!='),
  308. 'uid' => 'yes',
  309. 'state' => 1,
  310. ),
  311. 'type' => 'all',
  312. 'order' => array('cdate' => 'desc'),
  313. 'page' => array(10, 'list'),
  314. 'col' => '*',
  315. ),
  316. 'getYes' => array
  317. (
  318. # 匹配的正则或函数 选填项
  319. 'option' => array
  320. (
  321. 'product_id' => 'yes',
  322. 'state' => 1,
  323. ),
  324. 'type' => 'all',
  325. 'order' => array('cdate' => 'desc'),
  326. 'col' => '*',
  327. ),
  328. # 获取提交订单超过12个小时
  329. 'getDataByTime' => array
  330. (
  331. # 匹配的正则或函数 选填项
  332. 'option' => array
  333. (
  334. 'cdate' => array('yes', '>='),
  335. 'notice' => 'yes',
  336. 'state' => 1,
  337. ),
  338. 'type' => 'all',
  339. 'order' => array('cdate' => 'desc'),
  340. 'col' => '*',
  341. ),
  342. ),
  343. );