|
@@ -1,23 +1,17 @@
|
|
|
package com.persagy.proxy.adm.service.impl;
|
|
|
|
|
|
import java.time.format.DateTimeFormatter;
|
|
|
-import java.util.*;
|
|
|
-import java.util.concurrent.ConcurrentLinkedQueue;
|
|
|
-import java.util.stream.Collectors;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.Collections;
|
|
|
+import java.util.Comparator;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.HashMap;
|
|
|
+import java.util.HashSet;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
import java.util.Set;
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
|
|
-import cn.hutool.core.collection.CollUtil;
|
|
|
-import cn.hutool.core.date.DateUtil;
|
|
|
-import com.baomidou.mybatisplus.core.toolkit.IdWorker;
|
|
|
-import com.fasterxml.jackson.core.JsonProcessingException;
|
|
|
-import com.persagy.dmp.basic.dto.GraphParentMes;
|
|
|
-import com.persagy.dmp.common.context.AppContext;
|
|
|
-import com.persagy.dmp.common.utils.JsonHelper;
|
|
|
-import org.apache.commons.lang.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
@@ -28,30 +22,38 @@ import com.fasterxml.jackson.core.JsonProcessingException;
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
|
import com.google.common.collect.Lists;
|
|
|
+import com.persagy.dmp.basic.dto.GraphParentMes;
|
|
|
import com.persagy.dmp.basic.dto.RequestData;
|
|
|
import com.persagy.dmp.basic.model.QueryCriteria;
|
|
|
import com.persagy.dmp.common.context.AppContext;
|
|
|
import com.persagy.dmp.common.helper.SpringHelper;
|
|
|
import com.persagy.dmp.common.model.response.CommonResult;
|
|
|
+import com.persagy.dmp.define.client.DigitalDefineFacade;
|
|
|
import com.persagy.dmp.define.client.DigitalGraphDefineFacade;
|
|
|
import com.persagy.dmp.define.client.DigitalRelationDefineFacade;
|
|
|
import com.persagy.dmp.define.entity.GraphDefine;
|
|
|
+import com.persagy.dmp.define.entity.ObjectTypeDefine;
|
|
|
import com.persagy.dmp.define.entity.RelationDefine;
|
|
|
import com.persagy.dmp.digital.client.DigitalObjectFacade;
|
|
|
import com.persagy.dmp.digital.client.DigitalRelationFacade;
|
|
|
import com.persagy.dmp.digital.client.DigitalRelationProjectCalFacade;
|
|
|
+import com.persagy.dmp.digital.entity.ObjectDigital;
|
|
|
import com.persagy.dmp.digital.entity.ObjectRelation;
|
|
|
import com.persagy.dmp.digital.entity.ObjectRelationProjectCal;
|
|
|
import com.persagy.dmp.simple.client.DigitalObjectSimpleFacade;
|
|
|
import com.persagy.proxy.adm.constant.AdmCommonConstant;
|
|
|
+import com.persagy.proxy.adm.constant.AdmObjectType;
|
|
|
import com.persagy.proxy.adm.constant.AdmRelationTypeEnum;
|
|
|
-import com.persagy.proxy.adm.constant.ObjTypeMapping;
|
|
|
+import com.persagy.proxy.adm.constant.GraphCodeEnum;
|
|
|
+import com.persagy.proxy.adm.constant.RelCodeEnum;
|
|
|
+import com.persagy.proxy.adm.model.EquipmentExcel;
|
|
|
import com.persagy.proxy.adm.service.IRelationReportService;
|
|
|
import com.persagy.proxy.adm.strategy.relationdata.RelationObjectStrategy;
|
|
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
import cn.hutool.core.collection.CollectionUtil;
|
|
|
import cn.hutool.core.date.DateTime;
|
|
|
+import cn.hutool.core.date.DateUtil;
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
|
/**
|
|
@@ -128,13 +130,13 @@ public class RelationReportService implements IRelationReportService {
|
|
|
return Lists.newArrayList();
|
|
|
}
|
|
|
List<JSONObject> result = Lists.newArrayList();
|
|
|
- Map<String, AdmRelationTypeEnum> graphRelTypeMap = AdmRelationTypeEnum.getGraphRelTypeMap();
|
|
|
+ Map<String, AdmRelationTypeEnum> graphRelTypeMap = AdmCommonConstant.GRAPH_RELATION_TYPE_MAP;
|
|
|
Map<String, RelationDefine> relationDefineMap = queryAllRelationDefineMap(groupCode, projectId);
|
|
|
for (ObjectNode objectNode : projectList) {
|
|
|
String graphCode = objectNode.get("graphCode") == null ? null : objectNode.get("graphCode").asText();
|
|
|
String relCode = objectNode.get("relCode") == null ? null : objectNode.get("relCode").asText();
|
|
|
- AdmRelationTypeEnum relationTypeEnum = AdmCommonConstant.GRAPH_RELATION_TYPE_MAP.get(graphCode + AdmCommonConstant.UNDERLINE + relCode);
|
|
|
- result.add(this.fillRelationProjectCal(objectNode, graphCode,relCode,graphRelTypeMap, relationDefineMap));
|
|
|
+ //AdmRelationTypeEnum relationTypeEnum = AdmCommonConstant.GRAPH_RELATION_TYPE_MAP.get(graphCode + AdmCommonConstant.UNDERLINE + relCode);
|
|
|
+ result.add(this.fillRelationProjectCal(objectNode, graphCode, relCode, graphRelTypeMap, relationDefineMap, groupCode, projectId));
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
@@ -151,7 +153,7 @@ public class RelationReportService implements IRelationReportService {
|
|
|
}
|
|
|
// 获取此图类型对应项目计算数据
|
|
|
List<JSONObject> resultList = new ArrayList<>();
|
|
|
- Map<String, AdmRelationTypeEnum> graphRelTypeMap = AdmRelationTypeEnum.getGraphRelTypeMap();
|
|
|
+ Map<String, AdmRelationTypeEnum> graphRelTypeMap = AdmCommonConstant.GRAPH_RELATION_TYPE_MAP;
|
|
|
Map<String, RelationDefine> relationDefineMap = queryAllRelationDefineMap(groupCode, projectId);
|
|
|
for (GraphDefine graphDefine : secondList) {
|
|
|
String graphCode = graphDefine.getCode();
|
|
@@ -173,7 +175,7 @@ public class RelationReportService implements IRelationReportService {
|
|
|
List<JSONObject> tempList = new ArrayList<>();
|
|
|
for (ObjectNode objectNode : projectList) {
|
|
|
String relCode = objectNode.get("relCode") == null ? null : objectNode.get("relCode").asText();
|
|
|
- tempList.add(this.fillRelationProjectCal(objectNode,graphDefine.getCode(),relCode,graphRelTypeMap,relationDefineMap));
|
|
|
+ tempList.add(this.fillRelationProjectCal(objectNode, graphDefine.getCode(), relCode, graphRelTypeMap,relationDefineMap, groupCode, projectId));
|
|
|
}
|
|
|
graphObject.put("relationTypeProjectList", projectList);
|
|
|
resultList.add(graphObject);
|
|
@@ -193,10 +195,10 @@ public class RelationReportService implements IRelationReportService {
|
|
|
|
|
|
ObjectNode objectNode = this.getRelationProjectCal(groupCode, projectId, relationTypeEnum.getGraphCode(),
|
|
|
relationTypeEnum.getRelCode(), null);
|
|
|
- Map<String, AdmRelationTypeEnum> graphRelTypeMap = AdmRelationTypeEnum.getGraphRelTypeMap();
|
|
|
+ Map<String, AdmRelationTypeEnum> graphRelTypeMap = AdmCommonConstant.GRAPH_RELATION_TYPE_MAP;
|
|
|
Map<String, RelationDefine> relationDefineMap = queryAllRelationDefineMap(groupCode, projectId);
|
|
|
if (objectNode != null) {
|
|
|
- return this.fillRelationProjectCal(objectNode,groupCode,relationTypeEnum.getRelCode(),graphRelTypeMap,relationDefineMap);
|
|
|
+ return this.fillRelationProjectCal(objectNode, relationTypeEnum.getGraphCode(), relationTypeEnum.getRelCode(), graphRelTypeMap, relationDefineMap, groupCode, projectId);
|
|
|
}
|
|
|
|
|
|
return new JSONObject();
|
|
@@ -332,13 +334,47 @@ public class RelationReportService implements IRelationReportService {
|
|
|
List<ObjectRelation> objectRelations = DigitalRelationFacade.query(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
|
|
|
return CollectionUtil.isEmpty(objectRelations) ? Lists.newArrayList() : objectRelations;
|
|
|
}
|
|
|
- /**
|
|
|
- * 初始化项目关系计算数据
|
|
|
- *
|
|
|
- * @param groupCode: 集团编码
|
|
|
- * @param projectId: 项目id
|
|
|
- * @return
|
|
|
- */
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<EquipmentExcel> findEquipByNotSpace(String groupCode, String projectId) {
|
|
|
+ groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
|
|
|
+ // 1.获取所有的设备对象数据
|
|
|
+ ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
|
|
|
+ QueryCriteria objectCriteria = new QueryCriteria();
|
|
|
+ ObjectNode object = objectMapper.createObjectNode();
|
|
|
+ object.put("objType", AdmObjectType.EQUIPMENT.getIndex());
|
|
|
+ objectCriteria.setCriteria(object);
|
|
|
+ List<ObjectNode> equipList = DigitalObjectFacade.query(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, objectCriteria);
|
|
|
+ if (CollectionUtil.isEmpty(equipList)) {
|
|
|
+ return Lists.newArrayList();
|
|
|
+ }
|
|
|
+
|
|
|
+ // 2.获取所有的设备类定义的className
|
|
|
+ List<ObjectTypeDefine> classList = DigitalDefineFacade.queryObjectType(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, objectCriteria);
|
|
|
+ // key-classCode, value-className
|
|
|
+ Map<String, String> classDefine = new HashMap<String, String>();
|
|
|
+ if (CollectionUtil.isNotEmpty(classList)) {
|
|
|
+ for (ObjectTypeDefine objectTypeDefine : classList) {
|
|
|
+ classDefine.put(objectTypeDefine.getCode(), objectTypeDefine.getName());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // 3.查询出所有的边类型为 Eq2Sp 的关系数据
|
|
|
+ QueryCriteria relationCriteria = new QueryCriteria();
|
|
|
+ ObjectNode relation = objectMapper.createObjectNode();
|
|
|
+ relation.put("relCode", RelCodeEnum.Eq2Sp.name());
|
|
|
+ relationCriteria.setCriteria(relation);
|
|
|
+ List<ObjectRelation> relationList = DigitalRelationFacade.query(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, relationCriteria);
|
|
|
+ Set<String> equipIds = new HashSet<String>();
|
|
|
+ if (CollectionUtil.isNotEmpty(relationList)) {
|
|
|
+ for (ObjectRelation relationInfo : relationList) {
|
|
|
+ equipIds.add(relationInfo.getObjFrom());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return this.exportEquipmentExcel(equipList, classDefine, equipIds, groupCode, projectId);
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public boolean createRelationProjectCal(String groupCode, String projectId) throws JsonProcessingException {
|
|
|
groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
|
|
@@ -410,7 +446,7 @@ public class RelationReportService implements IRelationReportService {
|
|
|
objectNode.put("zoneType", zoneType); // 业务分区类型
|
|
|
objectNode.put("systemType", relationDefine.getSystemType()); // 风系统1,水系统0
|
|
|
objectNode.put("computeVersion", 0); // 计算版本
|
|
|
- objectNode.put("mepSystemType", CollUtil.isNotEmpty(relationDefine.getMepSystemType())
|
|
|
+ objectNode.putPOJO("mepSystemType", CollUtil.isNotEmpty(relationDefine.getMepSystemType())
|
|
|
? objectMapper.valueToTree(relationDefine.getMepSystemType()) :objectMapper.createArrayNode()); // 机电系统类型
|
|
|
objectNode.put("creator", AdmCommonConstant.USER_ID); // 创建人
|
|
|
objectNode.put("modifier", AdmCommonConstant.USER_ID); // 最后修改人
|
|
@@ -449,7 +485,7 @@ public class RelationReportService implements IRelationReportService {
|
|
|
* @param content
|
|
|
*/
|
|
|
private void getGraphRelationProjectTree(List<JSONObject> parentList, String groupCode, String projectId, String content) {
|
|
|
- boolean isQuery = StringUtils.isNotBlank(content);
|
|
|
+ //boolean isQuery = StringUtils.isNotBlank(content);
|
|
|
// 1.获取所有的一级,二级图类型定义
|
|
|
QueryCriteria parentCriteria = new QueryCriteria();
|
|
|
List<GraphDefine> graphDefines = DigitalGraphDefineFacade.query(groupCode, projectId,
|
|
@@ -477,7 +513,7 @@ public class RelationReportService implements IRelationReportService {
|
|
|
continue;
|
|
|
}
|
|
|
List<JSONObject> sonList = levelMap.getOrDefault(graphCode, new ArrayList<>());
|
|
|
- JSONObject son = this.fillRelationProjectCal(projectRel, graphCode,relCode,graphRelTypeMap,relationDefineMap);
|
|
|
+ JSONObject son = this.fillRelationProjectCal(projectRel, graphCode,relCode,graphRelTypeMap,relationDefineMap, null, null);
|
|
|
sonList.add(son);
|
|
|
sonList.sort(Comparator.comparing(b -> b.getString("relationTypeCode")));
|
|
|
levelMap.put(graphCode,sonList);
|
|
@@ -611,18 +647,24 @@ public class RelationReportService implements IRelationReportService {
|
|
|
*/
|
|
|
private JSONObject fillRelationProjectCal(ObjectNode relationProject, String graphicId, String relCode,
|
|
|
Map<String, AdmRelationTypeEnum> graphRelTypeMap,
|
|
|
- Map<String, RelationDefine> relationDefineMap) {
|
|
|
+ Map<String, RelationDefine> relationDefineMap,
|
|
|
+ String groupCode, String projectId) {
|
|
|
String key = graphicId + StrUtil.UNDERLINE + relCode;
|
|
|
AdmRelationTypeEnum typeEnum = graphRelTypeMap.get(key);
|
|
|
RelationDefine relationDefine = relationDefineMap.getOrDefault(key,new RelationDefine());
|
|
|
JSONObject result = new JSONObject();
|
|
|
+ if (StrUtil.isAllNotBlank(groupCode, projectId)) {
|
|
|
+ String zoneType = relationProject.has("zoneType") ? relationProject.get("zoneType").asText() : null;
|
|
|
+ long count = this.countRelationObject(groupCode, projectId, graphicId, relCode, zoneType);
|
|
|
+ result.put("count", count);
|
|
|
+ }
|
|
|
result.put("graphicId", graphicId);
|
|
|
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("projectId",relationProject.has("projectId")?relationProject.get("projectId").asText():null);
|
|
|
- result.put("relationType",typeEnum.getRelationType());
|
|
|
- result.put("relManualType",typeEnum.getRelationType());
|
|
|
+ result.put("relationType", typeEnum == null ? null : typeEnum.getRelationType());
|
|
|
+ result.put("relManualType",typeEnum == null ? null : typeEnum.getRelationType());
|
|
|
result.put("relationTypeCode",relationProject.has("relCode")?relationProject.get("relCode").asText():null);
|
|
|
result.put("code", relationProject.has("relCode")?relationProject.get("relCode").asText():null);
|
|
|
result.put("relationTypeName",relationProject.has("relCodeName")?relationProject.get("relCodeName").asText():null);
|
|
@@ -641,4 +683,78 @@ public class RelationReportService implements IRelationReportService {
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 构造 excel 设备数据
|
|
|
+ *
|
|
|
+ * @param equipList 设备数据集合
|
|
|
+ * @param classDefine 类定义信息
|
|
|
+ * @param equipIds 需要剔除的设备ID集合
|
|
|
+ * @param groupCode
|
|
|
+ * @param projectId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private List<EquipmentExcel> exportEquipmentExcel(List<ObjectNode> equipList, Map<String, String> classDefine, Set<String> equipIds, String groupCode, String projectId) {
|
|
|
+ // key: 设备ID,value: 建筑名称
|
|
|
+ Map<String, String> buildTemp = new HashMap<String, String>();
|
|
|
+ // key: 设备ID,value: 楼层名称
|
|
|
+ Map<String, String> floorTemp = new HashMap<String, String>();
|
|
|
+
|
|
|
+ // 建筑名称
|
|
|
+ RequestData requestData = new RequestData();
|
|
|
+ requestData.setGraphCode(GraphCodeEnum.MechInArch.name());
|
|
|
+ requestData.setRelCode(RelCodeEnum.Eq2Bd.name());
|
|
|
+ requestData.setPage(1L);
|
|
|
+ requestData.setSize(10000000L);
|
|
|
+ List<ObjectDigital> buildDigitals = DigitalObjectFacade.queryObjectListByGraphCodeAndRelCode(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, requestData);
|
|
|
+ if (CollectionUtil.isNotEmpty(buildDigitals)) {
|
|
|
+ for (ObjectDigital master : buildDigitals) {
|
|
|
+ List<ObjectDigital> slaveDigitals = master.getRelObjs();
|
|
|
+ ObjectDigital slave = CollectionUtil.isEmpty(slaveDigitals) ? null : slaveDigitals.get(0);
|
|
|
+ if (slave != null) {
|
|
|
+ buildTemp.put(master.getId(), slave.getLocalName());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 楼层名称
|
|
|
+ requestData.setRelCode(RelCodeEnum.Eq2Fl.name());
|
|
|
+ List<ObjectDigital> floorDigitals = DigitalObjectFacade.queryObjectListByGraphCodeAndRelCode(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, requestData);
|
|
|
+ if (CollectionUtil.isNotEmpty(floorDigitals)) {
|
|
|
+ for (ObjectDigital master : floorDigitals) {
|
|
|
+ List<ObjectDigital> slaveDigitals = master.getRelObjs();
|
|
|
+ ObjectDigital slave = CollectionUtil.isEmpty(slaveDigitals) ? null : slaveDigitals.get(0);
|
|
|
+ if (slave != null) {
|
|
|
+ floorTemp.put(master.getId(), slave.getLocalName());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // 结果封装
|
|
|
+ List<EquipmentExcel> excelList = new ArrayList<EquipmentExcel>();
|
|
|
+ for (ObjectNode equip : equipList) {
|
|
|
+ String id = equip.get("id") == null ? null : equip.get("id").asText();
|
|
|
+ if (id != null && !equipIds.contains(id)) {
|
|
|
+ EquipmentExcel excel = new EquipmentExcel();
|
|
|
+ excel.setId(id);
|
|
|
+ excel.setName(equip.get("name") == null ? null : equip.get("name").asText());
|
|
|
+ excel.setLocalId(equip.get("localId") == null ? null : equip.get("localId").asText());
|
|
|
+ excel.setLocalName(equip.get("localName") == null ? null : equip.get("localName").asText());
|
|
|
+
|
|
|
+ String infos = equip.get("infos") == null ? null : equip.get("infos").asText();
|
|
|
+ if (StrUtil.isNotBlank(infos)) {
|
|
|
+ JSONObject parseObject = JSONObject.parseObject(infos);
|
|
|
+ excel.setBimId(parseObject.getString("bimId"));
|
|
|
+ }
|
|
|
+
|
|
|
+ String classCode = equip.get("classCode") == null ? null : equip.get("classCode").asText();
|
|
|
+ excel.setClassCodeName(classCode == null ? null : classDefine.get(classCode));
|
|
|
+
|
|
|
+ excel.setBuildName(buildTemp.get(id));
|
|
|
+ excel.setFloorName(floorTemp.get(id));
|
|
|
+ excel.setModelFileName("T1F10模型文件v18.rvt"); // 这里写死是不对的,需要后续再补充改变
|
|
|
+ excelList.add(excel);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return excelList;
|
|
|
+ }
|
|
|
+
|
|
|
}
|