info_unit.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?php
  2. $unit = function()
  3. {
  4. return Dever::load('scm/unit-state');
  5. };
  6. return array
  7. (
  8. # 表名
  9. 'name' => 'info_unit',
  10. # 显示给用户看的名称
  11. 'lang' => '商品单位关联表',
  12. 'menu' => false,
  13. # 数据结构
  14. 'struct' => array
  15. (
  16. 'id' => array
  17. (
  18. 'type' => 'int-11',
  19. 'name' => 'ID',
  20. 'default' => '',
  21. 'desc' => '',
  22. 'match' => 'is_numeric',
  23. 'search' => 'order',
  24. 'update' => 'hidden',
  25. //'list' => true,
  26. ),
  27. 'info_id' => array
  28. (
  29. 'type' => 'int-11',
  30. 'name' => '商品',
  31. 'default' => '',
  32. 'desc' => '商品',
  33. 'match' => 'is_numeric',
  34. 'update' => 'hidden',
  35. 'value' => Dever::input('search_option_info_id')
  36. ),
  37. 'unit_id' => array
  38. (
  39. 'type' => 'int-11',
  40. 'name' => '其他单位',
  41. 'default' => '',
  42. 'desc' => '其他单位',
  43. 'match' => 'is_numeric',
  44. 'update' => 'select',
  45. 'option' => $unit,
  46. ),
  47. 'radio' => array
  48. (
  49. 'type' => 'varchar-11',
  50. 'name' => '基本单位转换比-如基本单位是袋,当前选择单位为箱,一箱24袋,这里填写24即可',
  51. 'default' => '1',
  52. 'desc' => '基本单位转换比',
  53. 'match' => 'is_string',
  54. 'update' => 'text',
  55. ),
  56. 'discount' => array
  57. (
  58. 'type' => 'varchar-11',
  59. 'name' => '单位折扣-用于计算该单位价格:单位价格=基本价格*基本单位转换比*单位折扣',
  60. 'default' => '0',
  61. 'desc' => '价格转换比',
  62. 'match' => 'is_string',
  63. 'update' => 'text',
  64. ),
  65. 'state' => array
  66. (
  67. 'type' => 'tinyint-1',
  68. 'name' => '状态',
  69. 'default' => '1',
  70. 'desc' => '请选择状态',
  71. 'match' => 'is_numeric',
  72. ),
  73. 'cdate' => array
  74. (
  75. 'type' => 'int-11',
  76. 'name' => '创建时间',
  77. 'match' => array('is_numeric', time()),
  78. 'desc' => '',
  79. # 只有insert时才生效
  80. 'insert' => true,
  81. 'search' => 'date',
  82. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  83. ),
  84. ),
  85. 'manage' => array
  86. (
  87. ),
  88. 'request' => array
  89. (
  90. ),
  91. );