From b804d88d626d1df675a3278c859b37758c55432b Mon Sep 17 00:00:00 2001
From: ZengTao <2773468879@qq.com>
Date: 星期四, 18 十二月 2025 13:42:06 +0800
Subject: [PATCH] 1、增加流程卡进度查询,可根据工程号,流程卡号,玻璃id查看进度情况 2、钢化界面增加颜色对应注释,版图增加落架顺序 3、两个大理片界面笼子上色块显示修改为根据玻璃宽度显示 4、中空大理片右侧缺片情况显示优化 5、是否除膜从领取工程取消,在中空领取任务时选择除膜膜系(不除膜时不选择膜系),当配方中是需要除膜时并且选择的膜系与小片膜系一样时发送除膜信息 6、中空领取任务界面流程卡数量不等于已配对数量时高亮显示 7、磨边队列当后面玻璃磨边完成扫码但前面玻璃还未扫到码时高亮显示

---
 hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/job/PushMessageToIndex.java |   59 +++++++++++++++++++++++++++++++++++++----------------------
 1 files changed, 37 insertions(+), 22 deletions(-)

diff --git a/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/job/PushMessageToIndex.java b/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/job/PushMessageToIndex.java
index ae03e7a..7a0d3e5 100644
--- a/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/job/PushMessageToIndex.java
+++ b/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/job/PushMessageToIndex.java
@@ -1,18 +1,19 @@
 package com.mes.job;
 
-import cn.hutool.core.collection.CollectionUtil;
 import cn.hutool.json.JSONObject;
 import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
 import com.github.xingshuangs.iot.protocol.modbus.service.ModbusTcp;
 import com.github.xingshuangs.iot.protocol.s7.serializer.S7Serializer;
 import com.kangaroohy.milo.service.MiloService;
+import com.mes.alarm.entity.ProductAlarmInfo;
+import com.mes.alarm.service.ProductAlarmInfoService;
 import com.mes.bigstoragecagetask.entity.BigStorageCageTask;
 import com.mes.bigstoragecagetask.entity.BigStorageTaskVO;
 import com.mes.bigstoragecagetask.service.BigStorageCageTaskService;
 import com.mes.common.config.Const;
 import com.mes.hollow.entity.HollowBigStorageCageDetails;
-import com.mes.hollow.entity.HollowGlassOutRelationInfo;
 import com.mes.hollow.entity.dto.FlowCardGlassInfoDTO;
+import com.mes.hollow.entity.dto.LackDetailsDTO;
 import com.mes.hollow.entity.vo.HollowBigStorageDetailsQueryVO;
 import com.mes.hollow.service.HollowBigStorageCageDetailsService;
 import com.mes.hollow.service.HollowBigStorageCageService;
@@ -26,7 +27,6 @@
 import com.mes.s7.entity.S7DataZKDLPOne;
 import com.mes.s7.entity.S7DataZKDLPTwo;
 import com.mes.s7.entity.S7DataZKExtra;
-import com.mes.tools.WebSocketServer;
 import com.mes.tools.WebSocketUtils;
 import com.mes.utils.RedisUtil;
 import lombok.extern.slf4j.Slf4j;
@@ -42,7 +42,6 @@
 import java.util.ArrayList;
 import java.util.List;
 import java.util.Map;
