info.php 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664
  1. <?php
  2. $people = function()
  3. {
  4. $array = array();
  5. $data = Dever::db('clue/user_set')->state();
  6. if($data)
  7. {
  8. $array += $data;
  9. }
  10. return $array;
  11. };
  12. $source = function()
  13. {
  14. $array = array();
  15. $data = Dever::db('clue/source')->state(array('type'=>1));
  16. if($data)
  17. {
  18. $array += $data;
  19. }
  20. return $array;
  21. };
  22. $status = function()
  23. {
  24. $array = array();
  25. $data = Dever::db('clue/sale_status')->state();
  26. if($data)
  27. {
  28. $array += $data;
  29. }
  30. return $array;
  31. };
  32. // $selepeople = function()
  33. // {
  34. // $array = array();
  35. // $data = Dever::db('clue/salepeople')->state();
  36. // if($data)
  37. // {
  38. // foreach ($data as $k => $v) {
  39. // $data[$k]['name'] = $v['group'];
  40. // }
  41. // $array += $data;
  42. // }
  43. // return $array;
  44. // };
  45. $sex = array
  46. (
  47. 1 => '未知',
  48. 2 => '男',
  49. 3 => '女',
  50. );
  51. $type = array
  52. (
  53. 1 => '待分派',
  54. 2 => '待跟进',
  55. 3 => '已跟进',
  56. 4 => '已完成',
  57. 5 => '已关闭',
  58. 6 => '未跟进',
  59. );
  60. $out_type = array
  61. (
  62. 1 => '否',
  63. 2 => '是',
  64. );
  65. $admin = Dever::load("manage/auth.info");
  66. $admin_id = '';
  67. if ($admin) {
  68. $admin_id = $admin['id'];
  69. }
  70. $search_auth = Dever::input('search_option_dever_auth', 2);
  71. if ($search_auth ==2) {
  72. $company = Dever::load('manage/company.get');
  73. $admin = Dever::db('manage/admin')->find($admin_id);
  74. if ($admin) {
  75. $admin['group'] = explode(',',$admin['group']);
  76. foreach ($admin['group'] as $k =>$v) {
  77. $group = Dever::db('manage/group')->find(array('company_id'=>$company,'id'=>$v));
  78. }
  79. if ($group) {
  80. $work = Dever::db('work/branch')->find(array('group_id'=>$group['id']));
  81. if ($work) {
  82. $work['group'] = explode(',',$work['group']);
  83. if (isset($work['group'][1]) && $work['group'][1] && $work['group'][1] == $admin_id) {
  84. $audit_group = Dever::setInput('search_option_follow_group_id', $group['id']);
  85. } else {
  86. $audit_admin = Dever::setInput('search_option_follow_admin_id', $admin_id);
  87. }
  88. }
  89. }
  90. }
  91. }
  92. $list_button = array();
  93. $list_button['location'] = array('查看详情',Dever::url('lib/info.show','clue'));
  94. $list_button ['fast_add'] = array('转派','info&where_id={id}&col=follow', '{type}<4 || {type}>5');
  95. $excel[] = array('数据导出','线索列表数据导出', 'clue/lib/manage.out_info');
  96. $button = array();
  97. $button['线索导入'] = array('fast','','import&project=clue&call=clue/lib/manage.import');
  98. $col = Dever::input('col');
  99. $mul = false;
  100. // if (Dever::load('manage/auth')->checkFunc('menu_61.menu_85', 'piliangfafang', '批量收货')) {
  101. // $mul = '({type} < 4 || {type} > 5)';
  102. // } elseif (Dever::load('manage/auth')->checkFunc('menu_61.menu_218', 'piliangfafang', '批量收货')) {
  103. // $mul = '({status} == 4 || {status} == 2) && {shop_type} == 2';
  104. // }
  105. return array
  106. (
  107. # 表名
  108. 'name' => 'info',
  109. # 显示给用户看的名称
  110. 'lang' => '创建新线索',
  111. # 后台菜单排序
  112. 'order' => 100,
  113. // 'menu' => false,
  114. // 'auto' => 100000,
  115. 'start' => array
  116. (
  117. 'insert' => 'clue/lib/info.insertInfo',
  118. // 'updatemul' => 'clue/lib/info.setInfoFollow',
  119. // 'update' => 'clue/lib/info.insertInfo',
  120. ),
  121. 'end' => array
  122. (
  123. 'insert' => 'clue/lib/info.updateInfo',
  124. 'update' => 'clue/lib/info.updateInfo',
  125. // 'updatemul' => 'clue/lib/info.setInfoFollow',
  126. ),
  127. 'config_type' => $type,
  128. 'config_sex' => $sex,
  129. # 数据结构
  130. 'struct' => array
  131. (
  132. 'id' => array
  133. (
  134. 'type' => 'int-11',
  135. 'name' => 'ID',
  136. 'default' => '',
  137. 'desc' => '',
  138. 'match' => 'is_numeric',
  139. 'search' => 'order',
  140. 'list' => true,
  141. 'order' => 'desc',
  142. ),
  143. 'company_id' => array
  144. (
  145. 'type' => 'int-11',
  146. 'name' => '所属公司',
  147. 'default' => '1',
  148. 'desc' => '所属公司',
  149. 'match' => 'is_numeric',
  150. 'update' => 'hidden',
  151. //'search' => $company ? 'select' : false,
  152. //'list' => true,
  153. ),
  154. 'day' => array
  155. (
  156. 'type' => 'int-11',
  157. 'name' => '计划下次跟进时间',
  158. 'default' => '',
  159. 'match' => 'is_numeric',
  160. 'desc' => '',
  161. 'search' => 'sdate',
  162. 'search_buttons' => array
  163. (
  164. // 'sum' => 'buy_num,buy_cash,sell_num,sell_cash,sl_num',
  165. 'option' => array(
  166. 'day' => '按天',
  167. 'week' => '按周',
  168. 'month' => '按月',
  169. ),
  170. // 'group' => 'id',
  171. ),
  172. // 'order' => 'desc',
  173. 'list' => 'Dever::load("clue/lib/info.getNum#xdate",{id})',
  174. // 'Dever::showDay("{day}")',
  175. 'list_order' => 5,
  176. ),
  177. 'name' => array
  178. (
  179. 'type' => 'varchar-32',
  180. 'name' => '用户姓名',
  181. 'default' => '',
  182. 'desc' => '用户姓名',
  183. 'match' => 'is_string',
  184. 'update' => 'text',
  185. // 'search' => 'fulltext',
  186. // 'list' => true,
  187. ),
  188. 'mobile' => array
  189. (
  190. 'type' => 'bigint-11',
  191. 'name' => '手机号',
  192. 'default' => '',
  193. 'desc' => '请输入手机号',
  194. 'match' => Dever::rule('mobile'),
  195. 'update' => 'text',
  196. 'search' => 'fulltext',
  197. // 'value' => Dever::input('search_option_mobile'),
  198. 'list_name' => '客户信息',
  199. 'list' => 'Dever::load("clue/lib/info.getNum#user",{id})',#true,
  200. 'list_order' => 2,
  201. ),
  202. 'wechat' => array
  203. (
  204. 'type' => 'varchar-32',
  205. 'name' => '微信号',
  206. 'default' => '',
  207. 'desc' => '微信号',
  208. 'match' => 'option',
  209. 'update' => 'text',
  210. // 'search' => 'fulltext',
  211. // 'list' => true,
  212. ),
  213. 'qq' => array
  214. (
  215. 'type' => 'varchar-32',
  216. 'name' => 'QQ号',
  217. 'default' => '',
  218. 'desc' => 'QQ号',
  219. 'match' => 'option',
  220. 'update' => 'text',
  221. // 'search' => 'fulltext',
  222. // 'list' => true,
  223. ),
  224. 'source' => array
  225. (
  226. 'type' => 'int-11',
  227. 'name' => '来源',
  228. 'default' => '1',
  229. 'desc' => '来源',
  230. 'match' => 'is_string',
  231. 'option' => $source,
  232. 'update' => 'radio',
  233. 'search' => 'select',
  234. 'list' => true,
  235. ),
  236. 'area' => array
  237. (
  238. 'type' => 'varchar-32',
  239. 'name' => '所在城市',
  240. 'default' => '',
  241. 'desc' => '所在城市',
  242. 'match' => 'option',
  243. 'search' => 'linkage',
  244. 'update' => 'linkage',
  245. 'option' => Dever::url('api.get?level_total=2', 'area'),
  246. 'list' => 'Dever::load("clue/lib/info.getNum#area",{id})',
  247. ),
  248. 'clue_num' => array
  249. (
  250. 'type' => 'varchar-50',
  251. 'name' => '线索编号',
  252. 'default' => '',
  253. 'desc' => '线索编号',
  254. 'match' => 'is_string',
  255. 'update' => 'hidden',
  256. // 'search' => 'fulltext',
  257. // 'list' => true,
  258. ),
  259. 'sex' => array
  260. (
  261. 'type' => 'int-11',
  262. 'name' => '性别',
  263. 'default' => '1',
  264. 'desc' => '性别',
  265. 'match' => 'is_string',
  266. 'option' => $sex,
  267. 'update' => 'radio',
  268. // 'search' => 'select',
  269. // 'list' => true,
  270. ),
  271. 'age' => array
  272. (
  273. 'type' => 'varchar-32',
  274. 'name' => '年龄',
  275. 'default' => '',
  276. 'desc' => '年龄',
  277. 'match' => 'option',
  278. 'update' => 'text',
  279. // 'search' => 'fulltext',
  280. // 'list' => true,
  281. ),
  282. 'trade' => array
  283. (
  284. 'type' => 'varchar-50',
  285. 'name' => '行业',
  286. 'default' => '',
  287. 'desc' => '行业',
  288. 'match' => 'option',
  289. 'update' => 'text',
  290. // 'search' => 'fulltext',
  291. // 'list_name' => '计划下次跟进时间',
  292. // 'list' => 'Dever::load("clue/lib/info.getNum#xdate",{id})',
  293. // 'list_order' => 5,
  294. ),
  295. 'desc' => array
  296. (
  297. 'type' => 'text-100',
  298. 'name' => '竞品了解',
  299. 'default' => '',
  300. 'desc' => '竞品了解',
  301. 'match' => 'option',
  302. 'update' => 'textarea',
  303. // 'list_name' => '跟进次数',
  304. // 'list' => 'Dever::load("clue/lib/info.getNum#num",{id})',
  305. // 'list_order' => 4,
  306. ),
  307. 'num' => array
  308. (
  309. 'type' => 'int-11',
  310. 'name' => '跟进次数',
  311. 'default' => '0',
  312. 'desc' => '数量',
  313. 'match' => 'option',
  314. 'update' => 'hidden',
  315. 'list' => 'Dever::load("clue/lib/info.getNum#num",{id})',
  316. 'list_order' => 4,
  317. ),
  318. 'userset_id' => array
  319. (
  320. 'type' => 'int-11',
  321. 'name' => '客户等级',
  322. 'default' => '-1',
  323. 'desc' => '客户等级',
  324. 'match' => 'is_string',
  325. 'search' => 'select',
  326. 'update' => 'select',
  327. 'option' => $people,
  328. 'list' => true,
  329. 'list_order' => 3,
  330. ),
  331. 'status_id' => array
  332. (
  333. 'type' => 'int-11',
  334. 'name' => '线索状态',
  335. 'default' => '1',
  336. 'desc' => '线索状态',
  337. 'match' => 'is_string',
  338. 'option' => $status,
  339. 'update' => 'select',
  340. // 'search' => $search_auth == 1 ? 'select' : false,
  341. // 'list' => true,
  342. 'control' => 'status_id',
  343. ),
  344. 'out_type' => array
  345. (
  346. 'type' => 'int-11',
  347. 'name' => '是否导入',
  348. 'default' => '1',
  349. 'desc' => '是否导入',
  350. 'match' => 'is_string',
  351. 'option' => $out_type,
  352. // 'update' => 'select',
  353. // 'search' => $search_auth == 1 ? 'select' : false,
  354. // 'list' => true,
  355. // 'control' => 'status_id',
  356. ),
  357. 'status_desc' => array
  358. (
  359. 'type' => 'text-255',
  360. 'name' => '结论备注',
  361. 'default' => '',
  362. 'desc' => '结论备注',
  363. 'match' => 'is_string',
  364. 'update' => 'textarea',
  365. 'update' => $col ? 'textarea' : false,
  366. 'show' => 'status_id=5,6',
  367. // 'list' => true,
  368. ),
  369. 'follow_id' => array
  370. (
  371. 'type' => 'int-11',
  372. 'name' => '跟进人表id',
  373. 'default' => '-1',
  374. 'desc' => '跟进人',
  375. 'match' => 'is_string',
  376. // 'option' => $priority,
  377. // 'update' => 'select',
  378. // 'search' => 'select',
  379. // 'list' => true,
  380. ),
  381. 'follow' => array
  382. (
  383. 'type' => 'varchar-32',
  384. 'name' => $col ? '选择队友' : '分派销售员',
  385. 'default' => '',
  386. 'desc' => '分派销售员',
  387. 'match' => 'option',
  388. // 'search' => 'linkage',
  389. 'update' => 'linkage',
  390. 'option' => Dever::url('lib/salepeople.get?level_total=2', 'clue'),
  391. // $salepeople,
  392. 'list_name' => '跟进人',
  393. 'list' => 'Dever::load("clue/lib/info.getNum#people",{id})',
  394. // 'mul' => true,
  395. // 'mul_option' => Dever::url('lib/salepeople.get?level_total=2', 'clue'),
  396. ),
  397. 'follow_admin_id' => array
  398. (
  399. 'type' => 'int-11',
  400. 'name' => '跟进人',
  401. 'default' => '-1',
  402. 'desc' => '跟进人',
  403. 'match' => 'is_string',
  404. // 'value' => $audit_admin,
  405. // 'option' => $priority,
  406. // 'update' => 'select',
  407. // 'search' => 'select',
  408. // 'list' => true,
  409. ),
  410. 'follow_group_id' => array
  411. (
  412. 'type' => 'int-11',
  413. 'name' => '部门',
  414. 'default' => '',
  415. 'desc' => '部门',
  416. 'match' => 'option',
  417. // 'search' => 'linkage',
  418. 'update' => 'hidden',
  419. // 'option' => Dever::url('lib/appoint.get?level_total=2', 'work'),
  420. ),
  421. 'create_group_id' => array
  422. (
  423. 'type' => 'int-11',
  424. 'name' => '创建人部门',
  425. 'default' => '',
  426. 'desc' => '部门',
  427. 'match' => 'option',
  428. // 'search' => 'linkage',
  429. 'update' => 'hidden',
  430. // 'option' => Dever::url('lib/appoint.get?level_total=2', 'work'),
  431. ),
  432. 'create_admin_id' => array
  433. (
  434. 'type' => 'int-11',
  435. 'name' => '创建人',
  436. 'default' => '',
  437. 'desc' => '部门',
  438. 'match' => 'option',
  439. // 'search' => 'linkage',
  440. 'update' => 'hidden',
  441. // 'option' => Dever::url('lib/appoint.get?level_total=2', 'work'),
  442. ),
  443. 'fdate' => array
  444. (
  445. 'type' => 'int-11',
  446. 'name' => '完成时间',
  447. 'default' => '',
  448. 'match' => 'is_numeric',
  449. // 'search' => 'date',
  450. 'list_name' => '创建时间<br/>最近跟进时间',
  451. // 'desc' => '',
  452. 'list' => 'Dever::load("clue/lib/info.getNum#time",{id})',
  453. 'list_order' => 1,
  454. ),
  455. 'gdate' => array
  456. (
  457. 'type' => 'int-11',
  458. 'name' => '跟进时间',
  459. 'default' => '',
  460. 'match' => 'is_numeric',
  461. // 'search' => 'date',
  462. ),
  463. 'type' => array
  464. (
  465. 'type' => 'int-11',
  466. 'name' => '跟进状态',
  467. 'default' => '1',
  468. 'desc' => '跟进状态',
  469. 'match' => 'is_string',
  470. 'option' => $type,
  471. // 'update' => 'select',
  472. 'search' => 'select',
  473. 'list' => true,
  474. // 'list_order' => 22,
  475. ),
  476. 'audit_admin' => array
  477. (
  478. 'type' => 'int-11',
  479. 'name' => '创建人',
  480. 'default' => '',
  481. 'match' => 'is_numeric',
  482. 'desc' => '创建人',
  483. 'update' => 'hidden',
  484. 'value' => $admin_id,
  485. // 'list' => 'Dever::load("active/lib/manage.active#admin_name",{id})',
  486. ),
  487. 'dever_auth' => array
  488. (
  489. 'name' => '搜索',
  490. 'default' => '',
  491. 'desc' => '类型',
  492. 'match' => 'is_string',
  493. 'search' => 'hidden',
  494. ),
  495. 'remark' => array
  496. (
  497. 'type' => 'text-255',
  498. 'name' => '备注',
  499. 'default' => '',
  500. 'desc' => '备注',
  501. 'match' => 'option',
  502. 'update' => 'textarea',
  503. // 'list' => true,
  504. ),
  505. 'reorder' => array
  506. (
  507. 'type' => 'int-11',
  508. 'name' => '排序-数值越大越靠前',
  509. 'default' => '1',
  510. 'desc' => '请输入排序',
  511. 'match' => 'option',
  512. // 'update' => 'text',
  513. // 'search' => 'order',
  514. // 'list' => true,
  515. // 'order' => 'desc',
  516. // 'edit' => true,
  517. ),
  518. 'state' => array
  519. (
  520. 'type' => 'tinyint-1',
  521. 'name' => '状态',
  522. 'default' => '1',
  523. 'desc' => '请选择状态',
  524. 'match' => 'is_numeric',
  525. ),
  526. 'cdate' => array
  527. (
  528. 'type' => 'int-11',
  529. 'name' => '创建时间',
  530. 'match' => array('is_numeric', time()),
  531. 'desc' => '',
  532. # 只有insert时才生效
  533. 'insert' => true,
  534. 'search' => 'date',
  535. // 'order' => 'desc',
  536. // 'list' => 'date("Y-m-d H:i:s", {cdate})',
  537. ),
  538. ),
  539. 'manage' => array
  540. (
  541. // 'insert' => true,
  542. 'delete' => false,
  543. 'edit' => false,
  544. 'list_button' => $list_button,
  545. // 'data' => $data,
  546. 'button' => $button,
  547. 'excel' => $excel,
  548. 'mul' =>$mul,
  549. # 设置公司权限
  550. 'company' => 'company_id',
  551. ),
  552. 'request' => array
  553. (
  554. 'list_option' => array
  555. (
  556. 'col' => 'yes-follow_admin_id,follow_group_id',
  557. 'type' => array('yes', 'in'),
  558. 'state' =>1,
  559. ),
  560. 'list' => array
  561. (
  562. # 匹配的正则或函数 选填项
  563. 'option' => array
  564. (
  565. 'id' => 'yes',
  566. 'area' => array('yes','like'),
  567. 'name' => array('yes','like'),
  568. 'mobile' => 'yes',
  569. 'source' => 'yes',
  570. 'userset_id' => 'yes',
  571. 'type' => 'yes',
  572. 'out_type' =>'yes',
  573. 'start_cdate'=>array('yes-cdate','>='),
  574. 'end_cdate' => array('yes-cdate','<='),
  575. 'follow_admin_id' => 'yes',
  576. 'follow_group_id' => 'yes',
  577. // 'area' => array('yes', 'like'),
  578. 'start_day' => array('yes-day', '>='),
  579. 'end_day' => array('yes-day', '<='),
  580. 'state' => 1,
  581. ),
  582. 'type' => 'all',
  583. 'order' => array('cdate' => 'desc'),
  584. 'page' => array(20, 'list'),
  585. // 'group' => 'shop_id',
  586. 'col' => '*',
  587. ),
  588. 'getAll' => array
  589. (
  590. # 匹配的正则或函数 选填项
  591. 'option' => array
  592. (
  593. 'start' => array('yes-cdate','>='),
  594. 'end'=>array('yes-cdate','<='),
  595. 'follow_group_id' =>'yes',
  596. 'create_group_id' => 'yes',
  597. // 'type' =>array('yes','in'),
  598. 'state' => 1,
  599. ),
  600. 'type' => 'all',
  601. // 'order' => array('reorder' => 'desc', 'id' => 'desc'),
  602. // 'page' => array(5,'list'),
  603. 'col' => '*|follow_admin_id',
  604. ),
  605. 'getHAll' => array
  606. (
  607. # 匹配的正则或函数 选填项
  608. 'option' => array
  609. (
  610. 'start' => array('yes-cdate','>='),
  611. 'end'=>array('yes-cdate','<='),
  612. 'follow_group_id' =>'yes',
  613. 'gstart' => array('yes-gdate','>='),
  614. 'gend' => array('yes-gdate','<='),
  615. 'fstart' => array('yes-fdate','>='),
  616. 'fend' => array('yes-fdate','<='),
  617. 'type' =>array('yes','in'),
  618. 'state' => 1,
  619. ),
  620. 'type' => 'count',
  621. // 'order' => array('reorder' => 'desc', 'id' => 'desc'),
  622. // 'page' => array(5,'list'),
  623. 'col' => '*',
  624. ),
  625. ),
  626. );