派单接口中判断为未派完的单,必定指派给了其他师傅,设置是否自己承接的标识为否

This commit is contained in:
donqi 2023-08-22 22:42:43 +08:00
parent a0ab257b18
commit 555fd91a56
1 changed files with 2 additions and 0 deletions

View File

@ -401,7 +401,9 @@ public class OrderController extends BaseController {
}
} else {
// 未派完单
om2up.setAllSelfAssigned(0);
om2up.setHasDispatchedAll(0);
om2up.setOrderStatus(OrderStatus.PLAIN.code());
}
orderMasterService.updateOrderMaster(om2up);