From 1864f916e0359d0814416cf94feda3a3662ed193 Mon Sep 17 00:00:00 2001
From: zhang <zc857179121@qq.com>
Date: 星期五, 05 九月 2025 16:39:29 +0800
Subject: [PATCH] 1
---
zy-acs-manager/src/main/java/com/zy/acs/manager/core/service/ValidService.java | 106 +++++++++++++++++++++++++++++------------------------
1 files changed, 58 insertions(+), 48 deletions(-)
diff --git a/zy-acs-manager/src/main/java/com/zy/acs/manager/core/service/ValidService.java b/zy-acs-manager/src/main/java/com/zy/acs/manager/core/service/ValidService.java
index aff806f..400c064 100644
--- a/zy-acs-manager/src/main/java/com/zy/acs/manager/core/service/ValidService.java
+++ b/zy-acs-manager/src/main/java/com/zy/acs/manager/core/service/ValidService.java
@@ -37,11 +37,11 @@
@Autowired
private SnowflakeIdWorker snowflakeIdWorker;
- public List<Task> validBusDto(List<TaskDto> taskDtoList) {
+ public List<Task> validTaskDtoList(List<TaskDto> taskDtoList) {
List<Task> taskList = new ArrayList<>();
for (TaskDto taskDto : taskDtoList) {
if (Cools.isEmpty(taskDto.getSeqNum())) {
- throw new BusinessException("seqNum涓嶈兘涓虹┖");
+ throw new BusinessException("Task seqNum can't be empty!");
}
Task task = new Task();
taskList.add(task);
@@ -49,34 +49,38 @@
task.setSeqNum(taskDto.getSeqNum());
task.setPriority(taskDto.getPriority());
+
// ori --------------------------
if (!Cools.isEmpty(taskDto.getOriLoc())) {
Loc oriLoc = locService.selecatByLocNo(taskDto.getOriLoc());
if (null == oriLoc) {
- throw new BusinessException("oriLoc: " + taskDto.getOriLoc() + "涓嶅瓨鍦�");
+ throw new BusinessException("oriLoc: " + taskDto.getOriLoc() + " doesn't exist!");
}
task.setOriLoc(oriLoc.getId());
+// task.setOriCode(oriLoc.getCode());
}
if (!Cools.isEmpty(taskDto.getOriSta())) {
- Sta oriSta = staService.selectByStaNo(taskDto.getOriSta());
+ Sta oriSta = staService.selectByStaNoOrName(taskDto.getOriSta());
+
if (null == oriSta) {
- throw new BusinessException("oriSta: " + taskDto.getOriSta() + "涓嶅瓨鍦�");
+ throw new BusinessException("oriSta: " + taskDto.getOriSta() + " doesn't exist!");
}
task.setOriSta(oriSta.getId());
+// task.setOriCode(oriSta.getCode());
}
// dest --------------------------
if (!Cools.isEmpty(taskDto.getDestLoc())) {
Loc destLoc = locService.selecatByLocNo(taskDto.getDestLoc());
if (null == destLoc) {
- throw new BusinessException("destLoc: " + taskDto.getDestLoc() + "涓嶅瓨鍦�");
+ throw new BusinessException("destLoc: " + taskDto.getDestLoc() + " doesn't exist!");
}
task.setDestLoc(destLoc.getId());
task.setDestCode(destLoc.getCode());
}
if (!Cools.isEmpty(taskDto.getDestSta())) {
- Sta destSta = staService.selectByStaNo(taskDto.getDestSta());
+ Sta destSta = staService.selectByStaNoOrName(taskDto.getDestSta());
if (null == destSta) {
- throw new BusinessException("destSta: " + taskDto.getDestSta() + "涓嶅瓨鍦�");
+ throw new BusinessException("destSta: " + taskDto.getDestSta() + " doesn't exist!");
}
task.setDestSta(destSta.getId());
task.setDestCode(destSta.getCode());
@@ -84,31 +88,35 @@
// task-type ----------------------------------
if (null == task.getOriLoc() && null == task.getOriSta()) {
- throw new BusinessException(task.getSeqNum() + " 閿欒锛宱riLoc鍜宱riSta蹇呴』瀛樺湪涓�椤�");
+ throw new BusinessException("seNum:" + task.getSeqNum() + " is wrong锛宼here must be at least one of oriLoc and oriSta");
}
if (null != task.getOriLoc() && null != task.getOriSta()) {
- throw new BusinessException(task.getSeqNum() + " 閿欒锛宱riLoc鍜宱riSta鍙兘瀛樺湪涓�椤�");
+ throw new BusinessException("seNum:" + task.getSeqNum() + " is wrong锛宼here must be at least one of oriLoc and oriSta");
}
if (null == task.getDestLoc() && null == task.getDestSta()) {
- throw new BusinessException(task.getSeqNum() + " 閿欒锛宒estLoc鍜宒estSta蹇呴』瀛樺湪涓�椤�");
+ throw new BusinessException("seNum:" + task.getSeqNum() + " is wrong锛宔ither destLoc and destSta must be present");
}
if (null != task.getDestLoc() && null != task.getDestSta()) {
- throw new BusinessException(task.getSeqNum() + " 閿欒锛宒estLoc鍜宒estSta鍙兘瀛樺湪涓�椤�");
+ throw new BusinessException("seNum:" + task.getSeqNum() + " is wrong锛宔ither destLoc and destSta must be present");
}
- if (null != task.getOriSta()) {
- if (null != task.getDestLoc()) {
- task.setTaskType(TaskTypeType.STA_TO_LOC.val());
+ if (!Cools.isEmpty(taskDto.getTaskType())) {
+ task.setTaskType(TaskTypeType.valueOf(taskDto.getTaskType()).val());
+ } else {
+ if (null != task.getOriSta()) {
+ if (null != task.getDestLoc()) {
+ task.setTaskType(TaskTypeType.STA_TO_LOC.val());
+ }
+ if (null != task.getDestSta()) {
+ task.setTaskType(TaskTypeType.STA_TO_STA.val());
+ }
}
- if (null != task.getDestSta()) {
- task.setTaskType(TaskTypeType.STA_TO_STA.val());
- }
- }
- if (null != task.getOriLoc()) {
- if (null != task.getDestLoc()) {
- task.setTaskType(TaskTypeType.LOC_TO_LOC.val());
- }
- if (null != task.getDestSta()) {
- task.setTaskType(TaskTypeType.LOC_TO_STA.val());
+ if (null != task.getOriLoc()) {
+ if (null != task.getDestLoc()) {
+ task.setTaskType(TaskTypeType.LOC_TO_LOC.val());
+ }
+ if (null != task.getDestSta()) {
+ task.setTaskType(TaskTypeType.LOC_TO_STA.val());
+ }
}
}
}
@@ -117,25 +125,27 @@
for (Task task : taskList) {
Code startCode = null;
Code endCode = null;
- Loc oriLoc = null; Loc destLoc = null;
- Sta oriSta = null; Sta destSta = null;
+ Loc oriLoc = null;
+ Loc destLoc = null;
+ Sta oriSta = null;
+ Sta destSta = null;
List<String> pathList = null;
switch (Objects.requireNonNull(TaskTypeType.get(task.getTaskTypeEl()))) {
case LOC_TO_LOC:
oriLoc = locService.getById(task.getOriLoc());
destLoc = locService.getById(task.getDestLoc());
- startCode = codeService.getById(oriLoc.getCode());
- endCode = codeService.getById(destLoc.getCode());
+ startCode = codeService.getCacheById(oriLoc.getCode());
+ endCode = codeService.getCacheById(destLoc.getCode());
if (null == startCode) {
- throw new BusinessException("oriLoc锛�" + oriLoc.getLocNo() + " 鏈粦瀹氬湴闈㈢爜");
+ throw new BusinessException("oriLoc锛�" + oriLoc.getLocNo() + " hasn't been bound to a QrCode yet");
}
if (null == endCode) {
- throw new BusinessException("destLoc锛�" + destLoc.getLocNo() + " 鏈粦瀹氬湴闈㈢爜");
+ throw new BusinessException("destLoc锛�" + destLoc.getLocNo() + " is not bound to a QrCode yet");
}
pathList = mapService.validFeasibility(startCode, endCode);
if (Cools.isEmpty(pathList)) {
- throw new BusinessException(task.getSeqNum() + "浠诲姟閿欒锛宱riLoc锛�" + task.getOriLoc() + "鏃犳硶琛岃蛋鑷� destLoc" + task.getDestLoc());
+ throw new BusinessException("seqNum:" + task.getSeqNum() + " is wrong锛宱riLoc锛�" + task.getOriLoc() + " is unable to reach destLoc" + task.getDestLoc());
}
task.setPhase(JSON.toJSONString(pathList));
break;
@@ -143,17 +153,17 @@
oriLoc = locService.getById(task.getOriLoc());
destSta = staService.getById(task.getDestSta());
- startCode = codeService.getById(oriLoc.getCode());
- endCode = codeService.getById(destSta.getCode());
+ startCode = codeService.getCacheById(oriLoc.getCode());
+ endCode = codeService.getCacheById(destSta.getCode());
if (null == startCode) {
- throw new BusinessException("oriLoc锛�" + oriLoc.getLocNo() + " 鏈粦瀹氬湴闈㈢爜");
+ throw new BusinessException("oriLoc锛�" + oriLoc.getLocNo() + " hasn't been bound to QrCode yet");
}
if (null == endCode) {
- throw new BusinessException("destSta锛�" + destSta.getStaNo() + " 鏈粦瀹氬湴闈㈢爜");
+ throw new BusinessException("destSta锛�" + destSta.getStaNo() + " is not bound to QrCode yet");
}
pathList = mapService.validFeasibility(startCode, endCode);
if (Cools.isEmpty(pathList)) {
- throw new BusinessException(task.getSeqNum() + "浠诲姟閿欒锛宱riLoc锛�" + task.getOriLoc() + "鏃犳硶琛岃蛋鑷� destSta" + task.getDestSta());
+ throw new BusinessException("seqNum:" + task.getSeqNum() + " is wrong锛宱riLoc锛�" + task.getOriLoc() + " can't move to destSta" + task.getDestSta());
}
task.setPhase(JSON.toJSONString(pathList));
break;
@@ -161,17 +171,17 @@
oriSta = staService.getById(task.getOriSta());
destLoc = locService.getById(task.getDestLoc());
- startCode = codeService.getById(oriSta.getCode());
- endCode = codeService.getById(destLoc.getCode());
+ startCode = codeService.getCacheById(oriSta.getCode());
+ endCode = codeService.getCacheById(destLoc.getCode());
if (null == startCode) {
- throw new BusinessException("oriSta锛�" + oriSta.getStaNo() + " 鏈粦瀹氬湴闈㈢爜");
+ throw new BusinessException("oriSta锛�" + oriSta.getStaNo() + " hasn't bound to QrCode yet");
}
if (null == endCode) {
- throw new BusinessException("destLoc锛�" + destLoc.getLocNo() + " 鏈粦瀹氬湴闈㈢爜");
+ throw new BusinessException("destLoc锛�" + destLoc.getLocNo() + " is not bound to QrCode yet");
}
pathList = mapService.validFeasibility(startCode, endCode);
if (Cools.isEmpty(pathList)) {
- throw new BusinessException(task.getSeqNum() + "浠诲姟閿欒锛宱riSta锛�" + task.getOriSta() + "鏃犳硶琛岃蛋鑷� destLoc" + task.getDestLoc());
+ throw new BusinessException("seqNum:" + task.getSeqNum() + " is wrong锛宱riSta锛�" + task.getOriSta() + " is unable to react destLoc" + task.getDestLoc());
}
task.setPhase(JSON.toJSONString(pathList));
break;
@@ -179,22 +189,22 @@
oriSta = staService.getById(task.getOriSta());
destSta = staService.getById(task.getDestSta());
- startCode = codeService.getById(oriSta.getCode());
- endCode = codeService.getById(destSta.getCode());
+ startCode = codeService.getCacheById(oriSta.getCode());
+ endCode = codeService.getCacheById(destSta.getCode());
if (null == startCode) {
- throw new BusinessException("oriSta锛�" + oriSta.getStaNo() + " 鏈粦瀹氬湴闈㈢爜");
+ throw new BusinessException("oriSta锛�" + oriSta.getStaNo() + " hasn't been bound to a QrCode yet");
}
if (null == endCode) {
- throw new BusinessException("destSta锛�" + destSta.getStaNo() + " 鏈粦瀹氬湴闈㈢爜");
+ throw new BusinessException("destSta锛�" + destSta.getStaNo() + " is not bound to a QrCode yet");
}
pathList = mapService.validFeasibility(startCode, endCode);
if (Cools.isEmpty(pathList)) {
- throw new BusinessException(task.getSeqNum() + "浠诲姟閿欒锛宱riSta锛�" + task.getOriSta() + "鏃犳硶琛岃蛋鑷� destSta" + task.getDestSta());
+ throw new BusinessException("seqNum:" + task.getSeqNum() + " is wrong锛宱riSta锛�" + task.getOriSta() + " can't move to destSta" + task.getDestSta());
}
task.setPhase(JSON.toJSONString(pathList));
break;
default:
- throw new BusinessException(task.getSeqNum() + "浠诲姟绫诲瀷閿欒");
+ throw new BusinessException("seqNum:" + task.getSeqNum() + " is wrong锛� cause this type not exist");
}
}
--
Gitblit v1.9.1