|
@@ -411,10 +411,12 @@ object GeneralSystemService : Service<GeneralSystem>(SMybatisDao(GeneralSystem::
|
|
|
for (obj in objList){
|
|
|
idList.add(obj.sysId!!)
|
|
|
}
|
|
|
+ }else{
|
|
|
+ idList.add("")
|
|
|
}
|
|
|
- if (idList.size>0) {
|
|
|
- list.add(SFilter.inList("id",idList.toList()))
|
|
|
- }
|
|
|
+
|
|
|
+ list.add(SFilter.inList("id",idList.toList()))
|
|
|
+
|
|
|
}else if(!floorId.isNullOrEmpty()&&floorId.equals("1")&&!buildingId.isNullOrEmpty()&&!buildingId.equals("1")){
|
|
|
/** 楼层id为空,建筑id不为空且不为1 ---> 系统和建筑关系表 取系统id */
|
|
|
/** 未明确楼层的 */
|
|
@@ -436,10 +438,12 @@ object GeneralSystemService : Service<GeneralSystem>(SMybatisDao(GeneralSystem::
|
|
|
for (obj in objList) {
|
|
|
idList.add(obj.sysId!!)
|
|
|
}
|
|
|
+ }else{
|
|
|
+ idList.add("")
|
|
|
}
|
|
|
- if (idList.size>0) {
|
|
|
- list.add(SFilter.inList("id", idList.toList()))
|
|
|
- }
|
|
|
+
|
|
|
+ list.add(SFilter.inList("id", idList.toList()))
|
|
|
+
|
|
|
}else if(floorId.isNullOrEmpty()&&!buildingId.isNullOrEmpty()&&buildingId.equals("1")){
|
|
|
/** 楼层id为1,建筑id为1 ---> 系统id不在(系统和楼层关系表 取系统id 系统和建筑关系表 取系统id)之内*/
|
|
|
val buildingList = syinBdService.select(SFilter.eq("projectId", projectId)).distinct().projection("sysId").exec()
|
|
@@ -447,26 +451,26 @@ object GeneralSystemService : Service<GeneralSystem>(SMybatisDao(GeneralSystem::
|
|
|
for (building in buildingList) {
|
|
|
idList.add(building.sysId!!)
|
|
|
}
|
|
|
- list.add(SFilter.not(SFilter.inList("id", idList.toList())))
|
|
|
-
|
|
|
+ }else{
|
|
|
+ idList.add("")
|
|
|
}
|
|
|
- }
|
|
|
-// else if(!floorId.isNullOrEmpty()&&!floorId.equals("1")&&!buildingId.isNullOrEmpty()&&!buildingId.equals("1")){
|
|
|
-// /** 楼层id不为空,建筑id不为空 ---> 系统和楼层关系表 取系统id 将建筑id作为条件 */
|
|
|
+ list.add(SFilter.not(SFilter.inList("id", idList.toList())))
|
|
|
+ } else if(floorId.isNullOrEmpty()&&!buildingId.isNullOrEmpty()&&!buildingId.equals("1")){
|
|
|
+ /** 楼层id不为空,建筑id不为空 ---> 系统和楼层关系表 取系统id 将建筑id作为条件 */
|
|
|
+ val buildingList = syinBdService.select(SFilter.eq("projectId", projectId),SFilter.eq("buildingId", buildingId)).distinct().projection("sysId").exec()
|
|
|
// val objList = syinFlService.select(SFilter.eq("floorId", floorId),SFilter.eq("buildingId", buildingId)).distinct().projection("sysId").exec()
|
|
|
-// if(!objList.isNullOrEmpty()) {
|
|
|
-// for (obj in objList) {
|
|
|
-// idList.add(obj.sysId!!)
|
|
|
-// }
|
|
|
-// }else{
|
|
|
-// idList.add("")
|
|
|
-// }
|
|
|
-//
|
|
|
-// list.add(SFilter.inList("id", idList.toList()))
|
|
|
-// }
|
|
|
-// else if(floorId.isNullOrEmpty()&&buildingId.isNullOrEmpty()){
|
|
|
-// /** 楼层id为空,建筑id为空 ---> 查询所有 */
|
|
|
-// }
|
|
|
+ if(!buildingList.isNullOrEmpty()) {
|
|
|
+ for (obj in buildingList) {
|
|
|
+ idList.add(obj.sysId!!)
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ idList.add("")
|
|
|
+ }
|
|
|
+ list.add(SFilter.inList("id", idList.toList()))
|
|
|
+ }
|
|
|
+ else if(floorId.isNullOrEmpty()&&buildingId.isNullOrEmpty()){
|
|
|
+ /** 楼层id为空,建筑id为空 ---> 查询所有 */
|
|
|
+ }
|
|
|
// logger.debug("id01= ${list.toJson()}")
|
|
|
val pageInfo = pageQuery(request, list)
|
|
|
for(system in pageInfo.content!!){
|