|
@@ -10,6 +10,7 @@ import org.springframework.stereotype.Component;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONArray;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.baomidou.mybatisplus.core.metadata.OrderItem;
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
|
import com.google.common.collect.Lists;
|
|
@@ -55,25 +56,11 @@ public class SpaceRelationInfoHandler {
|
|
|
* @return
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
- public JSONObject querySpaceInfo(AdmDCSQueryRequest request, ObjectNode criteria) throws Exception {
|
|
|
+ public JSONObject querySpaceInfo(AdmDCSQueryRequest request, ObjectNode criteria, List<OrderItem> orderItem) throws Exception {
|
|
|
List<ObjectNode> resultList = null;
|
|
|
String groupCode = AppContext.getContext().getGroupCode();
|
|
|
String projectId = AppContext.getContext().getProjectId();
|
|
|
|
|
|
- Set<String> ascOrder = new HashSet<String>();
|
|
|
- Set<String> descOrder = new HashSet<String>();
|
|
|
- String orders = request.getOrders();
|
|
|
- if (StrUtil.isNotBlank(orders)) {
|
|
|
- String[] split = orders.split(",");
|
|
|
- for (String order : split) {
|
|
|
- if (order.endsWith(" desc")) {
|
|
|
- descOrder.add(order.split(" ")[0]);
|
|
|
- } else {
|
|
|
- ascOrder.add(order.split(" ")[0]);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
JSONObject result = new JSONObject();
|
|
|
result.put("result", "success");
|
|
|
|
|
@@ -87,28 +74,29 @@ public class SpaceRelationInfoHandler {
|
|
|
String graphAndRelKey = GraphCodeEnum.ArchForArch.name() + AdmCommonConstant.UNDERLINE + RelCodeEnum.Sp2Fl.name();
|
|
|
List<ObjectDigital> allRelations = this.relationObjectContext.queryAllRelations(groupCode, projectId, graphAndRelKey, null, Sets.newHashSet(buildingId));
|
|
|
if (CollectionUtil.isNotEmpty(allRelations)) {
|
|
|
- resultList = this.transferSpaceInfo(allRelations, buildingId);
|
|
|
+ resultList = this.transferSpaceInfo(allRelations, buildingId, floorId);
|
|
|
}
|
|
|
|
|
|
} else if (StrUtil.isNotBlank(buildingId) && StrUtil.isNotBlank(floorId) && "isnull".equals(floorId)) {
|
|
|
// 当建筑ID不为空、楼层ID为空时
|
|
|
- this.querySpaceInfo(request, groupCode, projectId, buildingId, zoneTypeList, ascOrder, descOrder);
|
|
|
+ this.querySpaceInfo(request, groupCode, projectId, buildingId, zoneTypeList, orderItem);
|
|
|
|
|
|
} else if (StrUtil.isNotBlank(buildingId) && StrUtil.isBlank(floorId) && !"isnull".equals(buildingId)) {
|
|
|
// 当建筑ID不为空、楼层ID为空时
|
|
|
String graphAndRelKey = GraphCodeEnum.ArchForArch.name() + AdmCommonConstant.UNDERLINE + RelCodeEnum.Sp2Bd.name();
|
|
|
List<ObjectDigital> allRelations = this.relationObjectContext.queryAllRelations(groupCode, projectId, graphAndRelKey, null, Sets.newHashSet(buildingId));
|
|
|
if (CollectionUtil.isNotEmpty(allRelations)) {
|
|
|
- resultList = this.transferSpaceInfo(allRelations, buildingId);
|
|
|
+ resultList = this.transferSpaceInfo(allRelations, buildingId, null);
|
|
|
}
|
|
|
|
|
|
} else if (StrUtil.isNotBlank(buildingId) && StrUtil.isBlank(floorId) && "isnull".equals(buildingId)) {
|
|
|
- resultList = this.querySpaceInfo(request, criteria, groupCode, projectId, zoneTypeList, ascOrder, descOrder);
|
|
|
+ // 当建筑ID为空、楼层ID为空时
|
|
|
+ resultList = this.querySpaceInfo(request, criteria, groupCode, projectId, zoneTypeList, orderItem);
|
|
|
|
|
|
} else if (StrUtil.isBlank(buildingId) && StrUtil.isBlank(floorId)) {
|
|
|
// 直接获取所有的空间数据
|
|
|
List<ObjectNode> spacelist = this.relationReportService.queryObjects(criteria, groupCode, projectId, null, zoneTypeList,
|
|
|
- Sets.newHashSet(AdmObjectType.SPACE.getIndex()), ascOrder, descOrder);
|
|
|
+ Sets.newHashSet(AdmObjectType.SPACE.getIndex()), orderItem);
|
|
|
resultList = this.fillSpaceInfo(spacelist, null, null);
|
|
|
}
|
|
|
|
|
@@ -118,6 +106,67 @@ public class SpaceRelationInfoHandler {
|
|
|
result.put("content", CollectionUtil.isEmpty(resultList) ? Lists.newArrayList() : resultList);
|
|
|
return result;
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取空间信息,当楼层ID为空,建筑ID不为空时
|
|
|
+ *
|
|
|
+ * @param request
|
|
|
+ * @param criteria
|
|
|
+ * @param groupCode
|
|
|
+ * @param projectId
|
|
|
+ * @param buildingId
|
|
|
+ * @param zoneTypeList
|
|
|
+ * @param orderItem
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private List<ObjectNode> querySpaceInfo(AdmDCSQueryRequest request, String groupCode, String projectId, String buildingId,
|
|
|
+ Set<String> zoneTypeList, List<OrderItem> orderItem) {
|
|
|
+ List<ObjectNode> resultList = null;
|
|
|
+ Set<String> spaceIds = new HashSet<String>();
|
|
|
+ Set<String> floorIds = new HashSet<String>();
|
|
|
+ Set<String> notBuildSpace = new HashSet<String>();
|
|
|
+ // 获取所有的楼层ID集合
|
|
|
+ List<ObjectRelation> relationObjects = this.queryObjectRelation(groupCode, projectId, GraphCodeEnum.ArchForArch.name(), RelCodeEnum.Fl2Bd.name(), null, Sets.newHashSet(buildingId));
|
|
|
+
|
|
|
+ // 获取所有楼层下的空间数据
|
|
|
+ if (CollectionUtil.isNotEmpty(relationObjects)) {
|
|
|
+ for (ObjectRelation objectRelation : relationObjects) {
|
|
|
+ floorIds.add(objectRelation.getObjFrom());
|
|
|
+ }
|
|
|
+
|
|
|
+ // 根据楼层ID,获取所有的空间ID
|
|
|
+ relationObjects = this.queryObjectRelation(groupCode, projectId, GraphCodeEnum.ArchForArch.name(), RelCodeEnum.Sp2Fl.name(), null, floorIds);
|
|
|
+ for (ObjectRelation objectRelation : relationObjects) {
|
|
|
+ spaceIds.add(objectRelation.getObjFrom());
|
|
|
+ }
|
|
|
+ // 再获取此建筑下,不是这些空间的空间
|
|
|
+ relationObjects = this.queryObjectRelation(groupCode, projectId, GraphCodeEnum.ArchForArch.name(), RelCodeEnum.Sp2Bd.name(), null, Sets.newHashSet(buildingId));
|
|
|
+ for (ObjectRelation objectRelation : relationObjects) {
|
|
|
+ if (!spaceIds.contains(objectRelation.getObjFrom())) {
|
|
|
+ notBuildSpace.add(objectRelation.getObjFrom());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (CollectionUtil.isNotEmpty(notBuildSpace)){
|
|
|
+ // 获取所有的对象数据
|
|
|
+ resultList = this.relationReportService.queryObjects(null, groupCode, projectId, notBuildSpace, zoneTypeList,
|
|
|
+ Sets.newHashSet(AdmObjectType.SPACE.getIndex()), orderItem);
|
|
|
+ this.fillSpaceInfo(resultList, buildingId, null);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ // 获取所有的空间数据
|
|
|
+ String graphAndRelKey = GraphCodeEnum.MechInArch.name() + AdmCommonConstant.UNDERLINE + RelCodeEnum.Eq2Fl.name();
|
|
|
+ List<ObjectDigital> allRelations = this.relationObjectContext.queryAllRelations(groupCode, projectId, graphAndRelKey, null, Sets.newHashSet(buildingId));
|
|
|
+ if (CollectionUtil.isNotEmpty(allRelations)) {
|
|
|
+ resultList = this.transferSpaceInfo(allRelations, buildingId, null);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ spaceIds.clear();
|
|
|
+ notBuildSpace.clear();
|
|
|
+ return resultList;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 获取空间信息,当楼层ID为空,建筑ID为空时
|
|
@@ -127,12 +176,12 @@ public class SpaceRelationInfoHandler {
|
|
|
* @param projectId
|
|
|
* @return
|
|
|
*/
|
|
|
- private List<ObjectNode> querySpaceInfo(AdmDCSQueryRequest request, ObjectNode criteria, String groupCode, String projectId, Set<String> zoneTypeList,
|
|
|
- Set<String> ascOrder, Set<String> descOrder) {
|
|
|
+ private List<ObjectNode> querySpaceInfo(AdmDCSQueryRequest request, ObjectNode criteria, String groupCode, String projectId,
|
|
|
+ Set<String> zoneTypeList, List<OrderItem> orderItem) {
|
|
|
List<ObjectNode> resultList = null;
|
|
|
// 获取所有的建筑ID集合
|
|
|
List<ObjectNode> buildList = this.relationReportService.queryObjects(null, groupCode, projectId, null, null,
|
|
|
- Sets.newHashSet(AdmObjectType.BUILDING.getIndex()), null, null);
|
|
|
+ Sets.newHashSet(AdmObjectType.BUILDING.getIndex()), orderItem);
|
|
|
if (CollectionUtil.isNotEmpty(buildList)) {
|
|
|
for (ObjectNode objectNode : buildList) {
|
|
|
String buildingId = objectNode.get("id").asText();
|
|
@@ -141,13 +190,13 @@ public class SpaceRelationInfoHandler {
|
|
|
List<ObjectDigital> allRelations = this.relationObjectContext.queryAllRelations(groupCode, projectId, graphAndRelKey, null, Sets.newHashSet(buildingId));
|
|
|
if (CollectionUtil.isNotEmpty(allRelations)) {
|
|
|
// 获取所有的对象数据
|
|
|
- resultList = this.transferSpaceInfo(allRelations, buildingId);
|
|
|
+ resultList = this.transferSpaceInfo(allRelations, buildingId, null);
|
|
|
}
|
|
|
}
|
|
|
} else {
|
|
|
// 获取所有的空间数据
|
|
|
List<ObjectNode> spacelist = this.relationReportService.queryObjects(criteria, groupCode, projectId, null, zoneTypeList,
|
|
|
- Sets.newHashSet(AdmObjectType.SPACE.getIndex()), ascOrder, descOrder);
|
|
|
+ Sets.newHashSet(AdmObjectType.SPACE.getIndex()), orderItem);
|
|
|
resultList = this.fillSpaceInfo(spacelist, null, null);
|
|
|
}
|
|
|
|
|
@@ -159,9 +208,10 @@ public class SpaceRelationInfoHandler {
|
|
|
*
|
|
|
* @param allRelations
|
|
|
* @param buildingId
|
|
|
+ * @param floorId
|
|
|
* @return
|
|
|
*/
|
|
|
- private List<ObjectNode> transferSpaceInfo(List<ObjectDigital> allRelations, String buildingId) {
|
|
|
+ private List<ObjectNode> transferSpaceInfo(List<ObjectDigital> allRelations, String buildingId, String floorId) {
|
|
|
if (CollectionUtil.isEmpty(allRelations)) {
|
|
|
return null;
|
|
|
}
|
|
@@ -184,7 +234,7 @@ public class SpaceRelationInfoHandler {
|
|
|
result.put("name", objectDigital.getName());
|
|
|
result.putPOJO("infos", new JSONArray());
|
|
|
result.putPOJO("statistics", new JSONArray());
|
|
|
- result.put("state", objectDigital.getValid());
|
|
|
+ result.put("state", (objectDigital.getValid() == null || objectDigital.getValid() == 1) ? 0 : 1);
|
|
|
result.put("createTime", objectDigital.getCreationTime().toString("yyyy-MM-dd HH:mm:ss"));
|
|
|
|
|
|
resultList.add(result);
|
|
@@ -198,67 +248,6 @@ public class SpaceRelationInfoHandler {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 获取空间信息,当楼层ID为空,建筑ID为空时
|
|
|
- *
|
|
|
- * @param request
|
|
|
- * @param groupCode
|
|
|
- * @param projectId
|
|
|
- * @param ascOrder
|
|
|
- * @param descOrder
|
|
|
- * @param buildingId
|
|
|
- * @param spaceIds
|
|
|
- * @param floorIds
|
|
|
- * @param zoneTypeList
|
|
|
- */
|
|
|
- private List<ObjectNode> querySpaceInfo(AdmDCSQueryRequest request, String groupCode, String projectId, String buildingId,
|
|
|
- Set<String> zoneTypeList, Set<String> ascOrder, Set<String> descOrder) {
|
|
|
- List<ObjectNode> resultList = null;
|
|
|
- Set<String> spaceIds = new HashSet<String>();
|
|
|
- Set<String> floorIds = new HashSet<String>();
|
|
|
- Set<String> notBuildSpace = new HashSet<String>();
|
|
|
- // 获取所有的楼层ID集合
|
|
|
- List<ObjectRelation> relationObjects = this.queryObjectRelation(groupCode, projectId, GraphCodeEnum.ArchForArch.name(), RelCodeEnum.Fl2Bd.name(), null, Sets.newHashSet(buildingId));
|
|
|
-
|
|
|
- // 获取所有楼层下的空间数据
|
|
|
- if (CollectionUtil.isNotEmpty(relationObjects)) {
|
|
|
- for (ObjectRelation objectRelation : relationObjects) {
|
|
|
- floorIds.add(objectRelation.getObjFrom());
|
|
|
- }
|
|
|
-
|
|
|
- // 根据楼层ID,获取所有的空间ID
|
|
|
- relationObjects = this.queryObjectRelation(groupCode, projectId, GraphCodeEnum.ArchForArch.name(), RelCodeEnum.Sp2Fl.name(), null, floorIds);
|
|
|
- for (ObjectRelation objectRelation : relationObjects) {
|
|
|
- spaceIds.add(objectRelation.getObjFrom());
|
|
|
- }
|
|
|
- // 再获取此建筑下,不是这些空间的空间
|
|
|
- relationObjects = this.queryObjectRelation(groupCode, projectId, GraphCodeEnum.ArchForArch.name(), RelCodeEnum.Sp2Bd.name(), null, Sets.newHashSet(buildingId));
|
|
|
- for (ObjectRelation objectRelation : relationObjects) {
|
|
|
- if (!spaceIds.contains(objectRelation.getObjFrom())) {
|
|
|
- notBuildSpace.add(objectRelation.getObjFrom());
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (CollectionUtil.isNotEmpty(notBuildSpace)){
|
|
|
- // 获取所有的对象数据
|
|
|
- resultList = this.relationReportService.queryObjects(null, groupCode, projectId, notBuildSpace, zoneTypeList,
|
|
|
- Sets.newHashSet(AdmObjectType.SPACE.getIndex()), ascOrder, descOrder);
|
|
|
- this.fillSpaceInfo(resultList, buildingId, null);
|
|
|
- }
|
|
|
- } else {
|
|
|
- // 获取所有的空间数据
|
|
|
- String graphAndRelKey = GraphCodeEnum.MechInArch.name() + AdmCommonConstant.UNDERLINE + RelCodeEnum.Eq2Fl.name();
|
|
|
- List<ObjectDigital> allRelations = this.relationObjectContext.queryAllRelations(groupCode, projectId, graphAndRelKey, null, Sets.newHashSet(buildingId));
|
|
|
- if (CollectionUtil.isNotEmpty(allRelations)) {
|
|
|
- resultList = this.transferSpaceInfo(allRelations, buildingId);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- spaceIds.clear();
|
|
|
- notBuildSpace.clear();
|
|
|
- return resultList;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
* 数据填充
|
|
|
*
|
|
|
* @param queryObjects
|
|
@@ -280,7 +269,7 @@ public class SpaceRelationInfoHandler {
|
|
|
|
|
|
objectNode.putPOJO("infos", new JSONArray());
|
|
|
objectNode.putPOJO("statistics", new JSONArray());
|
|
|
- objectNode.put("state", objectNode.has("valid") ? objectNode.get("valid").asInt(1) : 1);
|
|
|
+ objectNode.put("state", objectNode.has("valid") ? (objectNode.get("valid").asInt(0) == 1 ? 0 : 1) : 0);
|
|
|
}
|
|
|
|
|
|
return queryObjects;
|