Parcourir la source

fix bug:查询的树型结构数据存在子节点列表为空的数据

lijie il y a 3 ans
Parent
commit
82542a8692

+ 8 - 2
src/main/java/com/persagy/proxy/adm/service/impl/RelationReportService.java

@@ -542,8 +542,14 @@ public class RelationReportService implements IRelationReportService {
 		if (CollUtil.isEmpty(topList)){
 			return;
 		}
-		for (JSONObject top : topList) {
-			top.put("childGraphicTypeList",levelMap.getOrDefault(top.getString("graphTypeId"),new ArrayList<>()));
+		for (int i = topList.size() - 1; i >= 0; i--) {
+			JSONObject top = topList.get(i);
+			List<JSONObject> secondLevelList = levelMap.getOrDefault(top.getString("graphTypeId"), new ArrayList<>());
+			if (CollUtil.isEmpty(secondLevelList)){
+				topList.remove(i);
+				continue;
+			}
+			top.put("childGraphicTypeList",secondLevelList);
 		}
 		// 顶级按sort排序
 		topList.sort(Comparator.comparing(b -> b.getIntValue("sort")));