soft_cash.php 11 KB

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