|
|
@@ -310,18 +310,19 @@ class WorkOrderService
|
|
|
}
|
|
|
|
|
|
private function updateLogisticHandlerTask(){
|
|
|
- // 将当日承运商处理过 且 状态为无的 标记为滞留状态 `滞`
|
|
|
+ // 将当日承运商处理过 且 状态为`无`的 标记为滞留状态 `滞`
|
|
|
WorkOrder::query()->where('status',3)
|
|
|
- ->where('logistic_tag',0)
|
|
|
+ ->where('logistic_tag',1)
|
|
|
->update(['logistic_tag' => 2]);
|
|
|
}
|
|
|
|
|
|
private function updateBaoShiHandlerTask(){
|
|
|
- // 将当日宝时处理过 且 状态为无的 标记为滞留状态 `滞`
|
|
|
+ // 将当日宝时处理过 且 状态为`无`的 标记为滞留状态 `滞`
|
|
|
WorkOrder::query()->whereIn('status',[1,4])
|
|
|
- ->where('bao_shi_tag',0)
|
|
|
+ ->where('bao_shi_tag',1)
|
|
|
->update(['bao_shi_tag' => 2]);
|
|
|
}
|
|
|
|
|
|
|
|
|
+
|
|
|
}
|