|
@@ -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());
|