Browse Source

fix : 设备 信息点统计

lvxianyun 3 years ago
parent
commit
12e66221af

+ 7 - 6
src/main/java/com/persagy/proxy/report/controller/AdmReportEquipController.java

@@ -745,7 +745,6 @@ public class AdmReportEquipController {
     @PostMapping("/info-point")
     public AdmResponse infoPoint() {
         //return customSqlService.infoPoints()
-        
         JSONObject gatherInfoPoint = calInfoPointByObjType(AdmEquipment.OBJ_TYPE, false, false);
         JSONObject infoPoint = new JSONObject();
         infoPoint.put("dynamicInfoPoint",gatherInfoPoint.getString("gatherDynamicInfoPointCounts"));
@@ -901,16 +900,15 @@ public class AdmReportEquipController {
 
         for (int i=0;i<objList.size();i++) {
             JsonNode objectNode = JsonNodeUtils.toObjectNode(objList.get(i),null,null);
-            if (objectNode.get("infos") != null) {
-                Map<String,Object> dynamic = calculateInfoPoints(objectNode.get("infos").toString(), objectNode.get("classCode").textValue().toString(), dynamicInfoPointCodes);
-                Map<String,Object> staticMap = calculateInfoPoints(objectNode.get("infos").toString(), objectNode.get("classCode").textValue().toString(), staticInfoPointCodes);
+            if (StrUtil.isNotEmpty(objectNode.get("infos").textValue())) {
+                Map<String,Object> dynamic = calculateInfoPoints(objectNode.get("infos").toString(), objectNode.get("classCode").textValue(), dynamicInfoPointCodes);
+                Map<String,Object> staticMap = calculateInfoPoints(objectNode.get("infos").toString(), objectNode.get("classCode").textValue(), staticInfoPointCodes);
                 dynamicInfoPoint += Integer.parseInt(dynamic.get("counts").toString());
                 staticInfoPoint += Integer.parseInt(staticMap.get("counts").toString());
                 dynamicInfoPointCodes.remove(dynamic.get("next"));
                 staticInfoPointCodes.remove(staticMap.get("next"));
             }
         }
-
         hashMap.put("dynamicInfoPoint", dynamicInfoPoint);
         hashMap.put("staticInfoPoint", staticInfoPoint);
         hashMap.put("customInfoPoint", customInfoPoint);
@@ -921,7 +919,10 @@ public class AdmReportEquipController {
 
     /**
      * 计算信息点
-     *
+     * @param str infos
+     * @param type classCode
+     * @param infoPointCodes
+     * @return
      */
     private Map<String,Object> calculateInfoPoints(String str, String type, List<ObjectInfoDefine> infoPointCodes) {
         int counts = 0;