|
@@ -749,49 +749,56 @@ public class AdmReportEquipController {
|
|
|
return AdmResponse.failure(ResponseCode.A0400.getCode());
|
|
|
}
|
|
|
Integer controlInfoCounts = controlInfoCounts(AdmEquipment.OBJ_TYPE);
|
|
|
+ AdmGatherInfoPoint gatherInfoPoint = new AdmGatherInfoPoint();
|
|
|
+ gatherInfoPoint.setGatherInfoPointCounts(controlInfoCounts);
|
|
|
// 根据objType获取定义 获取采集的设备的classcode
|
|
|
Set<String> objTypes = new HashSet<>(1);
|
|
|
objTypes.add(AdmEquipment.OBJ_TYPE);
|
|
|
List<Map<String, Object>> codes = DigitalObjectSimpleFacade.queryDefineInfoByObjType(AdmContextUtil.toDmpContext().getGroupCode(), AdmContextUtil.toDmpContext().getProjectId(), AdmCommonConstant.APP_ID,null, RequestData.builder().objTypes(objTypes).build());
|
|
|
- Set<String> classCodeSet = new HashSet<String>(codes.size());
|
|
|
- codes.stream().forEach(stringObjectMap -> classCodeSet.add(stringObjectMap.get("code").toString()));
|
|
|
-
|
|
|
- //项目下所有已采集的动态信息点编码
|
|
|
- List<ObjectInfoDefine> dynamicInfoPointCodes = gatherDynamicInfoCode(false, classCodeSet);
|
|
|
- //项目下所有已采集静态信息点编码
|
|
|
- List<ObjectInfoDefine> staticInfoPointCodes = gatherStaticInfoCode(false, classCodeSet);
|
|
|
- //项目下所有的设备 分页查询
|
|
|
- AdmQueryCriteria admQueryCriteriaObj = new AdmQueryCriteria();
|
|
|
- admQueryCriteriaObj.setPageNumber(1);
|
|
|
- admQueryCriteriaObj.setPageSize(500);
|
|
|
- admQueryCriteriaObj.setName(AdmEquipment.OBJ_TYPE);
|
|
|
-
|
|
|
- admQueryCriteriaObj.setProjection(Arrays.asList("id","name","localId","localName","cadId","bimId","bimLocation","infos","classCode","equipSerial","bimFamilyName","bimFamilySymbol"));
|
|
|
- AdmResponse admResponse = equipmentService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmEquipment.class);
|
|
|
-
|
|
|
- Map<String,Integer> hashMap = new HashMap<>();
|
|
|
- List<AdmEquipment> admEquipmentList = (List<AdmEquipment>) admResponse.getContent();
|
|
|
- List<ObjectNode> projectEquipment = JsonNodeUtils.toListNode(admEquipmentList,null,null);
|
|
|
- calculate(dynamicInfoPointCodes, staticInfoPointCodes, projectEquipment,0, hashMap);
|
|
|
-
|
|
|
- long page = admResponse.getTotal() / admResponse.getPageSize() + 1;
|
|
|
- if(page >= 2){
|
|
|
- for(long i = 2; i <= page; i++){
|
|
|
- admQueryCriteriaObj.setPageNumber(Integer.parseInt(String.valueOf(i)));
|
|
|
- admResponse = equipmentService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmEquipment.class);
|
|
|
- admEquipmentList = (List<AdmEquipment>) admResponse.getContent();
|
|
|
- projectEquipment = JsonNodeUtils.toListNode(admEquipmentList,null,null);
|
|
|
- calculate(dynamicInfoPointCodes, staticInfoPointCodes, projectEquipment,0, hashMap);
|
|
|
+ if(CollUtil.isNotEmpty(codes)) {
|
|
|
+ Set<String> classCodeSet = new HashSet<String>(codes.size());
|
|
|
+ codes.stream().forEach(stringObjectMap -> classCodeSet.add(stringObjectMap.get("code").toString()));
|
|
|
+
|
|
|
+ //项目下所有已采集的动态信息点编码
|
|
|
+ List<ObjectInfoDefine> dynamicInfoPointCodes = gatherDynamicInfoCode(false, classCodeSet);
|
|
|
+ //项目下所有已采集静态信息点编码
|
|
|
+ List<ObjectInfoDefine> staticInfoPointCodes = gatherStaticInfoCode(false, classCodeSet);
|
|
|
+ //项目下所有的设备 分页查询
|
|
|
+ AdmQueryCriteria admQueryCriteriaObj = new AdmQueryCriteria();
|
|
|
+ admQueryCriteriaObj.setPageNumber(1);
|
|
|
+ admQueryCriteriaObj.setPageSize(500);
|
|
|
+ admQueryCriteriaObj.setName(AdmEquipment.OBJ_TYPE);
|
|
|
+
|
|
|
+ admQueryCriteriaObj.setProjection(Arrays.asList("id", "name", "localId", "localName", "cadId", "bimId", "bimLocation", "infos", "classCode", "equipSerial", "bimFamilyName", "bimFamilySymbol"));
|
|
|
+ AdmResponse admResponse = equipmentService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmEquipment.class);
|
|
|
+
|
|
|
+ Map<String, Integer> hashMap = new HashMap<>();
|
|
|
+ List<AdmEquipment> admEquipmentList = (List<AdmEquipment>) admResponse.getContent();
|
|
|
+ List<ObjectNode> projectEquipment = JsonNodeUtils.toListNode(admEquipmentList, null, null);
|
|
|
+ calculate(dynamicInfoPointCodes, staticInfoPointCodes, projectEquipment, 0, hashMap);
|
|
|
+
|
|
|
+ long page = admResponse.getTotal() / admResponse.getPageSize() + 1;
|
|
|
+ if (page >= 2) {
|
|
|
+ for (long i = 2; i <= page; i++) {
|
|
|
+ admQueryCriteriaObj.setPageNumber(Integer.parseInt(String.valueOf(i)));
|
|
|
+ admResponse = equipmentService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmEquipment.class);
|
|
|
+ admEquipmentList = (List<AdmEquipment>) admResponse.getContent();
|
|
|
+ projectEquipment = JsonNodeUtils.toListNode(admEquipmentList, null, null);
|
|
|
+ calculate(dynamicInfoPointCodes, staticInfoPointCodes, projectEquipment, 0, hashMap);
|
|
|
+ }
|
|
|
}
|
|
|
+ gatherInfoPoint.setDynamicInfoPointCounts(dynamicInfoPointCodes.size());
|
|
|
+ gatherInfoPoint.setStaticInfoPointCounts(staticInfoPointCodes.size());
|
|
|
+ gatherInfoPoint.setGatherCustomInfoPointCounts(hashMap.get("customInfoPoint"));
|
|
|
+ gatherInfoPoint.setGatherDynamicInfoPointCounts(hashMap.get("dynamicInfoPoint"));
|
|
|
+ gatherInfoPoint.setGatherStaticInfoPointCounts(hashMap.get("staticInfoPoint"));
|
|
|
+ }else{
|
|
|
+ gatherInfoPoint.setDynamicInfoPointCounts(0);
|
|
|
+ gatherInfoPoint.setStaticInfoPointCounts(0);
|
|
|
+ gatherInfoPoint.setGatherCustomInfoPointCounts(0);
|
|
|
+ gatherInfoPoint.setGatherDynamicInfoPointCounts(0);
|
|
|
+ gatherInfoPoint.setGatherStaticInfoPointCounts(0);
|
|
|
}
|
|
|
- AdmGatherInfoPoint gatherInfoPoint = new AdmGatherInfoPoint();
|
|
|
- gatherInfoPoint.setGatherInfoPointCounts(controlInfoCounts);
|
|
|
- gatherInfoPoint.setDynamicInfoPointCounts(dynamicInfoPointCodes.size());
|
|
|
- gatherInfoPoint.setStaticInfoPointCounts(staticInfoPointCodes.size());
|
|
|
- gatherInfoPoint.setGatherInfoPointCounts(controlInfoCounts);
|
|
|
- gatherInfoPoint.setGatherCustomInfoPointCounts(hashMap.get("customInfoPoint"));
|
|
|
- gatherInfoPoint.setGatherDynamicInfoPointCounts(hashMap.get("dynamicInfoPoint"));
|
|
|
- gatherInfoPoint.setGatherStaticInfoPointCounts(hashMap.get("staticInfoPoint"));
|
|
|
return AdmResponse.success(CollUtil.newArrayList(gatherInfoPoint));
|
|
|
}
|
|
|
|
|
@@ -804,48 +811,55 @@ public class AdmReportEquipController {
|
|
|
if(StrUtil.isEmpty(AdmContextUtil.toDmpContext().getProjectId())){
|
|
|
return AdmResponse.failure(ResponseCode.A0400.getCode());
|
|
|
}
|
|
|
+ AdmGatherInfoPoint gatherInfoPoint = new AdmGatherInfoPoint();
|
|
|
+
|
|
|
Integer controlInfoCounts = controlInfoCounts(AdmEquipment.OBJ_TYPE);
|
|
|
// 根据objType获取定义 获取采集的设备的classcode
|
|
|
Set<String> objTypes = new HashSet<>(1);
|
|
|
objTypes.add(AdmEquipment.OBJ_TYPE);
|
|
|
List<Map<String, Object>> codes = DigitalObjectSimpleFacade.queryDefineInfoByObjType(AdmContextUtil.toDmpContext().getGroupCode(), AdmContextUtil.toDmpContext().getProjectId(), AdmCommonConstant.APP_ID,null, RequestData.builder().objTypes(objTypes).build());
|
|
|
- Set<String> classCodeSet = new HashSet<String>(codes.size());
|
|
|
- codes.stream().forEach(stringObjectMap -> classCodeSet.add(stringObjectMap.get("code").toString()));
|
|
|
-
|
|
|
- //项目下所有已采集的动态信息点编码
|
|
|
- List<ObjectInfoDefine> gatherDynamicInfoCode = gatherDynamicInfoCode(true, classCodeSet);
|
|
|
- //项目下所有已采集静态信息点编码
|
|
|
- List<ObjectInfoDefine> gatherStaticInfoCode = gatherStaticInfoCode(true, classCodeSet);
|
|
|
-
|
|
|
- //项目下所有的设备 分页查询
|
|
|
- AdmQueryCriteria admQueryCriteriaObj = new AdmQueryCriteria();
|
|
|
- admQueryCriteriaObj.setPageNumber(1);
|
|
|
- admQueryCriteriaObj.setPageSize(500);
|
|
|
- admQueryCriteriaObj.setName(AdmEquipment.OBJ_TYPE);
|
|
|
-
|
|
|
- admQueryCriteriaObj.setProjection(Arrays.asList("id","name","localId","localName","cadId","bimId","bimLocation","infos","classCode","equipSerial","bimFamilyName","bimFamilySymbol"));
|
|
|
- AdmResponse admResponse = equipmentService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmEquipment.class);
|
|
|
-
|
|
|
- Map<String,Integer> hashMap = new HashMap<>();
|
|
|
- List<AdmEquipment> admEquipmentList = (List<AdmEquipment>) admResponse.getContent();
|
|
|
- List<ObjectNode> projectEquipment = JsonNodeUtils.toListNode(admEquipmentList,null,null);
|
|
|
- calculate(gatherDynamicInfoCode, gatherStaticInfoCode, projectEquipment,0, hashMap);
|
|
|
-
|
|
|
- long page = admResponse.getTotal() / admResponse.getPageSize() + 1;
|
|
|
- if(page >= 2){
|
|
|
- for(long i = 2; i <= page; i++){
|
|
|
- admQueryCriteriaObj.setPageNumber(Integer.parseInt(String.valueOf(i)));
|
|
|
- admResponse = equipmentService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmEquipment.class);
|
|
|
- admEquipmentList = (List<AdmEquipment>) admResponse.getContent();
|
|
|
- projectEquipment = JsonNodeUtils.toListNode(admEquipmentList,null,null);
|
|
|
- calculate(gatherDynamicInfoCode, gatherStaticInfoCode, projectEquipment,0, hashMap);
|
|
|
+ if(CollUtil.isNotEmpty(codes)){
|
|
|
+ Set<String> classCodeSet = new HashSet<String>(codes.size());
|
|
|
+ codes.stream().forEach(stringObjectMap -> classCodeSet.add(stringObjectMap.get("code").toString()));
|
|
|
+
|
|
|
+ //项目下所有已采集的动态信息点编码
|
|
|
+ List<ObjectInfoDefine> gatherDynamicInfoCode = gatherDynamicInfoCode(true, classCodeSet);
|
|
|
+ //项目下所有已采集静态信息点编码
|
|
|
+ List<ObjectInfoDefine> gatherStaticInfoCode = gatherStaticInfoCode(true, classCodeSet);
|
|
|
+
|
|
|
+ //项目下所有的设备 分页查询
|
|
|
+ AdmQueryCriteria admQueryCriteriaObj = new AdmQueryCriteria();
|
|
|
+ admQueryCriteriaObj.setPageNumber(1);
|
|
|
+ admQueryCriteriaObj.setPageSize(500);
|
|
|
+ admQueryCriteriaObj.setName(AdmEquipment.OBJ_TYPE);
|
|
|
+
|
|
|
+ admQueryCriteriaObj.setProjection(Arrays.asList("id","name","localId","localName","cadId","bimId","bimLocation","infos","classCode","equipSerial","bimFamilyName","bimFamilySymbol"));
|
|
|
+ AdmResponse admResponse = equipmentService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmEquipment.class);
|
|
|
+
|
|
|
+ Map<String,Integer> hashMap = new HashMap<>();
|
|
|
+ List<AdmEquipment> admEquipmentList = (List<AdmEquipment>) admResponse.getContent();
|
|
|
+ List<ObjectNode> projectEquipment = JsonNodeUtils.toListNode(admEquipmentList,null,null);
|
|
|
+ calculate(gatherDynamicInfoCode, gatherStaticInfoCode, projectEquipment,0, hashMap);
|
|
|
+
|
|
|
+ long page = admResponse.getTotal() / admResponse.getPageSize() + 1;
|
|
|
+ if(page >= 2){
|
|
|
+ for(long i = 2; i <= page; i++){
|
|
|
+ admQueryCriteriaObj.setPageNumber(Integer.parseInt(String.valueOf(i)));
|
|
|
+ admResponse = equipmentService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmEquipment.class);
|
|
|
+ admEquipmentList = (List<AdmEquipment>) admResponse.getContent();
|
|
|
+ projectEquipment = JsonNodeUtils.toListNode(admEquipmentList,null,null);
|
|
|
+ calculate(gatherDynamicInfoCode, gatherStaticInfoCode, projectEquipment,0, hashMap);
|
|
|
+ }
|
|
|
}
|
|
|
+ gatherInfoPoint.setGatherInfoPointCounts(controlInfoCounts);
|
|
|
+ gatherInfoPoint.setGatherCustomInfoPointCounts(hashMap.get("customInfoPoint"));
|
|
|
+ gatherInfoPoint.setGatherDynamicInfoPointCounts(hashMap.get("dynamicInfoPoint"));
|
|
|
+ }else{
|
|
|
+ gatherInfoPoint.setGatherInfoPointCounts(controlInfoCounts);
|
|
|
+ gatherInfoPoint.setGatherCustomInfoPointCounts(0);
|
|
|
+ gatherInfoPoint.setGatherDynamicInfoPointCounts(0);
|
|
|
+ gatherInfoPoint.setGatherStaticInfoPointCounts(0);
|
|
|
}
|
|
|
- AdmGatherInfoPoint gatherInfoPoint = new AdmGatherInfoPoint();
|
|
|
- gatherInfoPoint.setGatherInfoPointCounts(controlInfoCounts);
|
|
|
- gatherInfoPoint.setGatherCustomInfoPointCounts(hashMap.get("customInfoPoint"));
|
|
|
- gatherInfoPoint.setGatherDynamicInfoPointCounts(hashMap.get("dynamicInfoPoint"));
|
|
|
- gatherInfoPoint.setGatherStaticInfoPointCounts(hashMap.get("staticInfoPoint"));
|
|
|
return AdmResponse.success(CollUtil.newArrayList(gatherInfoPoint));
|
|
|
}
|
|
|
|
|
@@ -855,48 +869,55 @@ public class AdmReportEquipController {
|
|
|
*/
|
|
|
@PostMapping("/system-info-point")
|
|
|
public AdmResponse systemInfoPoin() {
|
|
|
+ AdmGatherInfoPoint gatherInfoPoint = new AdmGatherInfoPoint();
|
|
|
Integer controlInfoCounts = controlInfoCounts(AdmEquipment.OBJ_TYPE);
|
|
|
// 根据objType获取定义 获取采集的设备的classcode
|
|
|
Set<String> objTypes = new HashSet<>(1);
|
|
|
objTypes.add(AdmSystem.OBJ_TYPE);
|
|
|
List<Map<String, Object>> codes = DigitalObjectSimpleFacade.queryDefineInfoByObjType(AdmContextUtil.toDmpContext().getGroupCode(), AdmContextUtil.toDmpContext().getProjectId(), AdmCommonConstant.APP_ID,null, RequestData.builder().objTypes(objTypes).build());
|
|
|
- Set<String> classCodeSet = new HashSet<String>(codes.size());
|
|
|
- codes.stream().forEach(stringObjectMap -> classCodeSet.add(stringObjectMap.get("code").toString()));
|
|
|
-
|
|
|
- //项目下所有已采集的动态信息点编码
|
|
|
- List<ObjectInfoDefine> gatherDynamicInfoCode = gatherDynamicInfoCode(true, classCodeSet);
|
|
|
- //项目下所有已采集静态信息点编码
|
|
|
- List<ObjectInfoDefine> gatherStaticInfoCode = gatherStaticInfoCode(true, classCodeSet);
|
|
|
-
|
|
|
- //项目下所有的设备 分页查询
|
|
|
- AdmQueryCriteria admQueryCriteriaObj = new AdmQueryCriteria();
|
|
|
- admQueryCriteriaObj.setPageNumber(1);
|
|
|
- admQueryCriteriaObj.setPageSize(500);
|
|
|
- admQueryCriteriaObj.setName(AdmEquipment.OBJ_TYPE);
|
|
|
-
|
|
|
- admQueryCriteriaObj.setProjection(Arrays.asList("id","name","localId","localName","cadId","bimId","infos","classCode"));
|
|
|
- AdmResponse admResponse = systemService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmSystem.class);
|
|
|
-
|
|
|
- Map<String,Integer> hashMap = new HashMap<>();
|
|
|
- List<AdmSystem> admSystemList = (List<AdmSystem>) admResponse.getContent();
|
|
|
- List<ObjectNode> projectEquipment = JsonNodeUtils.toListNode(admSystemList,null,null);
|
|
|
- calculate(gatherDynamicInfoCode, gatherStaticInfoCode, projectEquipment,1, hashMap);
|
|
|
-
|
|
|
- long page = admResponse.getTotal() / admResponse.getPageSize() + 1;
|
|
|
- if(page >= 2){
|
|
|
- for(long i = 2; i <= page; i++){
|
|
|
- admQueryCriteriaObj.setPageNumber(Integer.parseInt(String.valueOf(i)));
|
|
|
- admResponse = systemService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmSystem.class);
|
|
|
- admSystemList = (List<AdmSystem>) admResponse.getContent();
|
|
|
- projectEquipment = JsonNodeUtils.toListNode(admSystemList,null,null);
|
|
|
- calculate(gatherDynamicInfoCode, gatherStaticInfoCode, projectEquipment,1, hashMap);
|
|
|
+ if(CollUtil.isNotEmpty(codes)){
|
|
|
+ Set<String> classCodeSet = new HashSet<String>(codes.size());
|
|
|
+ codes.stream().forEach(stringObjectMap -> classCodeSet.add(stringObjectMap.get("code").toString()));
|
|
|
+
|
|
|
+ //项目下所有已采集的动态信息点编码
|
|
|
+ List<ObjectInfoDefine> gatherDynamicInfoCode = gatherDynamicInfoCode(true, classCodeSet);
|
|
|
+ //项目下所有已采集静态信息点编码
|
|
|
+ List<ObjectInfoDefine> gatherStaticInfoCode = gatherStaticInfoCode(true, classCodeSet);
|
|
|
+
|
|
|
+ //项目下所有的设备 分页查询
|
|
|
+ AdmQueryCriteria admQueryCriteriaObj = new AdmQueryCriteria();
|
|
|
+ admQueryCriteriaObj.setPageNumber(1);
|
|
|
+ admQueryCriteriaObj.setPageSize(500);
|
|
|
+ admQueryCriteriaObj.setName(AdmEquipment.OBJ_TYPE);
|
|
|
+
|
|
|
+ admQueryCriteriaObj.setProjection(Arrays.asList("id","name","localId","localName","cadId","bimId","infos","classCode"));
|
|
|
+ AdmResponse admResponse = systemService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmSystem.class);
|
|
|
+
|
|
|
+ Map<String,Integer> hashMap = new HashMap<>();
|
|
|
+ List<AdmSystem> admSystemList = (List<AdmSystem>) admResponse.getContent();
|
|
|
+ List<ObjectNode> projectEquipment = JsonNodeUtils.toListNode(admSystemList,null,null);
|
|
|
+ calculate(gatherDynamicInfoCode, gatherStaticInfoCode, projectEquipment,1, hashMap);
|
|
|
+
|
|
|
+ long page = admResponse.getTotal() / admResponse.getPageSize() + 1;
|
|
|
+ if(page >= 2){
|
|
|
+ for(long i = 2; i <= page; i++){
|
|
|
+ admQueryCriteriaObj.setPageNumber(Integer.parseInt(String.valueOf(i)));
|
|
|
+ admResponse = systemService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmSystem.class);
|
|
|
+ admSystemList = (List<AdmSystem>) admResponse.getContent();
|
|
|
+ projectEquipment = JsonNodeUtils.toListNode(admSystemList,null,null);
|
|
|
+ calculate(gatherDynamicInfoCode, gatherStaticInfoCode, projectEquipment,1, hashMap);
|
|
|
+ }
|
|
|
}
|
|
|
+ gatherInfoPoint.setGatherInfoPointCounts(controlInfoCounts);
|
|
|
+ gatherInfoPoint.setGatherCustomInfoPointCounts(hashMap.get("customInfoPoint"));
|
|
|
+ gatherInfoPoint.setGatherDynamicInfoPointCounts(hashMap.get("dynamicInfoPoint"));
|
|
|
+ gatherInfoPoint.setGatherStaticInfoPointCounts(hashMap.get("staticInfoPoint"));
|
|
|
+ }else{
|
|
|
+ gatherInfoPoint.setGatherInfoPointCounts(controlInfoCounts);
|
|
|
+ gatherInfoPoint.setGatherCustomInfoPointCounts(0);
|
|
|
+ gatherInfoPoint.setGatherDynamicInfoPointCounts(0);
|
|
|
+ gatherInfoPoint.setGatherStaticInfoPointCounts(0);
|
|
|
}
|
|
|
- AdmGatherInfoPoint gatherInfoPoint = new AdmGatherInfoPoint();
|
|
|
- gatherInfoPoint.setGatherInfoPointCounts(controlInfoCounts);
|
|
|
- gatherInfoPoint.setGatherCustomInfoPointCounts(hashMap.get("customInfoPoint"));
|
|
|
- gatherInfoPoint.setGatherDynamicInfoPointCounts(hashMap.get("dynamicInfoPoint"));
|
|
|
- gatherInfoPoint.setGatherStaticInfoPointCounts(hashMap.get("staticInfoPoint"));
|
|
|
return AdmResponse.success(CollUtil.newArrayList(gatherInfoPoint));
|
|
|
}
|
|
|
|