From 03920f72fe2051349ba5c8872d243388765d3408 Mon Sep 17 00:00:00 2001 From: ZengTao <2773468879@qq.com> Date: 星期五, 05 一月 2024 15:03:52 +0800 Subject: [PATCH] 添加出片队列铝框暂停出片功能 --- springboot-vue3/src/main/java/com/example/springboot/service/OutSliceServive.java | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/springboot-vue3/src/main/java/com/example/springboot/service/OutSliceServive.java b/springboot-vue3/src/main/java/com/example/springboot/service/OutSliceServive.java index 256c2e9..a6d32b8 100644 --- a/springboot-vue3/src/main/java/com/example/springboot/service/OutSliceServive.java +++ b/springboot-vue3/src/main/java/com/example/springboot/service/OutSliceServive.java @@ -66,6 +66,16 @@ return Result.success(map); } + // 纭鍚庡畬鎴愪慨鏀瑰嚭鐗囬槦鍒楃姸鎬� + public void CompleteQueueByGlassId(String glassid) { + homeMapper.CompleteQueueByGlassId(glassid); + Out_slice outslice=homeMapper.SelectQueueByglassid(glassid); + Short num = homeMapper.SelectCountByFrameNo(outslice.getBarCode()); + if (num == 0) { + homeMapper.CompleteQueueByFrameNo(outslice.getBarCode()); + } + } + //缁堟杩涚墖/鍑虹墖 public void StopTask(String glassid, int i) { if (i == 0) {// 杩涚墖缁堟 @@ -88,4 +98,11 @@ homeMapper.DeleteByGlassID(glassid); } +public Result FrameStateUpdate(String frameno, String framestate) { + homeMapper.FrameStateUpdate(frameno, framestate); + Map<String, Object> map = new HashMap<>(); + map.put("message", "200"); + return Result.success(map); +} + } -- Gitblit v1.8.0