|
@@ -1,14 +1,13 @@
|
|
|
package com.persagy.proxy.adm.strategy.relationdata;
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
-import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
|
|
|
import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
|
-import com.persagy.dmp.basic.model.QueryCriteria;
|
|
|
+import com.persagy.dmp.basic.dto.RequestData;
|
|
|
import com.persagy.dmp.digital.client.DigitalObjectFacade;
|
|
|
import com.persagy.dmp.digital.client.DigitalRelationFacade;
|
|
|
+import com.persagy.dmp.digital.entity.ObjectDigital;
|
|
|
import com.persagy.dmp.digital.entity.ObjectRelation;
|
|
|
import com.persagy.proxy.adm.constant.AdmCommonConstant;
|
|
|
import com.persagy.proxy.adm.constant.AdmRelationTypeEnum;
|
|
@@ -41,67 +40,72 @@ public abstract class AbstractQueryRelationObject implements QueryRelationObject
|
|
|
* @param extraMapping
|
|
|
* @return
|
|
|
*/
|
|
|
- protected List<AdmRelationObject> queryAllObjectInfo(QueryCriteria queryCriteria, String groupCode, String projectId) {
|
|
|
- List<ObjectNode> tempList = new ArrayList<ObjectNode>();
|
|
|
+ protected List<AdmRelationObject> queryAllObjectInfo(RequestData requestData, String groupCode, String projectId) {
|
|
|
+ List<ObjectDigital> masterObjs = new ArrayList<ObjectDigital>();
|
|
|
|
|
|
// 获取数据
|
|
|
- this.queryPageObjectInfo(tempList, queryCriteria, groupCode, projectId, queryCriteria.getPage());
|
|
|
+ this.queryPageObjectInfo(masterObjs, requestData, groupCode, projectId, requestData.getPage());
|
|
|
|
|
|
// 转换中台数据
|
|
|
- return this.handleObjectDigital(tempList, groupCode, projectId);
|
|
|
+ return this.handleObjectDigital(masterObjs, groupCode, projectId);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 分页查询
|
|
|
*
|
|
|
- * @param tempList
|
|
|
- * @param queryCriteria
|
|
|
+ * @param masterObjs
|
|
|
+ * @param requestData
|
|
|
* @param groupCode
|
|
|
* @param projectId
|
|
|
* @param page
|
|
|
- * @param pageSize
|
|
|
*/
|
|
|
- protected void queryPageObjectInfo(List<ObjectNode> tempList, QueryCriteria queryCriteria, String groupCode, String projectId, Long page) {
|
|
|
- queryCriteria.setPage(page);
|
|
|
- List<ObjectNode> objectNodes = DigitalObjectFacade.query(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
|
|
|
- if (CollectionUtil.isEmpty(objectNodes)) {
|
|
|
+ private void queryPageObjectInfo(List<ObjectDigital> tempList, RequestData requestData, String groupCode, String projectId, Long page) {
|
|
|
+ requestData.setPage(page);
|
|
|
+ List<ObjectDigital> objectDigitals = DigitalObjectFacade.queryObjectListByGraphCodeAndRelCode(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, requestData);
|
|
|
+ if (CollectionUtil.isEmpty(objectDigitals)) {
|
|
|
return;
|
|
|
}
|
|
|
- tempList.addAll(objectNodes);
|
|
|
- this.queryPageObjectInfo(tempList, queryCriteria, groupCode, projectId, ++page);
|
|
|
+ tempList.addAll(objectDigitals);
|
|
|
+ this.queryPageObjectInfo(tempList, requestData, groupCode, projectId, ++page);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 处理中台响应数据,转换为ADM所需要的数据
|
|
|
*
|
|
|
- * @param tempList
|
|
|
+ * @param masterObjs
|
|
|
* @param groupCode
|
|
|
* @param projectId
|
|
|
* @return
|
|
|
*/
|
|
|
- private List<AdmRelationObject> handleObjectDigital(List<ObjectNode> tempList, String groupCode, String projectId) {
|
|
|
- // 第一次遍历
|
|
|
- // id -> object
|
|
|
- Map<String, ObjectNode> tempAllMap = new HashMap<String, ObjectNode>(tempList.size());
|
|
|
- for (ObjectNode objectNode : tempList) {
|
|
|
- String id = objectNode.get("id").asText();
|
|
|
- tempAllMap.put(id, objectNode);
|
|
|
+ protected List<AdmRelationObject> handleObjectDigital(List<ObjectDigital> masterObjs, String groupCode, String projectId) {
|
|
|
+ List<AdmRelationObject> result = new ArrayList<AdmRelationObject>();
|
|
|
+ // 遍历所有主对象
|
|
|
+ for (ObjectDigital master : masterObjs) {
|
|
|
+ List<ObjectDigital> slaveObjs = master.getRelObjs();
|
|
|
+ if (CollectionUtil.isEmpty(slaveObjs)) {
|
|
|
+ continue; // 从对象不存在的,不再返回主对象数据
|
|
|
+ }
|
|
|
+
|
|
|
+ // 遍历所有的从对象
|
|
|
+ for (ObjectDigital slave : slaveObjs) {
|
|
|
+ result.add(this.handleObjectDigital(master, slave, groupCode, projectId));
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
- return this.handleObjectDigital(tempAllMap, groupCode, projectId);
|
|
|
+ return result;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
/**
|
|
|
- * 处理中台响应数据,转换为ADM所需要的数据
|
|
|
+ * 处理中台对象,返回前端所需要的
|
|
|
*
|
|
|
+ * @param master
|
|
|
+ * @param slave
|
|
|
* @param groupCode
|
|
|
* @param projectId
|
|
|
- * @param tempAllMap 对象ID -> 对象
|
|
|
- * @return 不允许返回null
|
|
|
+ * @return
|
|
|
*/
|
|
|
- protected abstract List<AdmRelationObject> handleObjectDigital(Map<String, ObjectNode> tempAllMap, String groupCode, String projectId);
|
|
|
-
|
|
|
+ protected abstract AdmRelationObject handleObjectDigital(ObjectDigital master, ObjectDigital slave, String groupCode, String projectId);
|
|
|
+
|
|
|
/**
|
|
|
* 封装响应数据,具体的传值,请仔细侦查,这里仅返回共有字段,特殊字段,自行赋值
|
|
|
*
|
|
@@ -111,36 +115,38 @@ public abstract class AbstractQueryRelationObject implements QueryRelationObject
|
|
|
* @param slaveType
|
|
|
* @return
|
|
|
*/
|
|
|
- protected AdmRelationObject convertObject(ObjectNode master, String masterType, ObjectNode slave, String slaveType) {
|
|
|
+ protected AdmRelationObject convertObject(ObjectDigital master, String masterType, ObjectDigital slave, String slaveType) {
|
|
|
AdmRelationObject relationObject = new AdmRelationObject();
|
|
|
|
|
|
// ID
|
|
|
- String masterId = master.get("id") == null ? AdmCommonConstant.EMPTY : master.get("id").asText();
|
|
|
+ String masterId = master.getId();
|
|
|
relationObject.setMasterCode(masterId);
|
|
|
relationObject.setMasterId(masterId);
|
|
|
// 图纸编码
|
|
|
- relationObject.setMasterCadId(master.get("cADID") == null ? AdmCommonConstant.EMPTY : master.get("cADID").asText());
|
|
|
+ ObjectNode masterInfos = master.getInfos();
|
|
|
+ relationObject.setMasterCadId(masterInfos.get("cADID") == null ? AdmCommonConstant.EMPTY : masterInfos.get("cADID").asText());
|
|
|
// 名称
|
|
|
- relationObject.setMasterName(master.get("name") == null ? AdmCommonConstant.EMPTY : master.get("name").asText());
|
|
|
+ relationObject.setMasterName(master.getName());
|
|
|
// 本地ID
|
|
|
- relationObject.setMasterLocalId(master.get("localId") == null ? AdmCommonConstant.EMPTY : master.get("localId").asText());
|
|
|
+ relationObject.setMasterLocalId(master.getLocalId());
|
|
|
// 本地名称
|
|
|
- relationObject.setMasterLocalName(master.get("localName") == null ? AdmCommonConstant.EMPTY : master.get("localName").asText());
|
|
|
+ relationObject.setMasterLocalName(master.getLocalName());
|
|
|
// 类型
|
|
|
relationObject.setMasterType(masterType);
|
|
|
|
|
|
// ID
|
|
|
- String slaveId = slave.get("id") == null ? AdmCommonConstant.EMPTY : slave.get("id").asText();
|
|
|
+ String slaveId = slave.getId();
|
|
|
relationObject.setSlaveCode(slaveId);
|
|
|
relationObject.setSlaveId(slaveId);
|
|
|
// 图纸编码
|
|
|
- relationObject.setSlaveCadId(master.get("cADID") == null ? AdmCommonConstant.EMPTY : master.get("cADID").asText());
|
|
|
+ ObjectNode slaveInfos = slave.getInfos();
|
|
|
+ relationObject.setSlaveCadId(slaveInfos.get("cADID") == null ? AdmCommonConstant.EMPTY : slaveInfos.get("cADID").asText());
|
|
|
// 名称
|
|
|
- relationObject.setSlaveName(slave.get("name") == null ? AdmCommonConstant.EMPTY : slave.get("name").asText());
|
|
|
+ relationObject.setSlaveName(slave.getName());
|
|
|
// 本地ID
|
|
|
- relationObject.setSlaveLocalId(slave.get("localId") == null ? AdmCommonConstant.EMPTY : slave.get("localId").asText());
|
|
|
+ relationObject.setSlaveLocalId(slave.getLocalId());
|
|
|
// 本地名称
|
|
|
- relationObject.setSlaveLocalName(slave.get("localName") == null ? AdmCommonConstant.EMPTY : slave.get("localName").asText());
|
|
|
+ relationObject.setSlaveLocalName(slave.getLocalName());
|
|
|
// 类型
|
|
|
relationObject.setSlaveType(slaveType);
|
|
|
|