Просмотр исходного кода

fix bug:关系总览页面显示设备服务空间,设备所属空间的边类型名称都一样的bug

lijie 3 лет назад
Родитель
Сommit
f4dccadb3f

+ 2 - 0
src/main/java/com/persagy/proxy/adm/constant/SpaceTypeEnum.java

@@ -37,5 +37,7 @@ public enum SpaceTypeEnum {
         this.code = code;
         this.desc = desc;
     }
+
+
     
 }

+ 11 - 0
src/main/java/com/persagy/proxy/adm/service/impl/RelationReportService.java

@@ -11,6 +11,8 @@ import java.util.Map;
 import java.util.Set;
 import java.util.stream.Collectors;
 
+import cn.hutool.core.util.EnumUtil;
+import com.persagy.proxy.adm.constant.SpaceTypeEnum;
 import org.springframework.beans.factory.annotation.Value;
 import org.springframework.stereotype.Service;
 
@@ -714,6 +716,15 @@ public class RelationReportService implements IRelationReportService {
 		result.put("createTime", creationTime == null ? null : new DateTime(creationTime).toString());
 		result.put("mainObject", relationDefine.getFromObjType());
 		result.put("fromObject", relationDefine.getToObjType());
+		// 空间分区
+		String zoneType = relationProject.has("zoneType") ? relationProject.get("zoneType").asText() : null;
+		if (StrUtil.isNotBlank(zoneType)){
+			SpaceTypeEnum spaceTypeEnum = EnumUtil.fromString(SpaceTypeEnum.class, zoneType);
+			if (null!=spaceTypeEnum){
+				result.put("zoneType",spaceTypeEnum.getCode());
+				result.put("relationTypeName",StrUtil.replace(result.getString("relationTypeName"),"业务空间",spaceTypeEnum.getDesc()));
+			}
+		}
 		return result;
 	}