|
@@ -24,6 +24,7 @@ import com.persagy.dmp.common.constant.ResponseCode;
|
|
|
import com.persagy.dmp.common.constant.ValidEnum;
|
|
|
import com.persagy.dmp.common.helper.SpringHelper;
|
|
|
import com.persagy.dmp.common.model.response.CommonResult;
|
|
|
+import com.persagy.dmp.define.entity.ObjectInfoDefine;
|
|
|
import com.persagy.dmp.define.entity.RelationDefine;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -90,10 +91,14 @@ public class SyncAppImpl implements ISyncApp {
|
|
|
// @Autowired
|
|
|
// ResourceLoader resourceLoader;
|
|
|
|
|
|
+
|
|
|
@Override
|
|
|
- public Map<String, Object> downloadDictAndConfig(String groupCode, String projectId, String userId) {
|
|
|
- Map<String, Object> dict = queryDict(groupCode, projectId, userId);
|
|
|
+ public Map<String, Object> downloadDict(String groupCode, String projectId, String userId) {
|
|
|
+ return queryDict(groupCode, projectId, userId, true, true);
|
|
|
+ }
|
|
|
|
|
|
+ @Override
|
|
|
+ public Map<String, Object> downloadConfig(String groupCode, String projectId, String userId) {
|
|
|
//配置数据查询
|
|
|
List<AdmM2dEquip> m2dTypes = configService.queryM2dEquip(projectId);
|
|
|
List<AdmInfosConfig> infosConfig = configService.queryInfosConfig(projectId);
|
|
@@ -104,7 +109,6 @@ public class SyncAppImpl implements ISyncApp {
|
|
|
List<AdmContainerConfig> containerConfig = configService.queryContainerConfig(projectId);
|
|
|
|
|
|
HashMap<String, Object> data = new HashMap<>();
|
|
|
- data.put("dict", dict);
|
|
|
data.put("m2dTypes", m2dTypes);
|
|
|
data.put("infosConfig", serializeJsonProp(infosConfig));
|
|
|
data.put("relConfig", relConfig);
|
|
@@ -117,7 +121,9 @@ public class SyncAppImpl implements ISyncApp {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public Map<String, Object> queryDict(String groupCode, String projectId, String userId){
|
|
|
+ public Map<String, Object> queryDict(String groupCode, String projectId, String userId, boolean includeRel, boolean includeInfos){
|
|
|
+ boolean newDict = "JD".equalsIgnoreCase(groupCode);
|
|
|
+
|
|
|
//从知识库服务获取专业分类
|
|
|
QueryCriteria majorCriteria = ServiceUtil.getQueryCriteria(null, objectMapper);
|
|
|
majorCriteria.getCriteria().put("type", "major");
|
|
@@ -128,11 +134,8 @@ public class SyncAppImpl implements ISyncApp {
|
|
|
criteria.getCriteria().putArray("objType").add("system").add("equipment");
|
|
|
List<TypeDef> typeList = queryAllPage(() -> rwdClient.queryObjectType(groupCode, projectId, AdmConst.APP_ID, userId, criteria), criteria, new Pagination(500));
|
|
|
|
|
|
- //查询关系定义
|
|
|
- List<RelationDefine> relList = ServiceUtil.call(() -> rwdClient.queryRelDef(groupCode, projectId, AdmConst.APP_ID, userId, new QueryCriteria()));
|
|
|
-
|
|
|
//查询重命名设备类型
|
|
|
- ObjectNode renameNode = configService.queryRenameEquipTypes(projectId);
|
|
|
+ ObjectNode renameNode = !newDict ? configService.queryRenameEquipTypes(projectId) : null;
|
|
|
|
|
|
LinkedList<TypeDef> sysList = new LinkedList<>();
|
|
|
LinkedList<TypeDef> equipList = new LinkedList<>();
|
|
@@ -140,10 +143,12 @@ public class SyncAppImpl implements ISyncApp {
|
|
|
if(def.getObjType().equals("system"))
|
|
|
sysList.add(def);
|
|
|
else if(def.getObjType().equals("equipment")) {
|
|
|
- if (renameNode != null) { //设备类型重命名
|
|
|
- JsonNode n = renameNode.get(def.getCode());
|
|
|
- if(n != null)
|
|
|
- def.setName(n.asText());
|
|
|
+ if(!newDict) {
|
|
|
+ if (renameNode != null) { //设备类型重命名
|
|
|
+ JsonNode n = renameNode.get(def.getCode());
|
|
|
+ if(n != null)
|
|
|
+ def.setName(n.asText());
|
|
|
+ }
|
|
|
}
|
|
|
equipList.add(def);
|
|
|
}
|
|
@@ -157,45 +162,36 @@ public class SyncAppImpl implements ISyncApp {
|
|
|
// }catch (Exception e) {
|
|
|
//
|
|
|
// }
|
|
|
- ArrayNode arr = configService.queryNewEquipTypes(projectId);
|
|
|
- if(arr != null) {
|
|
|
- try{
|
|
|
- List<TypeDef> types = objectMapper.readValue(objectMapper.writeValueAsString(arr), new TypeReference<List<TypeDef>>(){});
|
|
|
- equipList.addAll(types);
|
|
|
- }catch (Exception e) {
|
|
|
+ if(!newDict) {
|
|
|
+ ArrayNode arr = configService.queryNewEquipTypes(projectId);
|
|
|
+ if(arr != null) {
|
|
|
+ try{
|
|
|
+ List<TypeDef> types = objectMapper.readValue(objectMapper.writeValueAsString(arr), new TypeReference<List<TypeDef>>(){});
|
|
|
+ equipList.addAll(types);
|
|
|
+ }catch (Exception e) {
|
|
|
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- //组织树形结构
|
|
|
-// for(Map<String, Object> major : majorList){
|
|
|
-// ArrayList<TypeDef> childrenSys = new ArrayList<>();
|
|
|
-// major.put("children", childrenSys);
|
|
|
-// String majorCode = (String) major.get("code");
|
|
|
-// for(Iterator<TypeDef> sysIter = sysList.iterator();sysIter.hasNext();){
|
|
|
-// TypeDef sysDef = sysIter.next();
|
|
|
-// if(sysDef.getMajorCode() != null && sysDef.getMajorCode().equals(majorCode)){
|
|
|
-// childrenSys.add(sysDef);
|
|
|
-//
|
|
|
-// for(Iterator<TypeDef> equipIter = equipList.iterator();equipIter.hasNext();){
|
|
|
-// TypeDef equipDef = equipIter.next();
|
|
|
-// if(equipDef.getSystemCode() != null && equipDef.getSystemCode().equals(sysDef.getCode())){
|
|
|
-// sysDef.addChild(equipDef);
|
|
|
-// equipIter.remove();
|
|
|
-// }
|
|
|
-// }
|
|
|
-//
|
|
|
-// sysIter.remove();
|
|
|
-// break;
|
|
|
-// }
|
|
|
-// }
|
|
|
-// }
|
|
|
-
|
|
|
HashMap<String, Object> data = new HashMap<>();
|
|
|
data.put("major", majorList);
|
|
|
data.put("system", sysList);
|
|
|
data.put("equipment", equipList);
|
|
|
- data.put("relation", relList);
|
|
|
+
|
|
|
+ //查询关系定义
|
|
|
+ if(includeRel) {
|
|
|
+ List<RelationDefine> relList = ServiceUtil.call(() -> rwdClient.queryRelDef(groupCode, projectId, AdmConst.APP_ID, userId, new QueryCriteria()));
|
|
|
+ data.put("relation", relList);
|
|
|
+ }
|
|
|
+ //查询信息点定义
|
|
|
+ if(includeInfos) {
|
|
|
+ QueryCriteria qc = new QueryCriteria();
|
|
|
+ qc.setCriteria(objectMapper.createObjectNode());
|
|
|
+ List<InfoDef> funcList = ServiceUtil.call(() -> rwdClient.queryFunc(groupCode, projectId, AdmConst.APP_ID, userId, qc));
|
|
|
+ data.put("infos", funcList);
|
|
|
+ }
|
|
|
+
|
|
|
return data;
|
|
|
}
|
|
|
|
|
@@ -464,9 +460,9 @@ public class SyncAppImpl implements ISyncApp {
|
|
|
|
|
|
private <T extends BaseAdmEntity> List<T> serializeJsonProp(List<T> list){
|
|
|
//app端完善,不需要做tostr处理了
|
|
|
- for(BaseAdmEntity entity : list) {
|
|
|
- entity.serializeJsonProp();
|
|
|
- }
|
|
|
+// for(BaseAdmEntity entity : list) {
|
|
|
+// entity.serializeJsonProp();
|
|
|
+// }
|
|
|
return list;
|
|
|
}
|
|
|
|