This commit is contained in:
USER-20220102CG\noblelift
2023-01-06 17:07:07 +08:00
parent 9ea215c612
commit 767fd35bbe
12 changed files with 933 additions and 627 deletions

View File

@@ -43,6 +43,7 @@ public class AutoCreateInst {
String taskcode = acsTask.getTask_code();
String task_type = acsTask.getTask_type();
String vehiclecode = acsTask.getVehicle_code();
String storage_task_type = acsTask.getStorage_task_type();
String priority = acsTask.getPriority();
String is_send = acsTask.getIs_send();
@@ -70,6 +71,9 @@ public class AutoCreateInst {
if (StrUtil.equals(is_send, "0")) {
continue;
}
if(StrUtil.equals(storage_task_type,"1") || StrUtil.equals(storage_task_type,"2") ){
continue;
}
//校验路由关系
List<RouteLineDto> shortPathsList = routeLineService.getShortPathLines(start_device_code, next_device_code, route_plan_code);
if (ObjectUtils.isEmpty(shortPathsList)) {