|
@@ -492,9 +492,13 @@ public class RelationReportService implements IRelationReportService {
|
|
|
if (!levelMap.containsKey(secondCategoryMes.getId())){
|
|
|
topList.add(this.transfer(secondCategoryMes));
|
|
|
}
|
|
|
+ List<JSONObject> threeLevelList = levelMap.getOrDefault(graphDefine.getCode(), new ArrayList<>());
|
|
|
+ if (CollUtil.isEmpty(threeLevelList)){
|
|
|
+ continue;
|
|
|
+ }
|
|
|
List<JSONObject> sonList = levelMap.getOrDefault(secondCategoryMes.getId(), new ArrayList<>());
|
|
|
JSONObject secondLevel = this.transfer(graphDefine);
|
|
|
- secondLevel.put("relationTypeProjectList",levelMap.getOrDefault(graphDefine.getCode(),new ArrayList<>()));
|
|
|
+ secondLevel.put("relationTypeProjectList",threeLevelList);
|
|
|
sonList.add(secondLevel);
|
|
|
sonList.sort(Comparator.comparing(b -> b.getString("graphTypeCode")));
|
|
|
levelMap.put(secondCategoryMes.getId(),sonList);
|