截流自动化的商城平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

IntegralGoodsValidate.php 954B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. namespace app\api\validate;
  3. use app\common\basics\Validate;
  4. use app\common\enum\IntegralGoodsEnum;
  5. use app\common\model\integral\IntegralGoods;
  6. /**
  7. * 积分商品验证
  8. * Class IntegralOrderValidate
  9. * @package app\api\validate
  10. */
  11. class IntegralGoodsValidate extends Validate
  12. {
  13. protected $rule = [
  14. 'id' => 'require|number|checkGoods',
  15. ];
  16. protected $message = [
  17. 'id.require' => '参数缺失',
  18. 'id.number' => '参数类型错误',
  19. ];
  20. // 验证商品
  21. protected function checkGoods($value, $rule, $data)
  22. {
  23. $goods = IntegralGoods::where([
  24. 'id' => $value,
  25. 'del' => IntegralGoodsEnum::DEL_NORMAL,
  26. ])->findOrEmpty();
  27. if ($goods->isEmpty()) {
  28. return '积分商品不存在';
  29. }
  30. if ($goods['status'] != IntegralGoodsEnum::STATUS_SHELVES) {
  31. return '商品已下架';
  32. }
  33. return true;
  34. }
  35. }