Browse Source

fix : 质量报告bug测试

lvxianyun 3 years ago
parent
commit
b4245dc337

+ 11 - 20
src/main/java/com/persagy/proxy/report/controller/AdmReportEquipController.java

@@ -37,6 +37,7 @@ import com.persagy.proxy.object.service.IAdmComponentService;
 import com.persagy.proxy.object.service.IAdmEquipmentService;
 import com.persagy.proxy.object.service.IAdmSystemService;
 import com.persagy.proxy.report.model.AdmGatherInfoPoint;
+import com.persagy.proxy.report.model.AdmInfoPoint;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.*;
 
@@ -755,9 +756,7 @@ public class AdmReportEquipController {
         if(StrUtil.isEmpty(AdmContextUtil.toDmpContext().getProjectId())){
             return AdmResponse.failure(ResponseCode.A0400.getCode());
         }
-        Integer controlInfoCounts = controlInfoCounts(AdmEquipment.OBJ_TYPE);
-        AdmGatherInfoPoint gatherInfoPoint = new AdmGatherInfoPoint();
-        gatherInfoPoint.setGatherInfoPointCounts(controlInfoCounts);
+        AdmInfoPoint infoPoint = new AdmInfoPoint();
         // 根据objType获取定义 获取采集的设备的classcode
         Set<String> objTypes = new HashSet<>(1);
         objTypes.add(AdmEquipment.OBJ_TYPE);
@@ -794,19 +793,12 @@ public class AdmReportEquipController {
                     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);
+            infoPoint.setDynamicInfoPointCounts(dynamicInfoPointCodes.size());
+            infoPoint.setStaticInfoPointCounts(staticInfoPointCodes.size());
+            infoPoint.setDynamicInfoPoint(hashMap.get("dynamicInfoPoint"));
+            infoPoint.setStaticInfoPoint(hashMap.get("staticInfoPoint"));
         }
-        return AdmResponse.success(CollUtil.newArrayList(gatherInfoPoint));
+        return AdmResponse.success(CollUtil.newArrayList(infoPoint));
     }
 
     /**
@@ -861,6 +853,7 @@ public class AdmReportEquipController {
             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);
@@ -877,7 +870,7 @@ public class AdmReportEquipController {
     @PostMapping("/system-info-point")
     public AdmResponse systemInfoPoin() {
         AdmGatherInfoPoint gatherInfoPoint = new AdmGatherInfoPoint();
-        Integer controlInfoCounts = controlInfoCounts(AdmEquipment.OBJ_TYPE);
+        Integer controlInfoCounts = controlInfoCounts(AdmSpace.OBJ_TYPE);
         // 根据objType获取定义 获取采集的设备的classcode
         Set<String> objTypes = new HashSet<>(1);
         objTypes.add(AdmSystem.OBJ_TYPE);
@@ -1101,6 +1094,7 @@ public class AdmReportEquipController {
     private Integer controlInfoCounts(String objtype){
         AdmQueryCriteria admQueryCriteria = new AdmQueryCriteria();
         admQueryCriteria.setOnlyCount(true);
+        admQueryCriteria.setFilters(" projectId = '0' and groupCode = '0' ");
         AdmResponse response = dictService.doQueryObjectInfo(AdmContextUtil.toDmpContext(), admQueryCriteria, objtype, AdmObjectInfo.class);
         return response.getTotal().intValue();
     }
@@ -1116,13 +1110,12 @@ public class AdmReportEquipController {
         ArrayNode arrayNode = criteria.putObject("classCode").putArray("$in");
         classCodeSet.stream().forEach(classCode -> arrayNode.add(classCode));
         //静态信息点
-        String filters = "groupCode='0' and projectId='0' and category != 'STATIC'";
+        String filters = " category != 'STATIC'";
         if(visible){
             filters = filters + " and valid = '1' ";
         }
         filters = filters +" and classCode in ['"+StrUtil.join("','",classCodeSet)+"']";
         admQueryCriteria.setFilters(filters);
-        System.out.println(filters);
         AdmResponse dynamicInfoCode = dictService.doQueryObjectInfo(AdmContextUtil.toDmpContext(), admQueryCriteria,null, AdmObjectInfo.class);
         return (List<ObjectInfoDefine>) dynamicInfoCode.getContent();
     }
@@ -1137,8 +1130,6 @@ public class AdmReportEquipController {
         ArrayNode arrayNode = criteria.putObject("classCode").putArray("$in");
         classCodeSet.stream().forEach(classCode -> arrayNode.add(classCode));
         //静态信息点
-        criteria.put("groupCode","0");
-        criteria.put("projectId","0");
         criteria.put("category","STATIC");
         if(visible){
             criteria.put("valid", "1");