From aa2d520a06c371e76ef26c78d426a01fca76a2fc Mon Sep 17 00:00:00 2001 From: zhangc <zc@123> Date: 星期五, 07 二月 2025 14:56:35 +0800 Subject: [PATCH] 1 --- src/main/java/com/zy/asrs/task/AutoMoveCreateExecuteScheduler.java | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/zy/asrs/task/AutoMoveCreateExecuteScheduler.java b/src/main/java/com/zy/asrs/task/AutoMoveCreateExecuteScheduler.java index 9d8cd54..682cf0c 100644 --- a/src/main/java/com/zy/asrs/task/AutoMoveCreateExecuteScheduler.java +++ b/src/main/java/com/zy/asrs/task/AutoMoveCreateExecuteScheduler.java @@ -42,9 +42,9 @@ /** * 鐢熸垚agv_wrk_mast_execute浠诲姟 */ - @Scheduled(cron = "0/2 * * * * ? ") +// @Scheduled(cron = "0/2 * * * * ? ") private void autoMove(){ - List<AgvWrkMast> agvWrkMastList = agvWrkMastService.selectList(new EntityWrapper<AgvWrkMast>().eq("io_type", 121).eq("wrk_sts",11)); + List<AgvWrkMast> agvWrkMastList = agvWrkMastService.selectList(new EntityWrapper<AgvWrkMast>().eq("io_type", 121).eq("wrk_sts",11).orderBy("io_pri",false)); for (AgvWrkMast agvWrkMast:agvWrkMastList){ try{ Date now = new Date(); @@ -109,14 +109,15 @@ /** * 瀹屾垚agv_wrk_mast_execute浠诲姟 */ - @Scheduled(cron = "0/2 * * * * ? ") +// @Scheduled(cron = "0/2 * * * * ? ") private void autoMoveEnd(){ - List<AgvWrkMast> agvWrkMastList = agvWrkMastService.selectList(new EntityWrapper<AgvWrkMast>().eq("io_type", 121).eq("wrk_sts",12)); + List<AgvWrkMast> agvWrkMastList = agvWrkMastService.selectList(new EntityWrapper<AgvWrkMast>().eq("io_type", 121).eq("wrk_sts",12).orderBy("io_pri",false)); for (AgvWrkMast agvWrkMast:agvWrkMastList){ try{ WrkMastExecute wrkMastExecute = wrkMastExecuteService.selectOne(new EntityWrapper<WrkMastExecute>().eq("io_type", 121).eq("wrk_no", agvWrkMast.getWrkNo().longValue())); if (!Cools.isEmpty(wrkMastExecute) && wrkMastExecute.getWrkSts()==3L && wrkMastExecute.getNowPosition()==3){ agvWrkMast.setWrkSts(205L);//浠诲姟瀹屾垚 + agvWrkMast.setModiTime(new Date()); agvWrkMastService.updateById(agvWrkMast); //鐢熸垚agv_wrk_mast_execute浠诲姟鍘嗗彶妗� wrkMastExecuteLogService.save(wrkMastExecute); -- Gitblit v1.9.1