agreement.php 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. <?php
  2. /*
  3. $status = array
  4. (
  5. 1 => '待签署',
  6. 2 => '有效',
  7. 3 => '作废',
  8. );
  9. */
  10. $status = array
  11. (
  12. 1 => '有效',
  13. 2 => '有效',
  14. 3 => '作废',
  15. );
  16. $aid = Dever::input('search_option_aid');
  17. $button = array();
  18. if ($aid) {
  19. $option_aid = $aid;
  20. $search_type = Dever::input('search_type');
  21. if ($search_type) {
  22. $option_aid .= '&search_type=' . $search_type;
  23. }
  24. $button = array
  25. (
  26. '返回上一页' => array('location', 'l=project/database/list&project=option&table=cash&page_type=1&aid=' . $option_aid),
  27. );
  28. }
  29. return array
  30. (
  31. # 表名
  32. 'name' => 'agreement',
  33. # 显示给用户看的名称
  34. 'lang' => '期权合同管理',
  35. 'order' => 10,
  36. 'status' => $status,
  37. # 数据结构
  38. 'struct' => array
  39. (
  40. 'id' => array
  41. (
  42. 'type' => 'int-11',
  43. 'name' => 'ID',
  44. 'default' => '',
  45. 'desc' => '',
  46. 'match' => 'is_numeric',
  47. 'search' => 'order',
  48. //'list' => true,
  49. ),
  50. 'aid' => array
  51. (
  52. 'type' => 'int-11',
  53. 'name' => '手机号',
  54. 'default' => '-1',
  55. 'desc' => '代理商',
  56. 'match' => 'is_string',
  57. 'update' => 'text',
  58. 'search' => array
  59. (
  60. 'api' => 'option/account-find',
  61. 'col' => 'mobile',
  62. 'result' => 'id',
  63. ),
  64. 'list_name' => '期权账户',
  65. 'list' => 'Dever::load("option/lib/account.getInfo", {aid})',
  66. 'list_order' => 3,
  67. ),
  68. 'order_num' => array
  69. (
  70. 'type' => 'varchar-100',
  71. 'name' => '合同编号',
  72. 'default' => '',
  73. 'desc' => '合同编号',
  74. 'match' => 'is_string',
  75. 'update' => 'text',
  76. ),
  77. 'agreement_id' => array
  78. (
  79. 'type' => 'int-11',
  80. 'name' => '合同模板id',
  81. 'default' => '',
  82. 'desc' => '合同模板id',
  83. 'match' => 'is_numeric',
  84. ),
  85. 'agreement_name' => array
  86. (
  87. 'type' => 'varchar-500',
  88. 'name' => '合同名称',
  89. 'default' => '',
  90. 'desc' => '合同名称',
  91. 'match' => 'is_string',
  92. 'update' => 'text',
  93. 'search' => 'fulltext',
  94. 'list' => true,
  95. 'list_order' => 6,
  96. ),
  97. 'jiaofu_id' => array
  98. (
  99. 'type' => 'varchar-100',
  100. 'name' => '交付的id',
  101. 'default' => '',
  102. 'desc' => '交付的id',
  103. 'match' => 'is_string',
  104. ),
  105. 'jiaofu_total' => array
  106. (
  107. 'type' => 'float-11,2',
  108. 'name' => '交付的总额',
  109. 'default' => '',
  110. 'desc' => '交付的总额',
  111. 'match' => 'is_numeric',
  112. ),
  113. 'sign' => array
  114. (
  115. 'type' => 'varchar-150',
  116. 'name' => '合同签名',
  117. 'default' => '',
  118. 'desc' => '合同签名',
  119. 'match' => 'option',
  120. 'update' => 'image',
  121. 'key' => '7',
  122. 'list' => '"<img src=\'{sign}\' width=\'150\'>"',
  123. 'list_order' => 7,
  124. ),
  125. 'name' => array
  126. (
  127. 'type' => 'varchar-100',
  128. 'name' => '姓名',
  129. 'default' => '',
  130. 'desc' => '姓名',
  131. 'match' => 'is_string',
  132. 'update' => 'text',
  133. ),
  134. 'mobile' => array
  135. (
  136. 'type' => 'bigint-11',
  137. 'name' => '手机号',
  138. 'default' => '',
  139. 'desc' => '请输入手机号',
  140. 'match' => Dever::rule('mobile'),
  141. 'update' => 'text',
  142. 'search' => $aid ? 'hidden' : 'fulltext',
  143. //'list' => $aid ? false : true,
  144. //'list_order' => 2,
  145. ),
  146. 'idcard' => array
  147. (
  148. 'type' => 'varchar-32',
  149. 'name' => '身份证号码',
  150. 'default' => '',
  151. 'desc' => '身份证号码',
  152. 'match' => 'is_string',
  153. 'update' => 'text',
  154. ),
  155. 'idcard_front' => array
  156. (
  157. 'type' => 'varchar-150',
  158. 'name' => '身份证正面',
  159. 'default' => '',
  160. 'desc' => '身份证正面',
  161. 'match' => 'option',
  162. 'update' => 'image',
  163. 'key' => '8',
  164. 'place' => '660*660',
  165. ),
  166. 'idcard_back' => array
  167. (
  168. 'type' => 'varchar-150',
  169. 'name' => '身份证背面',
  170. 'default' => '',
  171. 'desc' => '身份证背面',
  172. 'match' => 'option',
  173. 'update' => 'image',
  174. 'key' => '8',
  175. 'place' => '660*660',
  176. ),
  177. 'address' => array
  178. (
  179. 'type' => 'varchar-800',
  180. 'name' => '地址',
  181. 'default' => '',
  182. 'desc' => '地址',
  183. 'match' => 'is_string',
  184. 'update' => 'text',
  185. ),
  186. 'qdate' => array
  187. (
  188. 'type' => 'int-11',
  189. 'name' => '协议签订时间',
  190. 'match' => 'is_numeric',
  191. 'desc' => '协议签订时间',
  192. 'update' => 'text',
  193. ),
  194. 'sdate' => array
  195. (
  196. 'type' => 'int-11',
  197. 'name' => '有效期开始时间',
  198. 'match' => 'is_numeric',
  199. 'desc' => '有效期开始时间',
  200. 'update' => 'text',
  201. ),
  202. 'edate' => array
  203. (
  204. 'type' => 'int-11',
  205. 'name' => '有效期结束时间',
  206. 'match' => 'is_numeric',
  207. 'desc' => '有效期结束时间',
  208. 'update' => 'text',
  209. ),
  210. 'udate' => array
  211. (
  212. 'type' => 'int-11',
  213. 'name' => '更新时间',
  214. 'match' => 'is_numeric',
  215. 'desc' => '更新时间',
  216. 'search' => 'date',
  217. 'list' => 'date("Y-m-d H:i", {udate})',
  218. 'list_order' => 5,
  219. ),
  220. 'content' => array
  221. (
  222. 'type' => 'text-255',
  223. 'name' => '合同内容',
  224. 'default' => '',
  225. 'desc' => '请输入内容',
  226. 'match' => 'is_string',
  227. ),
  228. 'status' => array
  229. (
  230. 'type' => 'tinyint-1',
  231. 'name' => '合同状态',
  232. 'default' => '1',
  233. 'desc' => '合同状态',
  234. 'match' => 'is_numeric',
  235. 'option' => $status,
  236. 'search' => 'select',
  237. 'list' => true,
  238. 'list_order' => 8,
  239. ),
  240. 'state' => array
  241. (
  242. 'type' => 'tinyint-1',
  243. 'name' => '状态',
  244. 'default' => '1',
  245. 'desc' => '请选择状态',
  246. 'match' => 'is_numeric',
  247. ),
  248. 'cdate' => array
  249. (
  250. 'type' => 'int-11',
  251. 'name' => '创建时间',
  252. 'match' => array('is_numeric', time()),
  253. 'desc' => '',
  254. # 只有insert时才生效
  255. 'insert' => true,
  256. //'search' => 'date',
  257. 'list' => 'date("Y-m-d H:i", {cdate})',
  258. 'list_order' => 4,
  259. ),
  260. ),
  261. 'manage' => array
  262. (
  263. 'insert' => false,
  264. 'delete' => false,
  265. 'edit' => false,
  266. 'button' => $button,
  267. 'list_button' => array
  268. (
  269. 'new' => array('查看', '"lib/agreement.location?id={id}"', 'option'),
  270. 'oper' => array('作废并生成', '"option/lib/manage.dropAgreement?id={id}"', "{status} == 2"),
  271. 'oper1' => array('更新', '"option/lib/manage.upAgreement?id={id}"', "{status} == 2"),
  272. ),
  273. ),
  274. 'request' => array
  275. (
  276. 'getData' => array
  277. (
  278. # 匹配的正则或函数 选填项
  279. 'option' => array
  280. (
  281. 'aid' => 'yes',
  282. 'agreement_id' => 'yes',
  283. 'state' => 1,
  284. ),
  285. 'type' => 'all',
  286. 'order' => array('id' => 'desc'),
  287. 'col' => '*',
  288. ),
  289. 'getOld' => array
  290. (
  291. # 匹配的正则或函数 选填项
  292. 'option' => array
  293. (
  294. 'aid' => 'yes',
  295. 'agreement_id' => 'yes',
  296. 'state' => 1,
  297. ),
  298. 'type' => 'one',
  299. 'order' => array('id' => 'desc'),
  300. 'col' => '*',
  301. ),
  302. 'getOne' => array
  303. (
  304. # 匹配的正则或函数 选填项
  305. 'option' => array
  306. (
  307. 'aid' => 'yes',
  308. 'type' => 'yes',
  309. 'state' => 1,
  310. ),
  311. 'type' => 'one',
  312. 'order' => array('id' => 'desc'),
  313. 'col' => '*',
  314. ),
  315. 'getAll' => array
  316. (
  317. # 匹配的正则或函数 选填项
  318. 'option' => array
  319. (
  320. 'aid' => 'yes',
  321. 'state' => 1,
  322. ),
  323. 'type' => 'all',
  324. 'order' => array('id' => 'desc'),
  325. 'page' => array(10, 'list'),
  326. 'col' => 'id,aid,agreement_id,status,qdate,name,agreement_name',
  327. ),
  328. ),
  329. );