截流自动化的商城平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

VerificationValidate.php 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <?php
  2. namespace app\shopapi\validate;
  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. 'id' => 'require|checkId',
  18. 'pickup_code' => 'require|checkPickupCode',
  19. ];
  20. protected $message = [
  21. 'id.require' => '参数缺失',
  22. 'pickup_code.require' => '请填写核销码',
  23. ];
  24. /**
  25. * @notes 订单详情
  26. * @return VerificationValidate
  27. * @author 段誉
  28. * @date 2022/11/2 18:18
  29. */
  30. public function sceneDetail()
  31. {
  32. return $this->only(['pickup_code']);
  33. }
  34. /**
  35. * @notes 确认核销
  36. * @return VerificationValidate
  37. * @author 段誉
  38. * @date 2022/11/2 18:18
  39. */
  40. public function sceneConfirm()
  41. {
  42. return $this->only(['id'])
  43. ->append('id', 'checkVerification');
  44. }
  45. /**
  46. * @notes 校验订单
  47. * @param $value
  48. * @param $rule
  49. * @param $data
  50. * @return bool|string
  51. * @author 段誉
  52. * @date 2022/11/2 14:41
  53. */
  54. public function checkId($value, $rule, $data)
  55. {
  56. $result = Order::where('id', $value)->findOrEmpty();
  57. if ($result->isEmpty()) {
  58. return '订单不存在';
  59. }
  60. return true;
  61. }
  62. /**
  63. * @notes 校验订单是否可以提货核销
  64. * @param $value
  65. * @param $rule
  66. * @param $data
  67. * @return bool|string
  68. * @author 段誉
  69. * @date 2022/11/2 14:42
  70. */
  71. public function checkVerification($value, $rule, $data)
  72. {
  73. $result = Order::where('id', $value)
  74. ->where('shop_id', $data['shop_id'])
  75. ->findOrEmpty();
  76. if ($result['pay_status'] != PayEnum::ISPAID) {
  77. return '订单未支付,不允许核销';
  78. }
  79. if ($result['delivery_type'] != OrderEnum::DELIVERY_TYPE_SELF) {
  80. return '非自提订单,不允许核销';
  81. }
  82. if ($result['verification_status'] == OrderEnum::WRITTEN_OFF) {
  83. return '订单已核销';
  84. }
  85. if ($result['order_type'] == OrderEnum::TEAM_ORDER) {
  86. $teamcheck = TeamJoin::where(['order_id' => $value, 'status' => TeamEnum::TEAM_STATUS_SUCCESS])->findOrEmpty();
  87. if ($teamcheck->isEmpty()) {
  88. return '拼团成功后才能核销';
  89. }
  90. }
  91. return true;
  92. }
  93. /**
  94. * @notes 收货码核销
  95. * @param $value
  96. * @param $rule
  97. * @param $data
  98. * @return bool|string
  99. * @throws \think\db\exception\DataNotFoundException
  100. * @throws \think\db\exception\DbException
  101. * @throws \think\db\exception\ModelNotFoundException
  102. * @author 段誉
  103. * @date 2022/11/2 18:04
  104. */
  105. public function checkPickupCode($value,$rule,$data)
  106. {
  107. $result = Order::where(['pickup_code'=>$value, 'shop_id' => $data['shop_id']])->find();
  108. if (empty($result)) {
  109. return '提货码不正确';
  110. }
  111. if (!in_array($result['order_status'],[OrderEnum::ORDER_STATUS_DELIVERY,OrderEnum::ORDER_STATUS_GOODS])) {
  112. return '订单不允许核销';
  113. }
  114. if ($result['delivery_type'] != OrderEnum::DELIVERY_TYPE_SELF) {
  115. return '不是自提订单,不允许核销';
  116. }
  117. if ($result['verification_status'] == OrderEnum::WRITTEN_OFF) {
  118. return '订单已核销';
  119. }
  120. if ($result['order_type'] == OrderEnum::TEAM_ORDER){
  121. $teamcheck = TeamJoin::where(['order_id' => $result['id'], 'status' => TeamEnum::TEAM_STATUS_SUCCESS])->findOrEmpty();
  122. if ($teamcheck->isEmpty()) {
  123. return '拼团成功后才能核销';
  124. }
  125. }
  126. return true;
  127. }
  128. }