|
@@ -55,7 +55,7 @@ public class SpaceRelationInfoHandler {
|
|
|
* @return
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
- public JSONObject querySpaceInfo(AdmDCSQueryRequest request) throws Exception {
|
|
|
+ public JSONObject querySpaceInfo(AdmDCSQueryRequest request, ObjectNode criteria) throws Exception {
|
|
|
List<ObjectNode> resultList = null;
|
|
|
String groupCode = AppContext.getContext().getGroupCode();
|
|
|
String projectId = AppContext.getContext().getProjectId();
|
|
@@ -103,11 +103,11 @@ public class SpaceRelationInfoHandler {
|
|
|
}
|
|
|
|
|
|
} else if (StrUtil.isNotBlank(buildingId) && StrUtil.isBlank(floorId) && "isnull".equals(buildingId)) {
|
|
|
- resultList = this.querySpaceInfo(request, groupCode, projectId, zoneTypeList, ascOrder, descOrder);
|
|
|
+ resultList = this.querySpaceInfo(request, criteria, groupCode, projectId, zoneTypeList, ascOrder, descOrder);
|
|
|
|
|
|
} else if (StrUtil.isBlank(buildingId) && StrUtil.isBlank(floorId)) {
|
|
|
// 直接获取所有的空间数据
|
|
|
- List<ObjectNode> spacelist = this.relationReportService.queryObjects(groupCode, projectId, null, zoneTypeList,
|
|
|
+ List<ObjectNode> spacelist = this.relationReportService.queryObjects(criteria, groupCode, projectId, null, zoneTypeList,
|
|
|
Sets.newHashSet(AdmObjectType.SPACE.getIndex()), ascOrder, descOrder);
|
|
|
resultList = this.fillSpaceInfo(spacelist, null, null);
|
|
|
}
|
|
@@ -127,11 +127,11 @@ public class SpaceRelationInfoHandler {
|
|
|
* @param projectId
|
|
|
* @return
|
|
|
*/
|
|
|
- private List<ObjectNode> querySpaceInfo(AdmDCSQueryRequest request, String groupCode, String projectId, Set<String> zoneTypeList,
|
|
|
+ private List<ObjectNode> querySpaceInfo(AdmDCSQueryRequest request, ObjectNode criteria, String groupCode, String projectId, Set<String> zoneTypeList,
|
|
|
Set<String> ascOrder, Set<String> descOrder) {
|
|
|
List<ObjectNode> resultList = null;
|
|
|
// 获取所有的建筑ID集合
|
|
|
- List<ObjectNode> buildList = this.relationReportService.queryObjects(groupCode, projectId, null, null,
|
|
|
+ List<ObjectNode> buildList = this.relationReportService.queryObjects(null, groupCode, projectId, null, null,
|
|
|
Sets.newHashSet(AdmObjectType.BUILDING.getIndex()), null, null);
|
|
|
if (CollectionUtil.isNotEmpty(buildList)) {
|
|
|
for (ObjectNode objectNode : buildList) {
|
|
@@ -146,7 +146,7 @@ public class SpaceRelationInfoHandler {
|
|
|
}
|
|
|
} else {
|
|
|
// 获取所有的空间数据
|
|
|
- List<ObjectNode> spacelist = this.relationReportService.queryObjects(groupCode, projectId, null, zoneTypeList,
|
|
|
+ List<ObjectNode> spacelist = this.relationReportService.queryObjects(criteria, groupCode, projectId, null, zoneTypeList,
|
|
|
Sets.newHashSet(AdmObjectType.SPACE.getIndex()), ascOrder, descOrder);
|
|
|
resultList = this.fillSpaceInfo(spacelist, null, null);
|
|
|
}
|
|
@@ -240,7 +240,7 @@ public class SpaceRelationInfoHandler {
|
|
|
|
|
|
if (CollectionUtil.isNotEmpty(notBuildSpace)){
|
|
|
// 获取所有的对象数据
|
|
|
- resultList = this.relationReportService.queryObjects(groupCode, projectId, notBuildSpace, zoneTypeList,
|
|
|
+ resultList = this.relationReportService.queryObjects(null, groupCode, projectId, notBuildSpace, zoneTypeList,
|
|
|
Sets.newHashSet(AdmObjectType.SPACE.getIndex()), ascOrder, descOrder);
|
|
|
this.fillSpaceInfo(resultList, buildingId, null);
|
|
|
}
|