GoodValidate.php 3.0 KB

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