From 67524c6348ee4a9d879b050862c6b9429ff9a97e Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@gmail.com> Date: 星期三, 02 四月 2025 16:10:29 +0800 Subject: [PATCH] # --- zy-acs-manager/src/main/java/com/zy/acs/manager/core/HandlerController.java | 194 ++++++++++++++++++++++++++++++++++++++++++------ 1 files changed, 169 insertions(+), 25 deletions(-) diff --git a/zy-acs-manager/src/main/java/com/zy/acs/manager/core/HandlerController.java b/zy-acs-manager/src/main/java/com/zy/acs/manager/core/HandlerController.java index ccf9def..ac1a177 100644 --- a/zy-acs-manager/src/main/java/com/zy/acs/manager/core/HandlerController.java +++ b/zy-acs-manager/src/main/java/com/zy/acs/manager/core/HandlerController.java @@ -11,10 +11,7 @@ import com.zy.acs.manager.core.service.*; import com.zy.acs.manager.core.service.astart.MapDataDispatcher; import com.zy.acs.manager.manager.entity.*; -import com.zy.acs.manager.manager.enums.ActionStsType; -import com.zy.acs.manager.manager.enums.LocStsType; -import com.zy.acs.manager.manager.enums.TaskStsType; -import com.zy.acs.manager.manager.enums.TaskTypeType; +import com.zy.acs.manager.manager.enums.*; import com.zy.acs.manager.manager.service.*; import com.zy.acs.manager.system.controller.BaseController; import lombok.extern.slf4j.Slf4j; @@ -56,6 +53,8 @@ private JdbcTemplate jdbcTemplate; @Autowired private LocService locService; + @Autowired + private StaService staService; @Autowired private TrafficService trafficService; @Autowired @@ -100,6 +99,11 @@ } // generate + Loc oriLoc = null; + Loc destLoc = null; + Sta oriSta = null; + Sta destSta = null; + Task task = null; switch (param.getTaskMode()) { case MOVE: Code endCode = null; @@ -124,7 +128,6 @@ break; case LOC_TO_LOC: // oriLoc - Loc oriLoc = null; if (!Cools.isEmpty(param.getStartLocNo())) { oriLoc = locService.getById(param.getStartLocNo()); } @@ -137,8 +140,13 @@ if (!oriLoc.getLocSts().equals(LocStsType.STOCK.val())) { throw new BusinessException("oriLoc锛�" + oriLoc.getLocNo() + " 涓嶆槸鍦ㄥ簱鐘舵��"); } + oriLoc.setLocSts(LocStsType.PAKOUT.val()); + oriLoc.setUpdateTime(now); + if (!locService.updateById(oriLoc)) { + throw new BusinessException("oriLoc锛�" + oriLoc.getLocNo() + " 淇敼搴撲綅鐘舵�佸け璐�"); + } + // destLoc - Loc destLoc = null; if (!Cools.isEmpty(param.getEndLocNo())) { destLoc = locService.getById(param.getEndLocNo()); } @@ -151,46 +159,182 @@ if (!destLoc.getLocSts().equals(LocStsType.IDLE.val())) { throw new BusinessException("destLoc锛�" + destLoc.getLocNo() + " 涓嶆槸绌洪棽鐘舵��"); } - + destLoc.setLocSts(LocStsType.PAKIN.val()); + destLoc.setUpdateTime(now); + if (!locService.updateById(destLoc)) { + throw new BusinessException("destLoc锛�" + destLoc.getLocNo() + " 淇敼搴撲綅鐘舵�佸け璐�"); + } // task - Task task = new Task(); - task.setAgvId(agv.getId()); - task.setUuid(String.valueOf(snowflakeIdWorker.nextId()).substring(3)); - List<Task> lastTasks = taskService.list(new LambdaQueryWrapper<Task>().orderByDesc(Task::getId)); - task.setSeqNum(Utils.generateSeqNum(Cools.isEmpty(lastTasks)?null:lastTasks.get(0).getSeqNum())); + task = new Task(); task.setOriLoc(oriLoc.getId()); task.setOriCode(oriLoc.getCode()); task.setDestLoc(destLoc.getId()); task.setDestCode(destLoc.getCode()); - - task.setTaskType(param.getTaskMode().val()); - task.setTaskSts(TaskStsType.WAITING.val()); - - task.setPriority(999); - task.setIoTime(now); - task.setStartTime(now); - if (!taskService.save(task)) { - throw new BusinessException(task.getSeqNum() + "浠诲姟淇濆瓨澶辫触"); + break; + case LOC_TO_STA: + // oriLoc + if (!Cools.isEmpty(param.getStartLocNo())) { + oriLoc = locService.getById(param.getStartLocNo()); } - - // loc + if (!Cools.isEmpty(param.getStartLocNoStr())) { + oriLoc = locService.selecatByLocNo(param.getStartLocNoStr()); + } + if (null == oriLoc) { + return R.error(); + } + if (!oriLoc.getLocSts().equals(LocStsType.STOCK.val())) { + throw new BusinessException("oriLoc锛�" + oriLoc.getLocNo() + " 涓嶆槸鍦ㄥ簱鐘舵��"); + } oriLoc.setLocSts(LocStsType.PAKOUT.val()); oriLoc.setUpdateTime(now); if (!locService.updateById(oriLoc)) { - throw new BusinessException("oriLoc锛�" + task.getOriLoc$() + " 淇敼搴撲綅鐘舵�佸け璐�"); + throw new BusinessException("oriLoc锛�" + oriLoc.getLocNo() + " 淇敼搴撲綅鐘舵�佸け璐�"); + } + + // destSta + if (!Cools.isEmpty(param.getEndStaNo())) { + destSta = staService.getById(param.getEndStaNo()); + } + if (!Cools.isEmpty(param.getEndStaNoStr())) { + destSta = staService.selectByStaNo(param.getEndStaNoStr()); + } + if (null == destSta) { + return R.error(); + } + if (!destSta.getStaSts().equals(StaStsType.IDLE.val())) { + throw new BusinessException("destSta锛�" + destSta.getStaNo() + " 涓嶆槸鏃犺揣鐘舵��"); + } + destSta.setStaSts(StaStsType.READY_RELEASE.val()); + destSta.setUpdateTime(now); + if (!staService.updateById(destSta)) { + throw new BusinessException("destSta锛�" + destSta.getStaNo() + " 淇敼绔欑偣鐘舵�佸け璐�"); + } + + // task + task = new Task(); + + task.setOriLoc(oriLoc.getId()); + task.setOriCode(oriLoc.getCode()); + task.setDestSta(destSta.getId()); + task.setDestCode(destSta.getCode()); + break; + case STA_TO_LOC: + // oriSta + if (!Cools.isEmpty(param.getStartStaNo())) { + oriSta = staService.getById(param.getStartStaNo()); + } + if (!Cools.isEmpty(param.getStartStaNoStr())) { + oriSta = staService.selectByStaNo(param.getStartStaNoStr()); + } + if (null == oriSta) { + return R.error(); + } + if (!oriSta.getStaSts().equals(StaStsType.STOCK.val())) { + throw new BusinessException("oriSta锛�" + oriSta.getStaNo() + " 涓嶆槸鏈夎揣鐘舵��"); + } + oriSta.setStaSts(StaStsType.READY_TAKE.val()); + oriSta.setUpdateTime(now); + if (!staService.updateById(oriSta)) { + throw new BusinessException("oriSta锛�" + oriSta.getStaNo() + " 淇敼绔欑偣鐘舵�佸け璐�"); + } + + // destLoc + if (!Cools.isEmpty(param.getEndLocNo())) { + destLoc = locService.getById(param.getEndLocNo()); + } + if (!Cools.isEmpty(param.getEndLocNoStr())) { + destLoc = locService.selecatByLocNo(param.getEndLocNoStr()); + } + if (null == destLoc) { + return R.error(); + } + if (!destLoc.getLocSts().equals(LocStsType.IDLE.val())) { + throw new BusinessException("destLoc锛�" + destLoc.getLocNo() + " 涓嶆槸绌洪棽鐘舵��"); } destLoc.setLocSts(LocStsType.PAKIN.val()); destLoc.setUpdateTime(now); if (!locService.updateById(destLoc)) { - throw new BusinessException("destLoc锛�" + task.getDestLoc$() + " 淇敼搴撲綅鐘舵�佸け璐�"); + throw new BusinessException("destLoc锛�" + destLoc.getLocNo() + " 淇敼搴撲綅鐘舵�佸け璐�"); } + + // task + task = new Task(); + + task.setOriSta(oriSta.getId()); + task.setOriCode(oriSta.getCode()); + task.setDestLoc(destLoc.getId()); + task.setDestCode(destLoc.getCode()); + break; + case STA_TO_STA: + // oriSta + if (!Cools.isEmpty(param.getStartStaNo())) { + oriSta = staService.getById(param.getStartStaNo()); + } + if (!Cools.isEmpty(param.getStartStaNoStr())) { + oriSta = staService.selectByStaNo(param.getStartStaNoStr()); + } + if (null == oriSta) { + return R.error(); + } + if (!oriSta.getStaSts().equals(StaStsType.STOCK.val())) { + throw new BusinessException("oriSta锛�" + oriSta.getStaNo() + " 涓嶆槸鏈夎揣鐘舵��"); + } + oriSta.setStaSts(StaStsType.READY_TAKE.val()); + oriSta.setUpdateTime(now); + if (!staService.updateById(oriSta)) { + throw new BusinessException("oriSta锛�" + oriSta.getStaNo() + " 淇敼绔欑偣鐘舵�佸け璐�"); + } + + // destSta + if (!Cools.isEmpty(param.getEndStaNo())) { + destSta = staService.getById(param.getEndStaNo()); + } + if (!Cools.isEmpty(param.getEndStaNoStr())) { + destSta = staService.selectByStaNo(param.getEndStaNoStr()); + } + if (null == destSta) { + return R.error(); + } + if (!destSta.getStaSts().equals(StaStsType.IDLE.val())) { + throw new BusinessException("destSta锛�" + destSta.getStaNo() + " 涓嶆槸鏃犺揣鐘舵��"); + } + destSta.setStaSts(StaStsType.READY_RELEASE.val()); + destSta.setUpdateTime(now); + if (!staService.updateById(destSta)) { + throw new BusinessException("destSta锛�" + destSta.getStaNo() + " 淇敼绔欑偣鐘舵�佸け璐�"); + } + + // task + task = new Task(); + + task.setOriSta(oriSta.getId()); + task.setOriCode(oriSta.getCode()); + task.setDestSta(destSta.getId()); + task.setDestCode(destSta.getCode()); break; default: break; } + if (null != task) { + task.setAgvId(agv.getId()); + task.setUuid(String.valueOf(snowflakeIdWorker.nextId()).substring(3)); + List<Task> lastTasks = taskService.list(new LambdaQueryWrapper<Task>().orderByDesc(Task::getId)); + task.setSeqNum(Utils.generateSeqNum(Cools.isEmpty(lastTasks)?null:lastTasks.get(0).getSeqNum())); + + task.setTaskType(param.getTaskMode().val()); + task.setTaskSts(TaskStsType.WAITING.val()); + + task.setPriority(999); + task.setIoTime(now); + task.setStartTime(now); + if (!taskService.save(task)) { + throw new BusinessException(task.getSeqNum() + "浠诲姟淇濆瓨澶辫触"); + } + } + return R.ok(); } -- Gitblit v1.9.1