截流自动化的商城平台
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.

VerificationValidate.php 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?php
  2. namespace app\shop\validate\order;
  3. use app\common\basics\Validate;
  4. use app\common\enum\OrderEnum;
  5. use app\common\enum\PayEnum;
  6. use app\common\enum\TeamEnum;
  7. use app\common\model\order\Order;
  8. use app\common\model\team\TeamJoin;
  9. /**
  10. * 自提核销验证
  11. * Class VerificationValidate
  12. * @package app\shop\validate\order
  13. */
  14. class VerificationValidate extends Validate
  15. {
  16. protected $rule = [
  17. 'order_id' => 'require|checkId',
  18. ];
  19. protected $message = [
  20. 'order_id.require' => '参数缺失',
  21. ];
  22. public function sceneVerification()
  23. {
  24. return $this->only(['order_id'])
  25. ->append('order_id', 'checkVerification');
  26. }
  27. /**
  28. * @notes 校验订单
  29. * @param $value
  30. * @param $rule
  31. * @param $data
  32. * @return bool|string
  33. * @author 段誉
  34. * @date 2022/11/2 14:41
  35. */
  36. public function checkId($value, $rule, $data)
  37. {
  38. $result = Order::where('id', $value)->findOrEmpty();
  39. if ($result->isEmpty()) {
  40. return '订单不存在';
  41. }
  42. return true;
  43. }
  44. /**
  45. * @notes 校验订单是否可以提货核销
  46. * @param $value
  47. * @param $rule
  48. * @param $data
  49. * @return bool|string
  50. * @author 段誉
  51. * @date 2022/11/2 14:42
  52. */
  53. public function checkVerification($value, $rule, $data)
  54. {
  55. $result = Order::where('id', $value)->findOrEmpty();
  56. if ($result['pay_status'] != PayEnum::ISPAID) {
  57. return '订单未支付,不允许核销';
  58. }
  59. if ($result['delivery_type'] != OrderEnum::DELIVERY_TYPE_SELF) {
  60. return '非自提订单,不允许核销';
  61. }
  62. if ($result['verification_status'] == OrderEnum::WRITTEN_OFF) {
  63. return '订单已核销';
  64. }
  65. if ($result['order_type'] == OrderEnum::TEAM_ORDER) {
  66. $teamcheck = TeamJoin::where(['order_id' => $value, 'status' => TeamEnum::TEAM_STATUS_SUCCESS])->findOrEmpty();
  67. if ($teamcheck->isEmpty()) {
  68. return '拼团成功后才能核销';
  69. }
  70. }
  71. return true;
  72. }
  73. }