-import java.util.stream.Collectors;
 
 /**
  * @Author : zhoush
@@ -70,6 +69,8 @@
 
     @Autowired(required = false)
     MiloService miloService;
+    @Resource
+    ProductAlarmInfoService productAlarmInfoService;
 
     @Autowired
     @Qualifier("s7SerializerZKDLPOne")
@@ -98,6 +99,10 @@
     @Resource
     RedisUtil redisUtil;
 
+    private static final String ALARM_MODULE = "涓┖";
+    private static final String ALARM_TYPE = "涓┖澶х悊鐗�";
+    private static final String ALARM_CODE = "sizeSame";
+
     @Scheduled(fixedDelay = 5000)
     public void hollowGlassTaskOne() {
         hollowGlassTaskChild(930, CMJ1ModbusTcp.readUInt16(42027 - offset) + "", "HollowGlassOne");
@@ -117,21 +122,22 @@
     }
 
     public void hollowGlassTaskChild(int cell, String isFreeTag, String websocketName) {
-        List<HollowGlassOutRelationInfo> taskList = hollowGlassOutRelationInfoService.list(new LambdaQueryWrapper<HollowGlassOutRelationInfo>()
-                .in(HollowGlassOutRelationInfo::getState, Const.HOLLOW_FLOW_CARD_START).eq(HollowGlassOutRelationInfo::getCell, cell));
-        JSONObject jsonObject = new JSONObject();
-        if (CollectionUtil.isNotEmpty(taskList)) {
-            List<Long> taskIdList = taskList.stream().map(HollowGlassOutRelationInfo::getId).collect(Collectors.toList());
-            List<HollowGlassQueueInfo> list = hollowGlassQueueInfoService.list(new LambdaQueryWrapper<HollowGlassQueueInfo>().in(HollowGlassQueueInfo::getRelationId, taskIdList));
-            jsonObject.append("queueInfo", list);
-        }
-
+//        List<HollowGlassOutRelationInfo> taskList = hollowGlassOutRelationInfoService.list(new LambdaQueryWrapper<HollowGlassOutRelationInfo>()
+//                .in(HollowGlassOutRelationInfo::getState, Const.HOLLOW_FLOW_CARD_START).eq(HollowGlassOutRelationInfo::getCell, cell));
+        JSONObject jsonObject = new JSONObject(true);
+//        if (CollectionUtil.isNotEmpty(taskList)) {
+//            List<Long> taskIdList = taskList.stream().map(HollowGlassOutRelationInfo::getId).collect(Collectors.toList());
+//            List<HollowGlassQueueInfo> list = hollowGlassQueueInfoService.list(new LambdaQueryWrapper<HollowGlassQueueInfo>().in(HollowGlassQueueInfo::getRelationId, taskIdList));
+//            jsonObject.append("queueInfo", list);
+//        }
+        Map<String, List<HollowGlassQueueInfo>> queueInfo = hollowGlassOutRelationInfoService.appointHollowTaskDetails(cell);
+        jsonObject.append("queueInfo", queueInfo);
         try {
             jsonObject.append("freeRequest", isFreeTag);
         } catch (Exception e) {
             log.error("opc瀛樺湪寮傚父", e);
         }
-        webSocketUtils.sendToWeb(websocketName,jsonObject);
+        webSocketUtils.sendToWeb(websocketName, jsonObject);
     }
 
     @Scheduled(fixedDelay = 1000)
@@ -140,7 +146,7 @@
         try {
             //鏌ヨ浣跨敤鏁版嵁婧�1鏌ヨ鏁版嵁
             queryDataSource1(jsonObject);
-            webSocketUtils.sendToWeb("hollowGlassMessage",jsonObject);
+            webSocketUtils.sendToWeb("hollowGlassMessage", jsonObject);
         } catch (Exception e) {
             e.printStackTrace();
         }
@@ -157,7 +163,7 @@
         jsonObject.append("carPostion", carPostion);
         //鐣岄潰灞曠ず绗煎瓙淇℃伅
         jsonObject.append("bigStorageCageInfos", hollowBigStorageCageDetailsService.queryHollowbigStorageCageDetail());
-
+        jsonObject.append("HollowAllFlowCard", hollowGlassRelationInfoService.queryHollowAllFlowCard(new HollowBigStorageDetailsQueryVO()));
 //        try {
 //            //杩涚墖浠诲姟鏁版嵁
 //            List<BigStorageTaskVO> inTaskList = new ArrayList();
@@ -224,17 +230,17 @@
 //            Boolean inkageEntity = s7DataZKDLPOne.getMesControl();
 //            jsonObject.append("inkageEntity", inkageEntity);
 //            //杩涚墖璇锋眰
-//            String requestEntity = s7DataZKDLPOne.getRequestMes().toString();
+//            Integer requestEntity = s7DataZKDLPOne.getRequestMes();
 //            jsonObject.append("requestEntity", requestEntity);
 //            //鍚姩鍛戒护
-//            String mesReplyEntity = s7DataZKDLPOne.getMesReply().toString();
+//            Integer mesReplyEntity = s7DataZKDLPOne.getMesReply();
 //            jsonObject.append("mesReplyEntity", mesReplyEntity);
 //            //鍑虹墖鑱旀満
-//            String outInkageEntity = s7DataZKDLPTwo.getMesControl().toString();
+//            Boolean outInkageEntity = s7DataZKDLPTwo.getMesControl();
 //            jsonObject.append("outInkageEntity", outInkageEntity);
 //            //鍑虹墖璇锋眰
-//            String outRequestEntity = s7DataZKDLPTwo.getRequestMes().toString();
-//            jsonObject.append("outInkageEntity", outInkageEntity);
+//            Integer outRequestEntity = s7DataZKDLPTwo.getRequestMes();
+//            jsonObject.append("outRequestEntity", outRequestEntity);
 //            //930绌洪棽淇″彿
 //            jsonObject.append("freeOneRequestEntity", CMJ1ModbusTcp.readUInt16(42027 - offset));
 //            //931绌洪棽淇″彿
@@ -328,6 +334,15 @@
         HollowBigStorageDetailsQueryVO hollowBigStorageDetailsQueryVO = new HollowBigStorageDetailsQueryVO();
         List<FlowCardGlassInfoDTO> bigStorageCageUsageSummary = hollowGlassRelationInfoService.queryHollowAllFlowCardSummary(hollowBigStorageDetailsQueryVO);
         jsonObject.append("bigStorageCageUsageSummary", bigStorageCageUsageSummary);
+
+        //缂虹墖璇︽儏
+        List<LackDetailsDTO> lackDetailsList = hollowGlassRelationInfoService.queryAllLackByFlowCard();
+        jsonObject.append("lackDetailsList", lackDetailsList);
+
+        jsonObject.append("alarmInfo", productAlarmInfoService.list(new LambdaQueryWrapper<ProductAlarmInfo>()
+                .eq(ProductAlarmInfo::getState, Const.LOAD_RAW_GLASS_NEW)
+                .eq(ProductAlarmInfo::getAlarmModule, ALARM_MODULE)
+                .eq(ProductAlarmInfo::getAlarmType, ALARM_TYPE)));
     }
 
     @Scheduled(fixedDelay = 1000)
@@ -341,6 +356,6 @@
         jsonObject.append("pieChartVOS", pieChartVOS);
         List<RunTime> hollowRunTimes = hollowBigStorageCageHistoryTaskService.queryRunTimes(LocalDate.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd")));
         jsonObject.append("hollowRunTimes", hollowRunTimes);
-        webSocketUtils.sendToWeb("largenScreen",jsonObject);
+        webSocketUtils.sendToWeb("largenScreen", jsonObject);
     }
 }

--
Gitblit v1.8.0