GoodValidate.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?php
  2. namespace app\admin\validate;
  3. use app\model\GoodModel;
  4. use think\facade\Db;
  5. use think\Validate;
  6. //商品模块验证器
  7. class GoodValidate extends Validate
  8. {
  9. //验证规则
  10. protected $rule = [
  11. 'good_cover_img|商品封面图' => 'require|max:255|url',
  12. 'good_name|商品名称' => 'require|max:255',
  13. 'moq|销售起订量' => 'require|number|min:1|max:999999999',
  14. 'step|销售步长' => 'require|number|min:1|max:999999999',
  15. 'good_banner_img|商品轮播图' => 'require|array|min:1|max:100',
  16. 'good_img|商品详情图' => 'require|array|min:1|max:100',
  17. 'good_param|商品参数' => 'require|array|min:1|max:100',
  18. 'unit_id|单位id' => 'require|number|gt:0',
  19. 'good_remark|商品备注' => 'require|max:255',
  20. 'type|商品类型' => 'require|number|in:1,2'
  21. ];
  22. //创建商品
  23. public function sceneAdd()
  24. {
  25. return $this
  26. ->only([
  27. 'good_cover_img',
  28. 'good_name',
  29. 'moq',
  30. 'step',
  31. 'good_banner_img',
  32. 'good_img',
  33. 'good_param',
  34. 'unit_id',
  35. 'good_remark',
  36. 'type'
  37. ]);
  38. }
  39. //修改商品信息
  40. public function sceneEdit()
  41. {
  42. return $this->append('id|主键', 'require|number|gt:0');
  43. }
  44. //修改商品价格信息
  45. public function sceneUpdateGoodPriceInfo()
  46. {
  47. return $this->only(['spuCode', 'demo_fee', 'open_fee', 'sample_fee', 'market_price', 'good_ladder']);
  48. }
  49. //获取商品详情
  50. public function sceneGetGoodDetail()
  51. {
  52. return $this->only(['spuCode']);
  53. }
  54. //校验单位
  55. protected function checkUnitId($value)
  56. {
  57. return Db::connect('mysql_wsm')
  58. ->table('wsm_unit')
  59. ->field('id')
  60. ->where(['id' => $value, 'is_del' => 0])
  61. ->findOrEmpty() ? true : '该单位ID不存在';
  62. }
  63. //校验分类
  64. protected function checkCatId($value = '')
  65. {
  66. return Db::connect('mysql_wsm')
  67. ->table('wsm_cat')
  68. ->field('id')
  69. ->where(['id' => $value, 'is_del' => 0])
  70. ->findOrEmpty() ? true : '该分类ID不存在';
  71. }
  72. //校验品牌
  73. protected function checkBrandId($value = '')
  74. {
  75. return Db::connect('mysql_wsm')
  76. ->table('wsm_brand')
  77. ->field('id')
  78. ->where(['id' => $value, 'is_del' => 0])
  79. ->findOrEmpty() ? true : '该品牌ID不存在';
  80. }
  81. //校验业务公司
  82. protected function checkCompanyNo($value = '')
  83. {
  84. return Db::connect('mysql_wsm')
  85. ->table('wsm_business')
  86. ->field('id')
  87. ->where(['companyNo' => $value, 'is_del' => 0])
  88. ->findOrEmpty() ? true : '该业务公司不存在';
  89. }
  90. //校验专属类型
  91. protected function checkExclusiveId($value = '')
  92. {
  93. return Db::connect('mysql_wsm')
  94. ->table('wsm_exclusive')
  95. ->field('id')
  96. ->where(['id' => $value, 'is_del' => 0])
  97. ->findOrEmpty() ? true : '该专属类型不存在';
  98. }
  99. }