shop_stat_log.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'shop_stat_log',
  6. # 显示给用户看的名称
  7. 'lang' => '归店统计操作记录表',
  8. 'order' => 79,
  9. 'menu' => false,
  10. # 数据结构
  11. 'struct' => array
  12. (
  13. 'id' => array
  14. (
  15. 'type' => 'int-11',
  16. 'name' => 'ID',
  17. 'default' => '',
  18. 'desc' => '',
  19. 'match' => 'is_numeric',
  20. 'search' => 'order',
  21. //'list' => true,
  22. ),
  23. 'month' => array
  24. (
  25. 'type' => 'int-11',
  26. 'name' => '月份',
  27. 'default' => '',
  28. 'match' => 'is_numeric',
  29. 'desc' => '',
  30. 'update' => 'month',
  31. 'search' => 'month',
  32. 'callback' => 'maketime',
  33. 'list' => 'date("Y-m", {month})',
  34. ),
  35. 'create_admin' => array
  36. (
  37. 'type' => 'int-11',
  38. 'name' => '归店统计生成人',
  39. 'default' => '',
  40. 'desc' => '归店统计生成人',
  41. 'match' => 'is_numeric',
  42. ),
  43. 'create_date' => array
  44. (
  45. 'type' => 'int-11',
  46. 'name' => '归店统计生成时间',
  47. 'default' => '',
  48. 'desc' => '归店统计生成时间',
  49. 'match' => 'is_numeric',
  50. ),
  51. 'confirm_admin' => array
  52. (
  53. 'type' => 'int-11',
  54. 'name' => '对账确认人',
  55. 'default' => '',
  56. 'desc' => '对账确认人',
  57. 'match' => 'is_numeric',
  58. ),
  59. 'confirm_date' => array
  60. (
  61. 'type' => 'int-11',
  62. 'name' => '对账确认时间',
  63. 'default' => '',
  64. 'desc' => '对账确认时间',
  65. 'match' => 'is_numeric',
  66. ),
  67. 'send_admin' => array
  68. (
  69. 'type' => 'int-11',
  70. 'name' => '账单发放人',
  71. 'default' => '',
  72. 'desc' => '账单发放人',
  73. 'match' => 'is_numeric',
  74. ),
  75. 'send_date' => array
  76. (
  77. 'type' => 'int-11',
  78. 'name' => '账单发放时间',
  79. 'default' => '',
  80. 'desc' => '账单发放时间',
  81. 'match' => 'is_numeric',
  82. ),
  83. // 'subsidy' => array
  84. // (
  85. // 'type' => 'decimal-11,2',
  86. // 'name' => '补贴',
  87. // 'default' => '0',
  88. // 'desc' => '补贴',
  89. // 'match' => 'is_numeric',
  90. // 'update' => 'text',
  91. // 'list' => true,
  92. // 'list_order' => 3,
  93. // ),
  94. // 'dl_subsidy' => array
  95. // (
  96. // 'type' => 'decimal-11,2',
  97. // 'name' => '补贴',
  98. // 'default' => '0',
  99. // 'desc' => '补贴',
  100. // 'match' => 'is_numeric',
  101. // 'update' => 'text',
  102. // // 'list' => true,
  103. // // 'list_order' => 3,
  104. // ),
  105. // 'v_subsidy' => array
  106. // (
  107. // 'type' => 'decimal-11,2',
  108. // 'name' => '补贴',
  109. // 'default' => '0',
  110. // 'desc' => '补贴',
  111. // 'match' => 'is_numeric',
  112. // 'update' => 'text',
  113. // // 'list' => true,
  114. // // 'list_order' => 3,
  115. // ),
  116. 'state' => array
  117. (
  118. 'type' => 'tinyint-1',
  119. 'name' => '状态',
  120. 'default' => '1',
  121. 'desc' => '请选择状态',
  122. 'match' => 'is_numeric',
  123. ),
  124. 'cdate' => array
  125. (
  126. 'type' => 'int-11',
  127. 'name' => '统计时间',
  128. 'match' => array('is_numeric', time()),
  129. 'desc' => '',
  130. ),
  131. ),
  132. 'manage' => array
  133. (
  134. // 'insert' => false,
  135. 'delete' => false,
  136. // 'edit' => false,
  137. // 'excel' => true,
  138. ),
  139. 'request' => array
  140. (
  141. ),
  142. );