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

OrderValidate.php 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. namespace app\admin\validate\order;
  3. use app\common\enum\OrderEnum;
  4. use app\common\model\team\TeamJoin;
  5. use think\Validate;
  6. use app\common\model\order\Order;
  7. use app\common\model\team\Team;
  8. class OrderValidate extends Validate
  9. {
  10. /**
  11. * @notes 发货操作验证
  12. * @param $post
  13. * @return bool|string
  14. * @author suny
  15. * @date 2021/7/14 10:10 上午
  16. * @throws \think\db\exception\DbException
  17. * @throws \think\db\exception\ModelNotFoundException
  18. * @throws \think\db\exception\DataNotFoundException
  19. */
  20. protected function checkDelivery($post)
  21. {
  22. $id = $post['id'];
  23. $order = Order::where(['id' => $id])->find();
  24. if (!$order) {
  25. return '订单失效';
  26. }
  27. if ($order['del'] == 1) {
  28. return '订单已删除';
  29. }
  30. if ($order['shipping_status'] == 1) {
  31. return '此订单已发货';
  32. }
  33. if ($order['order_type'] == OrderEnum::TEAM_ORDER) {
  34. $join = TeamJoin::where(['order_id' => $order['id']])->findOrEmpty();
  35. if ($join['status'] != Team::STATUS_SUCCESS) {
  36. return '已支付的拼团订单需要等待拼团成功后才能发货';
  37. }
  38. }
  39. return true;
  40. }
  41. }