order_goods.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <?php
  2. $status = array
  3. (
  4. 1 => '正常',
  5. 2 => '已申报',
  6. 3 => '已退款',
  7. );
  8. return array
  9. (
  10. # 表名
  11. 'name' => 'order_goods',
  12. # 显示给用户看的名称
  13. 'lang' => '订单商品表',
  14. 'menu' => false,
  15. 'status' => $status,
  16. # 数据结构
  17. 'struct' => array
  18. (
  19. 'id' => array
  20. (
  21. 'type' => 'int-11',
  22. 'name' => 'ID',
  23. 'default' => '',
  24. 'desc' => '',
  25. 'match' => 'is_numeric',
  26. 'search' => 'order',
  27. 'update' => 'hidden',
  28. //'list' => true,
  29. ),
  30. 'factory_id' => array
  31. (
  32. 'type' => 'int-11',
  33. 'name' => '所属工厂',
  34. 'default' => '',
  35. 'desc' => '所属工厂',
  36. 'match' => 'is_numeric',
  37. 'update' => 'hidden',
  38. 'value' => Dever::input('search_option_factory_id'),
  39. 'list' => 'Dever::load("factory/info-find#name", {factory_id})',
  40. ),
  41. 'order_id' => array
  42. (
  43. 'type' => 'int-11',
  44. 'name' => '订单表id',
  45. 'default' => '',
  46. 'desc' => '订单表id',
  47. 'match' => 'is_numeric',
  48. ),
  49. 'goods_id' => array
  50. (
  51. 'type' => 'int-11',
  52. 'name' => '商品名称',
  53. 'default' => '',
  54. 'desc' => '商品名称',
  55. 'match' => 'is_numeric',
  56. 'list' => 'Dever::load("goods/info-find#name", {goods_id})',
  57. ),
  58. 'sku_id' => array
  59. (
  60. 'type' => 'int-11',
  61. 'name' => 'sku_id',
  62. 'default' => '-1',
  63. 'desc' => 'sku_id',
  64. 'match' => 'is_numeric',
  65. ),
  66. 'price' => array
  67. (
  68. 'type' => 'varchar-50',
  69. 'name' => '价格',
  70. 'default' => '',
  71. 'desc' => '价格',
  72. 'match' => 'option',
  73. 'update' => 'text',
  74. 'list' => true,
  75. ),
  76. 'num' => array
  77. (
  78. 'type' => 'int-11',
  79. 'name' => '购买数量',
  80. 'default' => '',
  81. 'desc' => '购买数量',
  82. 'match' => 'is_numeric',
  83. 'search' => 'select',
  84. 'list' => true,
  85. ),
  86. 'status' => array
  87. (
  88. 'type' => 'int-11',
  89. 'name' => '状态',
  90. 'default' => '1',
  91. 'desc' => '状态',
  92. 'match' => 'is_numeric',
  93. //'update' => 'select',
  94. 'option' => $status,
  95. 'search' => 'select',
  96. 'list' => true,
  97. 'edit' => true,
  98. ),
  99. 'state' => array
  100. (
  101. 'type' => 'tinyint-1',
  102. 'name' => '状态',
  103. 'default' => '1',
  104. 'desc' => '请选择状态',
  105. 'match' => 'is_numeric',
  106. ),
  107. 'cdate' => array
  108. (
  109. 'type' => 'int-11',
  110. 'name' => '创建时间',
  111. 'match' => array('is_numeric', time()),
  112. 'desc' => '',
  113. # 只有insert时才生效
  114. //'insert' => true,
  115. 'search' => 'date',
  116. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  117. ),
  118. ),
  119. 'manage' => array
  120. (
  121. 'insert' => false,
  122. 'delete' => false,
  123. 'page_list_table' => 'buy_order_goods',
  124. ),
  125. 'request' => array
  126. (
  127. # 获取单条数据
  128. 'getIds' => array
  129. (
  130. # 匹配的正则或函数 选填项
  131. 'option' => array
  132. (
  133. 'uid' => 'yes',
  134. 'shop_id' => 'yes',
  135. 'order_id' => 'yes',
  136. 'status' => 1,
  137. 'state' => 1,
  138. ),
  139. 'type' => 'all',
  140. 'col' => '*|id',
  141. ),
  142. # 获取多条数据
  143. 'getDataByIds' => array
  144. (
  145. # 匹配的正则或函数 选填项
  146. 'option' => array
  147. (
  148. 'ids' => array('yes-id', 'in'),
  149. 'uid' => 'yes',
  150. 'shop_id' => 'yes',
  151. 'order_id' => 'yes',
  152. 'state' => 1,
  153. ),
  154. 'type' => 'all',
  155. 'col' => '*',
  156. ),
  157. ),
  158. );