price.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?php
  2. $goods = array
  3. (
  4. 1 => '所有商品',
  5. 2 => '部分商品',
  6. );
  7. $category = function()
  8. {
  9. $array = array();
  10. $data = Dever::load('scm_product/category-getTop');
  11. if($data)
  12. {
  13. $array += $data;
  14. }
  15. return $array;
  16. };
  17. $status = array
  18. (
  19. 1 => '有效',
  20. 2 => '失效',
  21. );
  22. $type = array
  23. (
  24. 1 => '统一调价',
  25. 2 => '手动调价',
  26. );
  27. $time = array
  28. (
  29. 1 => '长期有效',
  30. 2 => '短期有效',
  31. );
  32. return array
  33. (
  34. # 表名
  35. 'name' => 'price',
  36. # 显示给用户看的名称
  37. 'lang' => '价格模板设置',
  38. 'info' => '在商品中设置的价格是默认价格,如果一个SKU想设置不同的价格,则可以通过价格模板设置',
  39. # 是否显示在后台菜单
  40. 'order' => 100,
  41. # 数据结构
  42. 'struct' => array
  43. (
  44. 'id' => array
  45. (
  46. 'type' => 'int-11',
  47. 'name' => 'ID',
  48. 'default' => '',
  49. 'desc' => '',
  50. 'match' => 'is_numeric',
  51. 'list' => true,
  52. 'order' => 'asc',
  53. ),
  54. 'name' => array
  55. (
  56. 'type' => 'varchar-150',
  57. 'name' => '模板名称',
  58. 'default' => '',
  59. 'desc' => '模板名称',
  60. 'match' => 'is_string',
  61. 'update' => 'text',
  62. 'search' => 'fulltext',
  63. 'list' => true,
  64. 'edit' => true,
  65. ),
  66. 'scm_product-price_rule'=> array
  67. (
  68. 'name' => '策略设置',
  69. 'default' => '',
  70. 'desc' => '策略设置',
  71. 'match' => 'option',
  72. # 同步更新另外一个表的内容,两个表相关联的id,更新另一个表的字段
  73. 'sync' => array('id', 'price_id'),
  74. # 根据category字段的值,获取scm_product/attr.search接口的内容
  75. 'update' => array(1),
  76. ),
  77. 'state' => array
  78. (
  79. 'type' => 'tinyint-1',
  80. 'name' => '状态',
  81. 'default' => '1',
  82. 'desc' => '请选择状态',
  83. 'match' => 'is_numeric',
  84. ),
  85. 'cdate' => array
  86. (
  87. 'type' => 'int-11',
  88. 'name' => '录入时间',
  89. 'match' => array('is_numeric', time()),
  90. 'desc' => '',
  91. # 只有insert时才生效
  92. 'insert' => true,
  93. //'search' => 'date',
  94. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  95. ),
  96. ),
  97. 'manage' => array
  98. (
  99. //'insert' => false,
  100. //'edit' => false,
  101. # 自定义快捷新增和编辑
  102. 'button' => array
  103. (
  104. //'新增' => array('fast'),
  105. ),
  106. 'list_button' => array
  107. (
  108. //'edit' => array('编辑'),
  109. 'list' => array('策略管理', 'price_rule&oper_table=price&search_option_price_id={id}'),
  110. )
  111. ),
  112. 'request' => array
  113. (
  114. )
  115. );