Browse Source

Merge remote-tracking branch 'origin/develop' into develop

lijie 3 years ago
parent
commit
73513a6e12

+ 3 - 11
src/main/java/com/persagy/proxy/object/controller/AdmShaftController.java

@@ -374,20 +374,12 @@ public class AdmShaftController {
     public AdmResponse queryUnZoneSp(@QueryParam("shaftId") String shaftId,
                              @RequestBody AdmQueryCriteria request) throws Exception {
         // 组装条件
-        QueryCriteria queryCriteria = AdmQueryCriteriaHelper.toDmpCriteria(request);
         if(!StrUtil.isNotEmpty(shaftId)) {
             return AdmResponse.failure("必填项:shaftId(竖井id)");
         }
-        ObjectNode criteria = JsonNodeFactory.instance.objectNode();
-        ObjectNode relationTO = JsonNodeFactory.instance.objectNode();
-        ArrayNode arrayNode = relationTO.putObject("objFrom").putArray("$notcontains");
-        arrayNode.add(shaftId);
-        relationTO.put("relCode", "Sh2Sp");
-        relationTO.put("graphCode","ArchSubset");
-        criteria.putPOJO("relationTo", relationTO);
-
-        criteria.put("objType", "space");
-        queryCriteria.setCriteria(relationTO);
+        request.setName(AdmSpace.OBJ_TYPE);
+        request.resetRelationCond(false, "ArchSubset", "Sh2Sp", AdmSpace.OBJ_TYPE, shaftId, false);
+        QueryCriteria queryCriteria = AdmQueryCriteriaHelper.toDmpCriteria(request);
         List<ObjectNode> spaceList = DigitalObjectFacade.query(AdmContextUtil.toDmpContext().getGroupCode(), AdmContextUtil.toDmpContext().getProjectId(), AdmContextUtil.toDmpContext().getAppId(), null, queryCriteria);
         if(CollUtil.isNotEmpty(spaceList)){
             List<AdmSpace> vos = JSONUtil.toList(spaceList.toString(), AdmSpace.class);

+ 12 - 21
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);
@@ -895,7 +888,7 @@ public class AdmReportEquipController {
             AdmQueryCriteria admQueryCriteriaObj =  new AdmQueryCriteria();
             admQueryCriteriaObj.setPageNumber(1);
             admQueryCriteriaObj.setPageSize(500);
-            admQueryCriteriaObj.setName(AdmEquipment.OBJ_TYPE);
+            admQueryCriteriaObj.setName(AdmSystem.OBJ_TYPE);
 
             admQueryCriteriaObj.setProjection(Arrays.asList("id","name","localId","localName","cadId","bimId","infos","classCode"));
             AdmResponse admResponse = systemService.doQuery(AdmContextUtil.toDmpContext(), admQueryCriteriaObj, AdmSystem.class);
@@ -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");

+ 4 - 6
src/main/java/com/persagy/proxy/report/model/AdmGatherInfoPoint.java

@@ -11,16 +11,14 @@ import lombok.Data;
 @Data
 public class AdmGatherInfoPoint {
     /** 信息点总数(数字字典+自定义信息点) */
-    private Integer gatherInfoPointCounts;
-    private Integer dynamicInfoPointCounts;
-    private Integer staticInfoPointCounts;
+    private Integer gatherInfoPointCounts = 0;
 
     /** 已采集的动态信息点总数 */
-    private Integer gatherDynamicInfoPointCounts;
+    private Integer gatherDynamicInfoPointCounts = 0;
 
     /** 已采集的静态信息点总数 */
-    private Integer gatherStaticInfoPointCounts;
+    private Integer gatherStaticInfoPointCounts = 0;
 
     /** 已采集的自定义信息点总数 */
-    private Integer gatherCustomInfoPointCounts;
+    private Integer gatherCustomInfoPointCounts = 0;
 }

+ 28 - 0
src/main/java/com/persagy/proxy/report/model/AdmInfoPoint.java

@@ -0,0 +1,28 @@
+package com.persagy.proxy.report.model;
+
+import lombok.Data;
+
+/**
+ * @author lvxy
+ * @date 2021/11/1
+ */
+@Data
+public class AdmInfoPoint {
+    /** 自定义信息点总数 */
+    private Integer customInfoPointCounts = 0;
+
+    /** 项目中设备用到的自定义信息点数 */
+    private Integer customInfoPoint = 0;
+
+    /** 动态信息点总数 */
+    private Integer dynamicInfoPointCounts = 0;
+
+    /** 设备用到的动态信息点数 */
+    private Integer dynamicInfoPoint = 0;
+
+    /** 静态信息点总数 */
+    private Integer staticInfoPointCounts = 0;
+
+    /** 设备用到的静态信息点数 */
+    private Integer staticInfoPoint = 0;
+}