|
@@ -402,13 +402,11 @@ public class AdmSpaceServiceImpl extends AbstractAdmBaseServiceImpl<AdmSpace> im
|
|
|
if(CollUtil.isNotEmpty(vosR)) {
|
|
|
List<RelationDTO> relationDTOS = new ArrayList<>(vosR.size());
|
|
|
vosR.forEach(admSpace -> {
|
|
|
- JSONObject requestData = new JSONObject();
|
|
|
if (StrUtil.isNotEmpty(admSpace.getBuildingId())) {
|
|
|
relationDTOS.add(new RelationDTO(null, "ArchSubset", "Bd2Sp", null, admSpace.getBuildingId(), admSpace.getId()));
|
|
|
}
|
|
|
if (StrUtil.isNotEmpty(admSpace.getFloorId())) {
|
|
|
relationDTOS.add(new RelationDTO(null, "ArchSubset", "Fl2Sp", null, admSpace.getFloorId(), admSpace.getId()));
|
|
|
-
|
|
|
}
|
|
|
});
|
|
|
if (CollUtil.isNotEmpty(relationDTOS)) {
|
|
@@ -417,36 +415,6 @@ public class AdmSpaceServiceImpl extends AbstractAdmBaseServiceImpl<AdmSpace> im
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- /**
|
|
|
- * TODO 处理关系标记
|
|
|
- */
|
|
|
- private void processRelationType(InstanceUrlParam context, List<AdmSpace> vosR){
|
|
|
- String[] relationTypes = {"sp2sp_SpaceNeighborhood_5", "sp2sp_TrafficNetwork_1", "sp2sp_ConvectionNetwork_1", "sp2sp_RadiationNetwork_1"};
|
|
|
- List<String> listtype = Arrays.asList(relationTypes);
|
|
|
- JSONArray jsonArray = new JSONArray();
|
|
|
- listtype.forEach(type -> {
|
|
|
- JSONObject relationProjectCal = new JSONObject();
|
|
|
- //relationProjectCal.put("");
|
|
|
-
|
|
|
- });
|
|
|
- String relationType = "eq2sp_in";
|
|
|
- /**
|
|
|
- * val relationType = relationTypeProjectservice.select(SFilter.eq("projectId", projectId!!), SFilter.eq("relationType", "eq2sp_in"),SFilter.eq("zoneType", zoneSpace.classCode!!)).entity()
|
|
|
- * if (relationType!=null){
|
|
|
- * relationType.computationalState = 2
|
|
|
- * relationTypeProjectservice.update(relationType)
|
|
|
- * }
|
|
|
- */
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 清楚和空间关联的数据
|
|
|
- */
|
|
|
- private void deleteRelation(InstanceUrlParam context, String relCode, String ObjType){
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
/**
|
|
|
* 转换为目标实体,并增加属性
|
|
|
*/
|