Browse Source

fix : 质量报告bug测试

lvxianyun 3 years ago
parent
commit
83916138f5

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

@@ -1042,7 +1042,7 @@ public class AdmReportEquipController {
                 }
 
                 ObjectNode infos = (ObjectNode) objectNode.get("infos");
-                if (!JSONUtil.isNull(infos)) {
+                if (!JSONUtil.isNull(infos) && !infos.toString().equals("{}")) {
                     Map<String, Object> dynamic = calculateInfoPoints(infos.toString(), objectNode.get("classCode").textValue(), dynamicInfoPointCodes);
                     Map<String, Object> staticMap = calculateInfoPoints(infos.toString(), objectNode.get("classCode").textValue(), staticInfoPointCodes);
                     dynamicInfoPoint += Integer.parseInt(dynamic.get("counts").toString());