|
@@ -675,15 +675,26 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
|
|
|
sQueryResponse.result = SResponseType.success
|
|
|
if (!request.equipTypes.isNullOrEmpty()&&!request.zoneTypes.isNullOrEmpty()&&!request.funcTypes.isNullOrEmpty()) {
|
|
|
|
|
|
- val spInFlList = spInFlService.select(SFilter.eq("projectId", Opt.projectId!!), SFilter.eq("buildingId", request.buildingId!!),
|
|
|
+ if (request.spaceIds.isNullOrEmpty()) {
|
|
|
+ request.spaceIds = ArrayList()
|
|
|
+ val spInFlList = spInFlService.select(SFilter.eq("projectId", Opt.projectId!!), SFilter.eq("buildingId", request.buildingId!!),
|
|
|
SFilter.eq("floorId", request.floorId!!), SFilter.inList("objectType", request.zoneTypes!!)).exec()
|
|
|
- val spIds = ArrayList<String>()
|
|
|
- if (!spInFlList.isNullOrEmpty()){
|
|
|
- for ( sp in spInFlList){
|
|
|
- spIds!!.add(sp.spaceId!!)
|
|
|
+ val spIds = ArrayList<String>()
|
|
|
+ if (!spInFlList.isNullOrEmpty()){
|
|
|
+ for ( sp in spInFlList){
|
|
|
+ spIds!!.add(sp.spaceId!!)
|
|
|
+ }
|
|
|
+ val spaceList = spaceService.select(SFilter.eq("projectId", Opt.projectId!!), SFilter.inList("roomFuncType", request.funcTypes!!),
|
|
|
+ SFilter.inList("id", spIds!!)).exec()
|
|
|
+ if (!spaceList.isNullOrEmpty()) {
|
|
|
+ for (space in spaceList) {
|
|
|
+ request.spaceIds!!.add(space.id!!)
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
+ } else {
|
|
|
val spaceList = spaceService.select(SFilter.eq("projectId", Opt.projectId!!), SFilter.inList("roomFuncType", request.funcTypes!!),
|
|
|
- SFilter.inList("id", request.spaceIds!!)).exec()
|
|
|
+ SFilter.inList("id", request.spaceIds!!)).exec()
|
|
|
if (!spaceList.isNullOrEmpty()) {
|
|
|
for (space in spaceList) {
|
|
|
request.spaceIds!!.add(space.id!!)
|
|
@@ -691,9 +702,6 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if (request.spaceIds.isNullOrEmpty()){
|
|
|
- sQueryResponse.content = ArrayList()
|
|
|
- }else {
|
|
|
val rEq2SpList = rEq2SpService.select(SFilter.eq("projectId", Opt.projectId!!), SFilter.inList("id2", request.spaceIds!!)).exec()
|
|
|
if (!rEq2SpList.isNullOrEmpty()) {
|
|
|
val setIds = HashSet<String>()
|
|
@@ -707,14 +715,17 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
|
|
|
} else {
|
|
|
sQueryResponse.content = ArrayList()
|
|
|
}
|
|
|
- }
|
|
|
+
|
|
|
} else if (!request.equipTypes.isNullOrEmpty()&&!request.zoneTypes.isNullOrEmpty()){
|
|
|
|
|
|
- val spInFlList = spInFlService.select(SFilter.eq("projectId", Opt.projectId!!), SFilter.eq("buildingId", request.buildingId!!),
|
|
|
+ if (request.spaceIds.isNullOrEmpty()){
|
|
|
+
|
|
|
+ val spInFlList = spInFlService.select(SFilter.eq("projectId", Opt.projectId!!), SFilter.eq("buildingId", request.buildingId!!),
|
|
|
SFilter.eq("floorId", request.floorId!!), SFilter.inList("objectType", request.zoneTypes!!)).exec()
|
|
|
- if (!spInFlList.isNullOrEmpty()){
|
|
|
- for ( sp in spInFlList){
|
|
|
- request.spaceIds!!.add(sp.spaceId!!)
|
|
|
+ if (!spInFlList.isNullOrEmpty()){
|
|
|
+ for ( sp in spInFlList){
|
|
|
+ request.spaceIds!!.add(sp.spaceId!!)
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|