#
luxiaotao1123
2024-10-23 7a68bbe9a032df8c54b2263be097002e01383bce
zy-acs-manager/src/main/java/com/zy/acs/manager/core/service/MainService.java
@@ -207,7 +207,7 @@
                bus.setBusSts(BusStsType.PROGRESS.val());
                bus.setUpdateTime(now);
                if (!busService.updateById(bus)) {
                    log.error("Bus [{}] 更新失败 !!!", bus.getUuid());
                    log.error("Bus [{}] failed to Update !!!", bus.getUuid());
                }
                return;
            }
@@ -217,7 +217,7 @@
            for (Task task : taskList) {
                Agv agv = missionAssignService.execute(task, taskAllot, taskIds);
                if (null == agv) {
                    log.warn("{}任务异常,无法检索空闲Agv...", task.getSeqNum());
                    log.warn("Task[{}] has an issue, because it failed to checkout agv which is idle...", task.getSeqNum());
                    continue;
                }
@@ -227,7 +227,7 @@
                task.setIoTime(now);
                task.setUpdateTime(now);
                if (!taskService.updateById(task)) {
                    throw new BusinessException(task.getSeqNum() + "任务更新失败");
                    throw new BusinessException("seqNum: " + task.getSeqNum() + " failed to update");
                }
                if (taskAllot.containsKey(agv.getUuid())) {