agreement.php 9.6 KB

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