diff --git a/zc-business/src/main/java/com/zc/business/service/impl/DcEmergencyPlansServiceImpl.java b/zc-business/src/main/java/com/zc/business/service/impl/DcEmergencyPlansServiceImpl.java index c6d7ec98..62bd33e3 100644 --- a/zc-business/src/main/java/com/zc/business/service/impl/DcEmergencyPlansServiceImpl.java +++ b/zc-business/src/main/java/com/zc/business/service/impl/DcEmergencyPlansServiceImpl.java @@ -219,22 +219,39 @@ public class DcEmergencyPlansServiceImpl implements DcEmergencyPlansService { */ public void customPublishingDataFormatProcessing(List deviceList, JSONObject otherConfig, int deviceType) { List> contentList = new ArrayList<>(); - deviceList.forEach(dcDevice -> { - Map map = new HashMap<>(); - map.put("dcDeviceId",dcDevice.getId()); - map.put("deviceName",dcDevice.getDeviceName()); - if (deviceType == DeviceTypeEnum.VARIABLE_INFORMATION_FLAG.getCode()) { - JSONObject dcInfoBoardTemplate = JSON.parseObject(otherConfig.get("dcInfoBoardTemplate").toString()); - dcInfoBoardTemplate.keySet().forEach(key -> map.put(key, dcInfoBoardTemplate.get(key))); - }else { - // 语音广播 - map.put("content",otherConfig.get("content")); - } - contentList.add(map); - }); + if (!ObjectUtils.isEmpty(otherConfig.get("contentList"))) { + contentList.addAll((List>) otherConfig.get("contentList")); + contentList.removeIf(cont -> deviceList.stream().noneMatch(device -> device.getId().toString().equals(cont.get("dcDeviceId").toString()))); + deviceList.forEach(dcDevice -> { + boolean filter = contentList.stream().anyMatch(content -> + content.get("dcDeviceId").toString().equals(dcDevice.getId().toString())); + if (!filter) { + handleContentList(dcDevice,deviceType,otherConfig,contentList); + } + }); + }else { + deviceList.forEach(dcDevice -> { + handleContentList(dcDevice,deviceType,otherConfig,contentList); + }); + } + otherConfig.put("contentList",contentList); } + public void handleContentList(DcDevice dcDevice, int deviceType, JSONObject otherConfig, List> contentList) { + Map map = new HashMap<>(); + map.put("dcDeviceId",dcDevice.getId()); + map.put("deviceName",dcDevice.getDeviceName()); + if (deviceType == DeviceTypeEnum.VARIABLE_INFORMATION_FLAG.getCode()) { + JSONObject dcInfoBoardTemplate = JSON.parseObject(otherConfig.get("dcInfoBoardTemplate").toString()); + dcInfoBoardTemplate.keySet().forEach(key -> map.put(key, dcInfoBoardTemplate.get(key))); + }else { + // 语音广播 + map.put("content",otherConfig.get("content")); + } + contentList.add(map); + } + /** * 交通事件-根据事件、单个执行操作筛选设备 * @param dcEventAnDcEmergencyPlans