Просмотр исходного кода

自动派单-派已支付订单

whitefang 1 год назад
Родитель
Сommit
6cddc920e0
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      app/common/command/AutomaticDispatch.php

+ 2 - 1
app/common/command/AutomaticDispatch.php

@@ -53,7 +53,8 @@ class AutomaticDispatch extends Command
             // 获取当前时间的前五分钟时间戳
             $fiveMinutesAgo = time() - 120; // 300 秒 = 2 分钟
             $list = ServiceWork::where('work_status',0)
-                        ->where('service_status',0)
+                ->where('service_status',0)
+                ->where('work_pay_status',1)
                         ->where(function ($query) use ($fiveMinutesAgo) {
                             $query->where('exec_time', 0)->whereOr('exec_time', '<', $fiveMinutesAgo);
                         })