info_stat.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'info_stat',
  6. # 显示给用户看的名称
  7. 'lang' => '数据统计',
  8. # 后台菜单排序
  9. 'order' => 2,
  10. // 'menu' => false,
  11. # 数据结构
  12. 'struct' => array
  13. (
  14. 'id' => array
  15. (
  16. 'type' => 'int-11',
  17. 'name' => 'ID',
  18. 'default' => '',
  19. 'desc' => '',
  20. 'match' => 'is_numeric',
  21. 'search' => 'order',
  22. // 'list' => true,
  23. 'order' => 'desc',
  24. ),
  25. 'day' => array
  26. (
  27. 'type' => 'int-11',
  28. 'name' => '日期',
  29. 'default' => '',
  30. 'match' => 'is_numeric',
  31. 'desc' => '',
  32. 'list' => 'date("Y-m-d", {day})',
  33. 'list_order' => 1,
  34. // 'search' => 'day',
  35. // 'search_button' => array
  36. // (
  37. // 'sum' => 'num,yes_num,cash,daili_num,agent_cash,no_num,no_cash',
  38. // 'option' => array(
  39. // 'day' => '按天',
  40. // 'week' => '按周',
  41. // 'month' => '按月',
  42. // ),
  43. // 'group' => '',
  44. // ),
  45. // 'order' => 'desc',
  46. // 'list' => 'Dever::showDay("{day}")',
  47. ),
  48. 'group_id' => array
  49. (
  50. 'type' => 'int-11',
  51. 'name' => '部门',
  52. 'default' => '-1',
  53. 'desc' => '部门',
  54. 'match' => 'is_string',
  55. 'update' => 'linkage',
  56. 'search' => 'linkage',
  57. 'option' => Dever::url('lib/appoint.get?level_total=1', 'work'),
  58. 'list' => 'Dever::load("clue/lib/manage.group",{group_id})',
  59. ),
  60. 'group_num' => array
  61. (
  62. 'type' => 'int-11',
  63. 'name' => '跟进成员数',
  64. 'default' => '0',
  65. 'desc' => '数量',
  66. 'match' => 'option',
  67. 'update' => 'hidden',
  68. 'list' => true,
  69. ),
  70. 'num' => array
  71. (
  72. 'type' => 'int-11',
  73. 'name' => '全部有效线索',
  74. 'default' => '0',
  75. 'desc' => '数量',
  76. 'match' => 'option',
  77. 'update' => 'hidden',
  78. 'list' => true,
  79. ),
  80. 'd_num' => array
  81. (
  82. 'type' => 'int-11',
  83. 'name' => '待分派',
  84. 'default' => '0',
  85. 'desc' => '数量',
  86. 'match' => 'option',
  87. 'update' => 'hidden',
  88. 'list' => true,
  89. ),
  90. 'dg_num' => array
  91. (
  92. 'type' => 'int-11',
  93. 'name' => '待跟进',
  94. 'default' => '0',
  95. 'desc' => '数量',
  96. 'match' => 'option',
  97. 'update' => 'hidden',
  98. 'list' => true,
  99. ),
  100. 'g_num' => array
  101. (
  102. 'type' => 'int-11',
  103. 'name' => '跟进数',
  104. 'default' => '0',
  105. 'desc' => '数量',
  106. 'match' => 'option',
  107. 'update' => 'hidden',
  108. 'list' => true,
  109. ),
  110. 'qx_num' => array
  111. (
  112. 'type' => 'int-11',
  113. 'name' => '取消关闭',
  114. 'default' => '0',
  115. 'desc' => '数量',
  116. 'match' => 'option',
  117. 'update' => 'hidden',
  118. 'list' => true,
  119. ),
  120. 'f_num' => array
  121. (
  122. 'type' => 'int-11',
  123. 'name' => '成功关闭',
  124. 'default' => '0',
  125. 'desc' => '数量',
  126. 'match' => 'option',
  127. 'update' => 'hidden',
  128. 'list' => true,
  129. ),
  130. 'state' => array
  131. (
  132. 'type' => 'tinyint-1',
  133. 'name' => '状态',
  134. 'default' => '1',
  135. 'desc' => '请选择状态',
  136. 'match' => 'is_numeric',
  137. ),
  138. 'cdate' => array
  139. (
  140. 'type' => 'int-11',
  141. 'name' => '日期',
  142. 'match' => array('is_numeric', time()),
  143. 'desc' => '',
  144. # 只有insert时才生效
  145. 'insert' => true,
  146. 'search' => 'day',
  147. // 'list' => 'date("Y-m-d", {cdate})',
  148. // 'list_order' => 1,
  149. ),
  150. ),
  151. 'manage' => array
  152. (
  153. 'insert' => false,
  154. 'delete' => false,
  155. 'edit' => false,
  156. 'page_list' => 'info_log',
  157. ),
  158. 'request' => array
  159. (
  160. 'getAll' => array
  161. (
  162. # 匹配的正则或函数 选填项
  163. 'option' => array
  164. (
  165. 'info_id' => 'yes',
  166. 'state' => 1,
  167. ),
  168. 'type' => 'all',
  169. 'order' => array('cdate'=> 'desc'),
  170. 'col' => '*',
  171. ),
  172. ),
  173. );