|
|
@ -219,7 +219,26 @@ public class DcEmergencyPlansServiceImpl implements DcEmergencyPlansService { |
|
|
|
*/ |
|
|
|
public void customPublishingDataFormatProcessing(List<DcDevice> deviceList, JSONObject otherConfig, int deviceType) { |
|
|
|
List<Map<String,Object>> contentList = new ArrayList<>(); |
|
|
|
if (!ObjectUtils.isEmpty(otherConfig.get("contentList"))) { |
|
|
|
contentList.addAll((List<Map<String,Object>>) 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<Map<String,Object>> contentList) { |
|
|
|
Map<String,Object> map = new HashMap<>(); |
|
|
|
map.put("dcDeviceId",dcDevice.getId()); |
|
|
|
map.put("deviceName",dcDevice.getDeviceName()); |
|
|
@ -231,8 +250,6 @@ public class DcEmergencyPlansServiceImpl implements DcEmergencyPlansService { |
|
|
|
map.put("content",otherConfig.get("content")); |
|
|
|
} |
|
|
|
contentList.add(map); |
|
|
|
}); |
|
|
|
otherConfig.put("contentList",contentList); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|