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