soft_cash.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  1. <?php
  2. $status = array
  3. (
  4. 1 => array('name' => '待业务初审', 'style' => 'font-weight:bold;color:#436EEE'),
  5. 2 => array('name' => '待财务终审', 'style' => 'font-weight:bold;color:#436EEE'),
  6. 3 => array('name' => '已完成', 'style' => 'font-weight:bold;color:green'),
  7. 4 => array('name' => '驳回', 'style' => 'font-weight:bold;color:#CD3700'),
  8. );
  9. $manage_audit = array
  10. (
  11. //1 => '待审核',
  12. 2 => '已审核',
  13. 3 => '已作废',
  14. );
  15. $type = array
  16. (
  17. 1 => '未签署',
  18. 2 => '已签署',
  19. 3 => '已作废',
  20. );
  21. $role = function()
  22. {
  23. $array = array();
  24. $data = Dever::load('setting/role-state');
  25. if($data)
  26. {
  27. $array += $data;
  28. }
  29. return $array;
  30. };
  31. $insert = false;
  32. $col = Dever::input('col');
  33. if (Dever::load('manage/auth')->checkFunc('agent.soft_cash', 'editnew', '新增')) {
  34. $insert = true;
  35. }
  36. $button = array();
  37. if(Dever::load('manage/auth')->checkFunc('agent.soft_cash', 'editSoftcash', '数据导出')){
  38. $button = array
  39. (
  40. '数据导出' => array('excel', 'agent/lib/soft_cash.out_soft_cash'),
  41. );
  42. }
  43. return array
  44. (
  45. # 表名
  46. 'name' => 'soft_cash',
  47. # 显示给用户看的名称
  48. 'lang' => '软件服务费',
  49. 'menu' => true,
  50. 'config_status' => $status,
  51. 'config_type' => $type,
  52. 'start' => array
  53. (
  54. 'insert' => 'agent/lib/soft_cash.insertSoft',
  55. ),
  56. 'end' => array
  57. (
  58. 'insert' => 'agent/lib/soft_cash.updateSoft',
  59. 'update' => 'agent/lib/soft_cash.updateSoft',
  60. ),
  61. # 数据结构
  62. 'struct' => array
  63. (
  64. 'id' => array
  65. (
  66. 'type' => 'int-11',
  67. 'name' => 'ID',
  68. 'default' => '',
  69. 'desc' => '',
  70. 'match' => 'is_numeric',
  71. 'search' => 'order',
  72. 'update' => 'hidden',
  73. //'list' => true,
  74. ),
  75. 'mid' => array
  76. (
  77. 'type' => 'int-11',
  78. 'name' => '代理商姓名/手机号',
  79. 'default' => '-1',
  80. 'desc' => '代理商',
  81. 'match' => 'is_string',
  82. // 'update' => 'text',
  83. 'search' => array
  84. (
  85. 'api' => 'agent/member-getSearch',
  86. 'col' => 'col',
  87. 'result' => 'id',
  88. 'search' => 'mid',
  89. ),
  90. 'list' => 'Dever::load("agent/lib/member.getOne", {mid}, "agent/member", true)',
  91. 'list_order' => 2,
  92. ),
  93. 'mobile' => array
  94. (
  95. 'type' => 'bigint-11',
  96. 'name' => '代理商手机号',
  97. 'default' => '',
  98. 'desc' => '请输入手机号',
  99. 'match' => Dever::rule('mobile'),
  100. 'update' => 'text',
  101. # 绑定js脚本,更新时使用,第一个参数是执行的方式,第二个参数执行的方法,第三个参数是传值。
  102. 'bind' => array('onblur', 'loading', array('url' => Dever::url("lib/soft_cash.search", 'agent'))),
  103. //'search' => 'fulltext',
  104. //'list' => true,
  105. ),
  106. 'order_num' => array
  107. (
  108. 'type' => 'varchar-100',
  109. 'name' => '订单号',
  110. 'default' => '',
  111. 'desc' => '订单号',
  112. 'match' => 'is_string',
  113. // 'update' => 'text',
  114. //'search' => 'fulltext',
  115. 'list_name' => '订单号<br />购买时间',
  116. 'list' => 'Dever::load("agent/lib/soft_cash.soft_show#num",{id})',
  117. 'list_order' => 1,
  118. ),
  119. 'role' => array
  120. (
  121. 'type' => 'int-11',
  122. 'name' => '代理角色',
  123. 'default' => '',
  124. 'desc' => '代理角色',
  125. 'match' => 'is_numeric',
  126. // 'search' => 'select',
  127. // 'update' => 'select',
  128. 'option' => $role,
  129. 'list' => true,
  130. ),
  131. 'agreement_id' => array
  132. (
  133. 'type' => 'int-11',
  134. 'name' => '合同',
  135. 'default' => '-1',
  136. 'desc' => '合同',
  137. 'match' => 'is_string',
  138. // 'update' => 'text',
  139. ),
  140. 'cash' => array
  141. (
  142. 'type' => 'decimal-11,2',
  143. 'name' => '软件服务费用',
  144. 'default' => '0',
  145. 'desc' => '费用',
  146. 'match' => 'option',
  147. 'update' => 'text',
  148. 'list' => true,
  149. ),
  150. 'price' => array
  151. (
  152. 'type' => 'decimal-11,2',
  153. 'name' => '原始期权价值',
  154. 'default' => '0',
  155. 'desc' => '原始期权价值',
  156. 'match' => 'option',
  157. 'update' => 'text',
  158. 'list' => true,
  159. ),
  160. 'pic' => array
  161. (
  162. 'type' => 'text-255',
  163. 'name' => '支付凭证',
  164. 'default' => '',
  165. 'desc' => '多张图片',
  166. 'match' => 'is_string',
  167. 'update' => 'images',
  168. 'key' => '1',
  169. // 'place' => '759*562',
  170. ),
  171. 'status' => array
  172. (
  173. 'type' => 'tinyint-1',
  174. 'name' => '订单状态',
  175. 'default' => '2',
  176. 'desc' => '订单状态',
  177. 'match' => 'is_numeric',
  178. // 'update' => 'radio',
  179. 'option' => $status,
  180. 'search' => 'select',
  181. 'list_name' =>'订单状态<br/>合同签署状态<br/>终审时间<br>签署时间',
  182. 'list' => 'Dever::load("agent/lib/soft_cash.list",{id})',
  183. ),
  184. 'audit' => array
  185. (
  186. 'type' => 'int-11',
  187. 'name' => '审核状态',
  188. 'default' => '2',
  189. 'desc' => '审核状态',
  190. 'match' => 'is_numeric',
  191. 'update' => $col ? 'radio' : false,
  192. 'option' => $manage_audit,
  193. 'mul' => true,
  194. 'control' => 'audit',
  195. ),
  196. 'audit_desc' => array
  197. (
  198. 'type' => 'varchar-600',
  199. 'name' => '备注',
  200. 'default' => '',
  201. 'desc' => '审核说明',
  202. 'match' => 'is_string',
  203. 'update' => $col ? 'textarea' : false,
  204. // 'list' => '"{audit_desc}" ? "{audit_desc}" : "-"',
  205. // 'list_order' => 9,
  206. 'show' => 'audit=3',
  207. ),
  208. 'type' => array
  209. (
  210. 'type' => 'tinyint-1',
  211. 'name' => '合同签署状态',
  212. 'default' => '1',
  213. 'desc' => '合同签署状态',
  214. 'match' => 'is_numeric',
  215. // 'update' => 'radio',
  216. 'option' => $type,
  217. 'search' => 'select',
  218. ),
  219. 'admin_desc' => array
  220. (
  221. 'type' => 'varchar-600',
  222. 'name' => '管理员备注',
  223. 'default' => '',
  224. 'desc' => '管理员备注',
  225. 'match' => 'option',
  226. 'update' => 'textarea',
  227. ),
  228. 'buy_date' => array
  229. (
  230. 'type' => 'int-11',
  231. 'name' => '购买时间',
  232. 'match' => 'option',
  233. 'default' => '0',
  234. 'desc' => '',
  235. 'match' => 'is_numeric',
  236. 'update' => 'day',
  237. 'search' => 'date',
  238. 'callback' => 'maketime',
  239. // 'list' => '{buy_date} > 0 ? date("Y-m-d H:i", {buy_date}) : "无"',
  240. ),
  241. 'zdate' => array
  242. (
  243. 'type' => 'int-11',
  244. 'name' => '终审时间',
  245. 'default' => '',
  246. 'match' => 'is_numeric',
  247. 'search' => 'date',
  248. 'desc' => '',
  249. // 'list' => 'date("Y-m-d H:i:s", {zdate})',
  250. ),
  251. 'fdate' => array
  252. (
  253. 'type' => 'int-11',
  254. 'name' => '签署时间',
  255. 'default' => '',
  256. 'match' => 'is_numeric',
  257. 'search' => 'date',
  258. 'desc' => '',
  259. // 'list' => 'date("Y-m-d H:i:s", {zdate})',
  260. ),
  261. 'state' => array
  262. (
  263. 'type' => 'tinyint-1',
  264. 'name' => '状态',
  265. 'default' => '1',
  266. 'desc' => '请选择状态',
  267. 'match' => 'is_numeric',
  268. ),
  269. 'cdate' => array
  270. (
  271. 'type' => 'int-11',
  272. 'name' => '创建时间',
  273. 'match' => array('is_numeric', time()),
  274. 'desc' => '',
  275. # 只有insert时才生效
  276. 'insert' => true,
  277. // 'search' => 'date',
  278. // 'list' => 'date("Y-m-d H:i:s", {cdate})',
  279. ),
  280. ),
  281. 'alter' => array
  282. (
  283. 10 => array
  284. (
  285. array('update', 'cash', 'cash', 'decimal-11,2 0 软件服务费'),
  286. array('update', 'price', 'price', 'decimal-11,2 0 期权价值'),
  287. ),
  288. 'version' => 10,
  289. ),
  290. 'manage' => array
  291. (
  292. 'insert' => $insert,
  293. 'delete' => false,
  294. 'edit' => false,
  295. 'button' => $button,
  296. 'list_button' => array
  297. (
  298. 'list' => array('查看详情', '"member_prize&project=agent&id={id}&page_type=1&[refer]"'),
  299. ),
  300. ),
  301. 'request' => array
  302. (
  303. 'getList' => array
  304. (
  305. # 匹配的正则或函数 选填项
  306. 'option' => array
  307. (
  308. // 'main' => 'yes',
  309. 'mobile' => 'yes',
  310. 'state' => 1,
  311. ),
  312. 'order' => array('id' => 'desc'),
  313. 'type' => 'all',
  314. 'col' => '*',
  315. ),
  316. 'getTotal' => array
  317. (
  318. # 匹配的正则或函数 选填项
  319. 'option' => array
  320. (
  321. 'fstart' => array('yes-fdate', '>='),
  322. 'fend' => array('yes-fdate', '<='),
  323. 'status' => array('yes', 'in'),
  324. 'role' =>'yes',
  325. 'state' => 1,
  326. ),
  327. 'type' => 'one',
  328. 'col' => 'sum(cash) as total',
  329. ),
  330. 'getExcelAll' => array
  331. (
  332. # 匹配的正则或函数 选填项
  333. 'option' => array
  334. (
  335. 'fstart' => array('yes-zdate', '>='),
  336. 'fend' => array('yes-zdate', '<='),
  337. 'bstart' => array('yes-buy_date', '>='),
  338. 'bend' => array('yes-buy_date', '<='),
  339. 'start' => array('yes-fdate', '>='),
  340. 'end' => array('yes-fdate', '<='),
  341. 'status' => array('yes', 'in'),
  342. 'type' => array('yes', 'in'),
  343. 'state' => 1,
  344. ),
  345. 'type' => 'all',
  346. 'col' => '*',
  347. ),
  348. ),
  349. );