lijie 3 gadi atpakaļ
vecāks
revīzija
a235779257

+ 5 - 1
src/main/java/com/persagy/proxy/adm/service/impl/RelationReportService.java

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