Bläddra i källkod

fix bug:关系总览页面点击手动维护关系不起作用的问题

lijie 3 år sedan
förälder
incheckning
2398ed9fce

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

@@ -710,7 +710,7 @@ public class RelationReportService implements IRelationReportService {
 		result.put("conneObject", relationDefine.getTargetObjs());
 		result.put("computationalState",relationProject.has("computationalState")?relationProject.get("computationalState").asText():null);
 		result.put("id",relationProject.has("id")?relationProject.get("id").asText():null);
-		result.put("manual",relationProject.has("manual")?relationProject.get("manual").asText():null);
+		result.put("manual",relationProject.has("manual")?relationProject.get("manual").asLong():null);
 		result.put("projectId",relationProject.has("projectId")?relationProject.get("projectId").asText():null);
 		result.put("relationType", typeEnum == null ? null : typeEnum.getRelationType());
 		result.put("relManualType",typeEnum == null ? null : typeEnum.getRelationType());