截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IntegralPlaceOrderValidate.php 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. use app\common\model\user\UserAddress;
  7. /**
  8. * 积分订单下单验证
  9. * Class IntegralOrderValidate
  10. * @package app\api\validate
  11. */
  12. class IntegralPlaceOrderValidate extends Validate
  13. {
  14. protected $rule = [
  15. 'num' => 'require|number|gt:0',
  16. 'id' => 'require|number|checkGoods',
  17. 'address_id' => 'require|checkAddress',
  18. ];
  19. protected $message = [
  20. 'id.require' => '参数缺失',
  21. 'id.number' => '参数类型错误',
  22. 'num.require' => '请选择商品数量',
  23. 'num.number' => '商品数量参数类型错误',
  24. 'num.gt' => '请选择商品数量',
  25. 'address_id.require' => '请选择地址',
  26. ];
  27. public function sceneSettlement()
  28. {
  29. return $this->only(['code','num']);
  30. }
  31. public function sceneSubmit()
  32. {
  33. return $this->only(['id', 'num', 'address_id'])
  34. ->append('id', 'checkGoods');
  35. }
  36. // 验证商品
  37. protected function checkGoods($value, $rule, $data)
  38. {
  39. $goods = IntegralGoods::where([
  40. 'id' => $value,
  41. 'del' => IntegralGoodsEnum::DEL_NORMAL,
  42. 'status' => IntegralGoodsEnum::STATUS_SHELVES
  43. ])->findOrEmpty();
  44. if ($goods->isEmpty()) {
  45. return '积分商品不存在';
  46. }
  47. if ($goods['stock'] < intval($data['num'])) {
  48. return '积分商品库存不足';
  49. }
  50. return true;
  51. }
  52. // 验证地址信息
  53. protected function checkAddress($value, $rule, $data)
  54. {
  55. $condition = [
  56. 'id' => (int)$value,
  57. 'user_id' => $data['user_id'],
  58. 'del' => 0
  59. ];
  60. $address = UserAddress::where($condition)->findOrEmpty();
  61. if ($address->isEmpty()) {
  62. return '收货地址信息不存在';
  63. }
  64. return true;
  65. }
  66. }