option_account.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490
  1. <?php
  2. $type = array
  3. (
  4. 1 => '零售店',
  5. // 2 => '已签署',
  6. // 3 => '已作废',
  7. );
  8. $status = array
  9. (
  10. 1 => '待交付',
  11. 2 => '已交付',
  12. // 3 => '已作废',
  13. );
  14. $manage_audit = array
  15. (
  16. 1 => '待财务终审',
  17. 2 => '交付确认',
  18. 3 => '已完成',
  19. 4 => '驳回',
  20. );
  21. $audit = array
  22. (
  23. 1 => '审核通过',
  24. 2 => '拒绝',
  25. );
  26. $col = Dever::input('col');
  27. $policy = function()
  28. {
  29. $array = array();
  30. $data = Dever::load('agent/option_policy-state');
  31. if($data)
  32. {
  33. $array += $data;
  34. }
  35. return $array;
  36. };
  37. $exercise = function()
  38. {
  39. $array = array();
  40. $data = Dever::load('agent/option_exercise-state');
  41. if($data)
  42. {
  43. $array += $data;
  44. }
  45. return $array;
  46. };
  47. $release = function()
  48. {
  49. $array = array();
  50. $data = Dever::load('agent/option_release-state');
  51. if($data)
  52. {
  53. $array += $data;
  54. }
  55. return $array;
  56. };
  57. return array
  58. (
  59. # 表名
  60. 'name' => 'option_account',
  61. # 显示给用户看的名称
  62. 'lang' => '期权账户管理',
  63. 'order' => 1,
  64. // 'config_type' => $type,
  65. 'config_status' => $status,
  66. 'end' => array
  67. (
  68. 'update' => 'agent/lib/option_account.updateAccount',
  69. 'insert' => 'agent/lib/option_account.updateAccount',
  70. ),
  71. # 数据结构
  72. 'struct' => array
  73. (
  74. 'id' => array
  75. (
  76. 'type' => 'int-11',
  77. 'name' => '受益人姓名/电话',
  78. 'default' => '',
  79. 'desc' => '',
  80. 'match' => 'is_numeric',
  81. 'search' => 'order',
  82. 'search' => array
  83. (
  84. 'api' => 'agent/option_account-getSearch',
  85. 'col' => 'col',
  86. 'result' => 'id',
  87. 'search' => 'id',
  88. ),
  89. // 'update' => 'hidden',
  90. //'list' => true,
  91. ),
  92. 'name' => array
  93. (
  94. 'type' => 'varchar-100',
  95. 'name' => '受益人姓名',
  96. 'default' => '',
  97. 'desc' => '姓名',
  98. 'match' => 'is_string',
  99. 'update' => 'text',
  100. 'list_name' => '受益人',
  101. 'list' => 'Dever::load("agent/lib/option_account.show#list",{id})',
  102. ),
  103. 'mobile' => array
  104. (
  105. 'type' => 'bigint-11',
  106. 'name' => '受益人电话',
  107. 'default' => '',
  108. 'desc' => '请输入受益人电话',
  109. 'match' => Dever::rule('mobile'),
  110. 'update' => 'text',
  111. // 'search' => 'fulltext',
  112. // 'list' => true,
  113. ),
  114. 'email' => array
  115. (
  116. 'type' => 'varchar-150',
  117. 'name' => '邮箱',
  118. 'default' => '',
  119. 'desc' => '请输入邮箱',
  120. 'match' => 'option||' . Dever::rule('email'),
  121. 'update' => 'text',
  122. ),
  123. 'idcard' => array
  124. (
  125. 'type' => 'varchar-32',
  126. 'name' => '身份证号码',
  127. 'default' => '',
  128. 'desc' => '身份证号码',
  129. 'match' => Dever::rule('idcard'),
  130. 'search' => 'fulltext',
  131. 'update' => 'text',
  132. ),
  133. 'area' => array
  134. (
  135. 'type' => 'varchar-500',
  136. 'name' => '门店地址',
  137. 'default' => '',
  138. 'desc' => '门店地址',
  139. 'match' => 'option',
  140. 'search' => 'linkage',
  141. 'update' => 'linkage',
  142. 'option' => Dever::url('api.get?level_total=4', 'area'),
  143. ),
  144. 'address' => array
  145. (
  146. 'type' => 'varchar-200',
  147. 'name' => '详细地址',
  148. 'default' => '',
  149. 'desc' => '地址',
  150. 'match' => 'is_string',
  151. 'update' => 'text',
  152. // 'list' => true,
  153. ),
  154. 'number' => array
  155. (
  156. 'type' => 'varchar-200',
  157. 'name' => '门店编号',
  158. 'default' => '',
  159. 'desc' => '门店编号',
  160. 'match' => 'is_string',
  161. 'update' => 'text',
  162. // 'list' => true,
  163. ),
  164. 'title' => array
  165. (
  166. 'type' => 'varchar-100',
  167. 'name' => '期权记录标题',
  168. 'default' => '',
  169. 'desc' => '期权记录标题',
  170. 'match' => 'is_string',
  171. 'update' => 'text',
  172. 'list' => true,
  173. ),
  174. 'desc' => array
  175. (
  176. 'type' => 'varchar-600',
  177. 'name' => '说明',
  178. 'default' => '',
  179. 'desc' => '记录说明',
  180. 'match' => 'option',
  181. 'update' => 'textarea',
  182. 'list' => true,
  183. ),
  184. 'type' => array
  185. (
  186. 'type' => 'tinyint-1',
  187. 'name' => '记录类型',
  188. 'default' => '1',
  189. 'desc' => '记录类型',
  190. 'match' => 'is_numeric',
  191. 'update' => 'radio',
  192. 'option' => $type,
  193. // 'search' => 'select',
  194. // 'list' => true,
  195. ),
  196. 'price' => array
  197. (
  198. 'type' => 'decimal-11,2',
  199. 'name' => '开店投入金额-单位:元',
  200. 'default' => '0',
  201. 'desc' => '开店投入金额',
  202. 'match' => 'is_numeric',
  203. 'update' => 'text',
  204. 'list_name' => '开店投入金额<br/>政策对应期权价值<br/>实际补贴期权价值',
  205. 'list' => 'Dever::load("agent/lib/option_account.show#price",{id})',
  206. 'list_order' => 9,
  207. ),
  208. 'policy_id' => array
  209. (
  210. 'type' => 'int-11',
  211. 'name' => '零售店政策',
  212. 'default' => '',
  213. 'desc' => '零售店政策',
  214. 'match' => 'is_numeric',
  215. 'search' => 'select',
  216. 'update' => 'radio',
  217. 'option' => $policy,
  218. // 'list' => $search_auth == 2 ? true : false,
  219. ),
  220. 'zh_price' => array
  221. (
  222. 'type' => 'decimal-11,2',
  223. 'name' => '政策对应期权价值-单位:元',
  224. 'default' => '0',
  225. 'desc' => '政策对应期权价值',
  226. 'match' => 'is_numeric',
  227. 'update' => 'text',
  228. // 'list' => true,
  229. ),
  230. 'zj_price' => array
  231. (
  232. 'type' => 'decimal-11,2',
  233. 'name' => '实际补贴期权价值-单位:元',
  234. 'default' => '0',
  235. 'desc' => '实际补贴期权价值',
  236. 'match' => 'is_numeric',
  237. 'update' => 'text',
  238. // 'list' => true,
  239. ),
  240. 'exercise_id' => array
  241. (
  242. 'type' => 'varchar-32',
  243. 'name' => '行权条件',
  244. 'default' => '',
  245. 'desc' => '行权条件',
  246. 'match' => 'is_numeric',
  247. 'search' => 'select',
  248. 'update' => 'checkbox',
  249. 'option' => $exercise,
  250. // 'list' => $search_auth == 2 ? true : false,
  251. ),
  252. 'release_id' => array
  253. (
  254. 'type' => 'int-11',
  255. 'name' => '释放比例',
  256. 'default' => '',
  257. 'desc' => '释放比例',
  258. 'match' => 'is_numeric',
  259. 'search' => 'select',
  260. 'update' => 'radio',
  261. 'option' => $release,
  262. // 'list' => $search_auth == 2 ? true : false,
  263. ),
  264. // 'other_price' => array
  265. // (
  266. // 'type' => 'decimal-11,2',
  267. // 'name' => '其他费用-单位:万元',
  268. // 'default' => '0',
  269. // 'desc' => '其他费用',
  270. // 'match' => 'option',
  271. // 'update' => 'text',
  272. // // 'list' => true,
  273. // ),
  274. 'pic' => array
  275. (
  276. 'type' => 'text-255',
  277. 'name' => '上传凭证-门店租赁合同,支付凭证等',
  278. 'default' => '',
  279. 'desc' => '多张图片',
  280. 'match' => 'is_string',
  281. 'update' => 'images',
  282. 'key' => '1',
  283. // 'place' => '759*562',
  284. ),
  285. 'annex' => array
  286. (
  287. 'type' => 'text-800',
  288. 'name' => '上传附件',
  289. 'default' => '',
  290. 'desc' => '上传附件',
  291. 'match' => 'option',
  292. 'update' => 'upload',
  293. 'key' => '10',
  294. // 'place' => '759*562',
  295. ),
  296. 'status' => array
  297. (
  298. 'type' => 'tinyint-1',
  299. 'name' => '交付状态',
  300. 'default' => '1',
  301. 'desc' => '交付状态',
  302. 'match' => 'is_numeric',
  303. // 'update' => 'select',
  304. 'option' => $status,
  305. 'search' => 'select',
  306. 'list_name' => '交付状态<br/>交付时间',
  307. 'list' => 'Dever::load("agent/lib/option_account.show#date",{id})',
  308. ),
  309. 'jf_date' => array
  310. (
  311. 'type' => 'int-11',
  312. 'name' => '交付时间',
  313. 'match' => 'option',
  314. 'default' => '0',
  315. 'desc' => '',
  316. 'match' => 'is_numeric',
  317. // 'update' => 'day',
  318. 'search' => 'date',
  319. 'callback' => 'maketime',
  320. // 'list' => '{buy_date} > 0 ? date("Y-m-d H:i", {buy_date}) : "无"',
  321. ),
  322. 'audit_type' => array
  323. (
  324. 'type' => 'tinyint-1',
  325. 'name' => '审核状态',
  326. 'default' => '1',
  327. 'desc' => '审核状态',
  328. 'match' => 'is_numeric',
  329. // 'update' => 'select',
  330. 'option' => $manage_audit,
  331. 'search' => 'select',
  332. 'list_name' => '审核状态<br/>审核时间',
  333. 'list' => 'Dever::load("agent/lib/option_account.show#audit",{id})',
  334. ),
  335. 'audit_date' => array
  336. (
  337. 'type' => 'int-11',
  338. 'name' => '审核时间',
  339. 'match' => 'option',
  340. 'default' => '0',
  341. 'desc' => '',
  342. 'match' => 'is_numeric',
  343. // 'update' => 'day',
  344. 'search' => 'date',
  345. 'callback' => 'maketime',
  346. // 'list' => '{buy_date} > 0 ? date("Y-m-d H:i", {buy_date}) : "无"',
  347. ),
  348. 'audit' => array
  349. (
  350. 'type' => 'int-11',
  351. 'name' => '审核状态',
  352. 'default' => '1',
  353. 'desc' => '审核状态',
  354. 'match' => 'is_numeric',
  355. 'update' => $col ? 'radio' : false,
  356. 'option' => $audit,
  357. // 'search' => 'select',
  358. 'mul' => true,
  359. 'control' => 'audit',
  360. ),
  361. 'remark' => array
  362. (
  363. 'type' => 'varchar-600',
  364. 'name' => '备注',
  365. 'default' => '',
  366. 'desc' => '备注',
  367. 'match' => 'option',
  368. 'update' => 'textarea',
  369. // 'list' => '"{audit_desc}" ? "{audit_desc}" : "-"',
  370. // 'list_order' => 9,
  371. 'show' => 'audit=2',
  372. ),
  373. 'audit_desc' => array
  374. (
  375. 'type' => 'varchar-600',
  376. 'name' => '审核说明',
  377. 'default' => '',
  378. 'desc' => '审核说明',
  379. 'match' => 'is_string',
  380. 'update' => $col ? 'textarea' : false,
  381. // 'list' => '"{audit_desc}" ? "{audit_desc}" : "-"',
  382. // 'list_order' => 9,
  383. 'show' => 'audit=2',
  384. ),
  385. 'num' => array
  386. (
  387. 'type' => 'int-11',
  388. 'name' => '确认期权数-行权3年期。自门店注册日期开始计算。满一年30%,满两年35%,满三年35%',
  389. 'default' => '',
  390. 'desc' => '姓名',
  391. 'match' => 'is_numeric',
  392. // 'update' => $col ? 'text' : false,
  393. // 'show' => 'audit=1',
  394. ),
  395. 'audit_admin' => array
  396. (
  397. 'type' => 'int-11',
  398. 'name' => '添加人',
  399. 'default' => '',
  400. 'match' => 'is_numeric',
  401. 'desc' => '操作人',
  402. 'list' => '"{audit_admin}" > 0 ? Dever::load("manage/admin-find#username", {audit_admin}) : "-"',
  403. 'list_order' => 10,
  404. ),
  405. 'state' => array
  406. (
  407. 'type' => 'tinyint-1',
  408. 'name' => '状态',
  409. 'default' => '1',
  410. 'desc' => '请选择状态',
  411. 'match' => 'is_numeric',
  412. ),
  413. 'cdate' => array
  414. (
  415. 'type' => 'int-11',
  416. 'name' => '添加时间',
  417. 'match' => array('is_numeric', time()),
  418. 'desc' => '',
  419. # 只有insert时才生效
  420. 'insert' => true,
  421. // 'search' => 'date',
  422. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  423. 'list_order' => 11,
  424. ),
  425. ),
  426. 'manage' => array
  427. (
  428. // 'insert' => $insert,
  429. 'delete' => false,
  430. 'edit' => false,
  431. // 'page_list' => 'option_account',
  432. // 'button' => $button,
  433. 'list_button' => array
  434. (
  435. 'list' => array('查看详情', '"option_policy&project=agent&id={id}&page_type=1&[refer]"'),
  436. // 'list' => array('查看详情', 'Dever::load("agent/lib/option_account.list",{id})'),
  437. ),
  438. 'button' => array
  439. (
  440. '零售政策' => array('location', 'l=project/database/list&project=agent&table=option_policy&&oper_table=option_account&page_type=2'),
  441. '行权条件' => array('location', 'l=project/database/list&project=agent&table=option_exercise&&oper_table=option_account'),
  442. '释放比例' => array('location', 'l=project/database/list&project=agent&table=option_release&oper_table=option_account'),
  443. ),
  444. ),
  445. 'request' => array
  446. (
  447. 'getSearch' => array
  448. (
  449. # 匹配的正则或函数 选填项
  450. 'option' => array
  451. (
  452. 'col' => array('yes-mobile,name', 'like'),
  453. ),
  454. 'type' => 'all',
  455. 'col' => '*|id',
  456. ),
  457. ),
  458. );