|
@@ -90,13 +90,13 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
|
|
|
* @param spaceIdList 空间id列表
|
|
|
* @param spacrType 空间类型
|
|
|
* */
|
|
|
- fun equipProperty(category:String, request: SQueryRequest, spaceIdList: ArrayList<String>, spacrType: String?):SQueryResponse<Equipment> {
|
|
|
+ fun equipProperty(category:String, request: SQueryRequest, spaceIdList: ArrayList<String>?, spacrType: String?):SQueryResponse<Equipment> {
|
|
|
|
|
|
return try {
|
|
|
/** 设备类型或设备族类型 */
|
|
|
val rEq2SpService = SBaseService(SMybatisDao(REq2Sp::class.java))
|
|
|
val equipFamilyService = SBaseService(SMybatisDao(EquipFamily::class.java))
|
|
|
- val projectId = SPageContext.getHeader("ProjectId")
|
|
|
+ val projectId = SPageContext.getHeader("projectId")
|
|
|
if (spaceIdList!=null&&spaceIdList.size>0){
|
|
|
logger.debug("空间*************** ")
|
|
|
/** 获取到空间关联的设备 */
|
|
@@ -108,7 +108,7 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
|
|
|
}
|
|
|
val sQueryResponse = SQueryResponse<Equipment>()
|
|
|
|
|
|
- val equipList = select(SFilter.inList("EquipID", setId.toList())).exec()
|
|
|
+ val equipList = select(SFilter.inList("id", setId.toList())).exec()
|
|
|
sQueryResponse.total = equipList.size.toLong()
|
|
|
val iterator = equipList.iterator()
|
|
|
while (iterator.hasNext()) {
|
|
@@ -129,7 +129,7 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
|
|
|
// }else if (!equipment.buildingId.isNullOrEmpty()&&equipment.floorId.isNullOrEmpty()){
|
|
|
// propertyList = PropertyService.select(SFilter.eq("projectId", projectId!!),SFilter.eq("buildingId", equipment.buildingId!!),SFilter.isNull("EquipmentId"), SFilter.eq("Family", equipFamily!!.family!!)).exec()
|
|
|
// }else{
|
|
|
- propertyList = PropertyService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("Family", equipFamily!!.family!!),SFilter.isNull("EquipmentId")).exec()
|
|
|
+ propertyList = PropertyService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("family", equipFamily!!.family!!),SFilter.isNull("equipId")).exec()
|
|
|
// }
|
|
|
logger.debug("category = ${equipment.classCode}")
|
|
|
logger.debug("Family = ${equipFamily.family}")
|
|
@@ -178,8 +178,8 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
|
|
|
setId.add(rEqInSpBase.id1!!)
|
|
|
}
|
|
|
|
|
|
- val equipList = select(SFilter.eq("projectId", projectId!!), SFilter.eq("category", category), SFilter.eq("buildingId", buildingId!!),
|
|
|
- SFilter.eq("floorId", floorId!!), SFilter.not(SFilter.inList("equipID", setId.toList()))).exec()
|
|
|
+ val equipList = select(SFilter.eq("projectId", projectId!!), SFilter.eq("classCode", category), SFilter.eq("buildingId", buildingId!!),
|
|
|
+ SFilter.eq("floorId", floorId!!), SFilter.not(SFilter.inList("id", setId.toList()))).exec()
|
|
|
if (!equipList.isEmpty()){
|
|
|
val sQueryResponse = SQueryResponse<Equipment>()
|
|
|
|
|
@@ -190,11 +190,11 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
|
|
|
val equipFamily = equipFamilyService.select(SFilter.eq("equipCode", equipment.classCode!!)).entity()
|
|
|
var propertyList = ArrayList<Property>()
|
|
|
// if (!equipment.buildingId.isNullOrEmpty()&&!equipment.floorId.isNullOrEmpty()){
|
|
|
- propertyList = PropertyService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("floorId", equipment.floorId!!), SFilter.isNull("EquipmentId"), SFilter.eq("Family", equipFamily!!.family!!)).exec()
|
|
|
+ propertyList = PropertyService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("floorId", equipment.floorId!!), SFilter.isNull("equipId"), SFilter.eq("family", equipFamily!!.family!!)).exec()
|
|
|
// }else if (!equipment.buildingId.isNullOrEmpty()&&equipment.floorId.isNullOrEmpty()){
|
|
|
// propertyList = PropertyService.select(SFilter.eq("projectId", projectId!!),SFilter.eq("buildingId", equipment.buildingId!!),SFilter.isNull("EquipmentId"), SFilter.eq("Family", equipFamily!!.family!!)).exec()
|
|
|
// }else{
|
|
|
- propertyList = PropertyService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("Family", equipFamily!!.family!!),SFilter.isNull("EquipmentId")).exec()
|
|
|
+ propertyList = PropertyService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("family", equipFamily!!.family!!),SFilter.isNull("equipId")).exec()
|
|
|
// }
|
|
|
if (propertyList.size>0){
|
|
|
/** 计算匹配资产 */
|
|
@@ -216,13 +216,13 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
|
|
|
if (!equip.buildingId.isNullOrEmpty()){
|
|
|
|
|
|
|
|
|
- val building = buildingService.select(SFilter.eq("BuildID", equip.buildingId!!)).entity()
|
|
|
+ val building = buildingService.select(SFilter.eq("id", equip.buildingId!!)).entity()
|
|
|
if (building!=null){
|
|
|
equip.building = building
|
|
|
}
|
|
|
}
|
|
|
if (!equip.floorId.isNullOrEmpty()){
|
|
|
- val floor = floorService.select(SFilter.eq("FloorID", equip.floorId!!)).entity()
|
|
|
+ val floor = floorService.select(SFilter.eq("id", equip.floorId!!)).entity()
|
|
|
if (floor!=null){
|
|
|
equip.floor = floor
|
|
|
}
|
|
@@ -243,13 +243,13 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
|
|
|
if (!property.buildingId.isNullOrEmpty()){
|
|
|
|
|
|
|
|
|
- val building = buildingService.select(SFilter.eq("BuildID", property.buildingId!!)).entity()
|
|
|
+ val building = buildingService.select(SFilter.eq("id", property.buildingId!!)).entity()
|
|
|
if (building!=null){
|
|
|
property.building = building
|
|
|
}
|
|
|
}
|
|
|
if (!property.floorId.isNullOrEmpty()){
|
|
|
- val floor = floorService.select(SFilter.eq("FloorID", property.floorId!!)).entity()
|
|
|
+ val floor = floorService.select(SFilter.eq("id", property.floorId!!)).entity()
|
|
|
if (floor!=null){
|
|
|
property.floor = floor
|
|
|
}
|
|
@@ -312,7 +312,7 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
|
|
|
}
|
|
|
val sQueryResponse = SQueryResponse<Equipment>()
|
|
|
|
|
|
- val equipList = select(SFilter.inList("EquipID", setId.toList())).exec()
|
|
|
+ val equipList = select(SFilter.inList("id", setId.toList())).exec()
|
|
|
sQueryResponse.total = equipList.size.toLong()
|
|
|
val iterator = equipList.iterator()
|
|
|
while (iterator.hasNext()) {
|
|
@@ -333,7 +333,7 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
|
|
|
// }else if (!equipment.buildingId.isNullOrEmpty()&&equipment.floorId.isNullOrEmpty()){
|
|
|
// propertyList = PropertyService.select(SFilter.eq("projectId", projectId!!),SFilter.eq("buildingId", equipment.buildingId!!),SFilter.isNull("EquipmentId"), SFilter.eq("Family", equipFamily!!.family!!)).exec()
|
|
|
// }else{
|
|
|
- propertyList = PropertyService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("Family", equipFamily!!.family!!),SFilter.isNull("EquipmentId")).exec()
|
|
|
+ propertyList = PropertyService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("family", equipFamily!!.family!!),SFilter.isNull("equipId")).exec()
|
|
|
// }
|
|
|
if (propertyList.size>0){
|
|
|
/** 计算匹配资产 */
|
|
@@ -357,13 +357,13 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
|
|
|
if (!equip.buildingId.isNullOrEmpty()){
|
|
|
|
|
|
|
|
|
- val building = buildingService.select(SFilter.eq("BuildID", equip.buildingId!!)).entity()
|
|
|
+ val building = buildingService.select(SFilter.eq("id", equip.buildingId!!)).entity()
|
|
|
if (building!=null){
|
|
|
equip.building = building
|
|
|
}
|
|
|
}
|
|
|
if (!equip.floorId.isNullOrEmpty()){
|
|
|
- val floor = floorService.select(SFilter.eq("FloorID", equip.floorId!!)).entity()
|
|
|
+ val floor = floorService.select(SFilter.eq("id", equip.floorId!!)).entity()
|
|
|
if (floor!=null){
|
|
|
equip.floor = floor
|
|
|
}
|
|
@@ -383,13 +383,13 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
|
|
|
if (!property.buildingId.isNullOrEmpty()){
|
|
|
|
|
|
|
|
|
- val building = buildingService.select(SFilter.eq("BuildID", property.buildingId!!)).entity()
|
|
|
+ val building = buildingService.select(SFilter.eq("id", property.buildingId!!)).entity()
|
|
|
if (building!=null){
|
|
|
property.building = building
|
|
|
}
|
|
|
}
|
|
|
if (!property.floorId.isNullOrEmpty()){
|
|
|
- val floor = floorService.select(SFilter.eq("FloorID", property.floorId!!)).entity()
|
|
|
+ val floor = floorService.select(SFilter.eq("id", property.floorId!!)).entity()
|
|
|
if (floor!=null){
|
|
|
property.floor = floor
|
|
|
}
|
|
@@ -435,7 +435,7 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
|
|
|
logger.debug("设备*************** ")
|
|
|
request.pageSize = 100000
|
|
|
SQueryRequest.maxRow = 100000
|
|
|
- val pageQuery = pageQuery(request, arrayListOf(SFilter.eq("category", category),
|
|
|
+ val pageQuery = pageQuery(request, arrayListOf(SFilter.eq("classCode", category),
|
|
|
SFilter.isNull("propertyId"),SFilter.eq("projectId", projectId!!)))
|
|
|
var contentList :ArrayList<Equipment>? = null
|
|
|
logger.debug("设备***************${pageQuery.toJson()} ")
|
|
@@ -459,7 +459,7 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
|
|
|
// }else if (!equipment.buildingId.isNullOrEmpty()&&equipment.floorId.isNullOrEmpty()){
|
|
|
// propertyList = PropertyService.select(SFilter.eq("projectId", projectId!!),SFilter.eq("buildingId", equipment.buildingId!!),SFilter.isNull("EquipmentId"), SFilter.eq("Family", equipFamily!!.family!!)).exec()
|
|
|
// }else{
|
|
|
- propertyList = PropertyService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("Family", equipFamily!!.family!!),SFilter.isNull("EquipmentId")).exec()
|
|
|
+ propertyList = PropertyService.select(SFilter.eq("projectId", projectId!!), SFilter.eq("family", equipFamily!!.family!!),SFilter.isNull("equipId")).exec()
|
|
|
// }
|
|
|
// logger.debug("category = ${equipment.category}")
|
|
|
// logger.debug("Family = ${equipFamily.family}")
|
|
@@ -524,14 +524,14 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
|
|
|
if (!equip.buildingId.isNullOrEmpty()){
|
|
|
|
|
|
|
|
|
- val building = buildingService.select(SFilter.eq("BuildID", equip.buildingId!!)).entity()
|
|
|
+ val building = buildingService.select(SFilter.eq("id", equip.buildingId!!)).entity()
|
|
|
if (building!=null){
|
|
|
equip.building = building
|
|
|
}
|
|
|
}
|
|
|
if (!equip.floorId.isNullOrEmpty()){
|
|
|
try {
|
|
|
- val floor = floorService.select(SFilter.eq("FloorID", equip.floorId!!)).entity()
|
|
|
+ val floor = floorService.select(SFilter.eq("id", equip.floorId!!)).entity()
|
|
|
if (floor!= null){
|
|
|
equip.floor = floor
|
|
|
}
|
|
@@ -552,13 +552,13 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
|
|
|
for ( property in equip.propertyList!!){
|
|
|
if (!property.buildingId.isNullOrEmpty()){
|
|
|
|
|
|
- val building = buildingService.select(SFilter.eq("BuildID", property.buildingId!!)).entity()
|
|
|
+ val building = buildingService.select(SFilter.eq("id", property.buildingId!!)).entity()
|
|
|
if (building!=null){
|
|
|
property.building = building
|
|
|
}
|
|
|
}
|
|
|
if (!property.floorId.isNullOrEmpty()){
|
|
|
- val floor = floorService.select(SFilter.eq("FloorID", property.floorId!!)).entity()
|
|
|
+ val floor = floorService.select(SFilter.eq("id", property.floorId!!)).entity()
|
|
|
if (floor!=null){
|
|
|
property.floor = floor
|
|
|
}
|
|
@@ -593,19 +593,19 @@ object EquipmentComService : Service<Equipment>(SMybatisDao(Equipment::class.jav
|
|
|
fun equipPro(request: SUpdateRequest<Property>): SBaseResponse {
|
|
|
|
|
|
return try {
|
|
|
- val projectId = SPageContext.getHeader("ProjectId")
|
|
|
+ val projectId = SPageContext.getHeader("projectId")
|
|
|
var projection = request.projection
|
|
|
|
|
|
if (projection == null ){
|
|
|
projection = ArrayList()
|
|
|
- projection.add("EquipmentId")
|
|
|
+ projection.add("equipId")
|
|
|
}
|
|
|
if (projection!=null&&projection!!.isEmpty()){
|
|
|
- projection.add("EquipmentId")
|
|
|
+ projection.add("equipId")
|
|
|
}
|
|
|
if (projection!=null&&!projection.isEmpty()){
|
|
|
projection.clear()
|
|
|
- projection.add("EquipmentId")
|
|
|
+ projection.add("equipId")
|
|
|
}
|
|
|
val updateList = PropertyService.updateList(request)
|
|
|
|