瀏覽代碼

********************WX******************
调整空间关系

zhangweixin 4 年之前
父節點
當前提交
664380add9

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/graphtype/rel/hvac/RelEquipmentCoolingWaterLoopOne.kt

@@ -43,7 +43,7 @@ open class RelEquipmentCoolingWaterLoopOne  : EquipmentBase() {
 
     /** 级联-设备 */
     @Schema(description = "级联-设备")
-    @SCascade(table="relationship.r_eq2eq", idColumn="id1", childIdColumn="id2",self = false,filter = "type = 'eq2eq_cwl1_1'")
+    @SCascade(table="relationship.r_eq2eq", idColumn="id1", childIdColumn="id2",self = false,filter = "type = 'eq2eq_CoolingWaterLoop_1'")
     var objectInfo: ArrayList<RelEquipmentFloor>? = null
 
 } // Class RelEquipmentCoolingWaterLoopOne

+ 0 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/graphtype/rel/hvac/RelEquipmentVentNetworkTwo.kt

@@ -45,7 +45,6 @@ open class RelEquipmentVentNetworkTwo : EquipmentBase() {
     /** 级联-设备 */
     @Schema(description = "级联-设备")
     @SCascade(table="relationship.r_eq2eq", idColumn="id1", childIdColumn="id2",self = false,filter = "type = 'eq2eq_VentNetwork_2'")
-    @JSONField(name = "ObjectInfo")
     var objectInfo: ArrayList<RelEquipmentFloor>? = null
 
 } // Class RelEquipmentVentNetworkTwo

+ 0 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/graphtype/rel/hvac/RelEquipmentVrfNetworkOne.kt

@@ -45,7 +45,6 @@ open class RelEquipmentVrfNetworkOne : EquipmentBase() {
     /** 级联-设备 */
     @Schema(description = "级联-设备")
     @SCascade(table="relationship.r_eq2eq", idColumn="id1", childIdColumn="id2",self = false,filter = "type = 'eq2eq_VRFNetwork_1'")
-    @JSONField(name = "ObjectInfo")
     var objectInfo: ArrayList<RelEquipmentFloor>? = null
 
 }

+ 2 - 2
datacenter/src/main/kotlin/com/persagy/server/jms/TopicReceiver.kt

@@ -63,8 +63,8 @@ class TopicReceiver {
      *
      * @param
      */
-//    @RabbitListener(queues = ["queue-center-adm"])
-//    @RabbitHandler
+    @RabbitListener(queues = ["queue-center-adm"])
+    @RabbitHandler
     fun receiveMessage(message: String) {
         try {
             println("接收数据中心消息 , $message")

+ 14 - 2
datacenter/src/main/kotlin/com/persagy/server/services/graphtype/RelationTypeProjectService.kt

@@ -389,13 +389,20 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
             // 填写识别码对应
             val code = sheet.getRow(2).getCell(1).toString()
             logger.debug("识别编码:${code}  ******************************************")
-            preExcelRelation(sheet, projectId!!, relType, code, zoneType)
+//            preExcelRelation(sheet, projectId!!, relType, code, zoneType)
 
             val rowNum = rowStart
+//            logger.debug("rowNum= ${ sheet.lastRowNum}  ******************************************")
             for (i in rowNum .. sheet.lastRowNum) {
+//                logger.debug("rowNum00= ${ i}  ******************************************")
                 try {
-                    val row = sheet.getRow(i)
+                    var row = sheet.getRow(i)
+                    if (row == null) {
+                        row = sheet.createRow(i)
+                    }
                     if (row?.getCell(idCode1Col) == null ||row.getCell(idCode2Col) == null){
+                        row.createCell(stateCol).setCellValue("失败,主对象和从对象的识别编码为空")
+                        failCount += 1
                         continue
                     }
                     val idCode1ColValue = row.getCell(idCode1Col).toString()
@@ -564,6 +571,11 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
                             // result = false
                             continue
                         }
+                        //
+                        if (idCode1ColValue.isEmpty() && idCode1ColValue.isEmpty()) {
+                            row.createCell(stateCol).setCellValue("失败,主对象和从对象的识别编码为空")
+                            failCount += 1
+                        }
                     }
                 } catch (e: Exception) {
                     e.printStackTrace()

+ 9 - 1
datacenter/src/main/kotlin/com/persagy/server/services/objects/FloorService.kt

@@ -314,6 +314,15 @@ object FloorService : Service<Floor>(SMybatisDao(Floor::class.java)) {
         }
     }
 
+
+    /**
+     *
+     */
+    fun deleteList(idList: ArrayList<Floor>){
+
+    }
+
+
     /**
      * 删除之前操作
      */
@@ -324,7 +333,6 @@ object FloorService : Service<Floor>(SMybatisDao(Floor::class.java)) {
             DataCenterLogsService.addLogs(Opt.projectId!!,"delete","floor",
                 floor!!.id!!,floor,Opt.account,Opt.coming)
         }
-
         return super.onDeleteBefore(entity)
     } // Function onDeleteBefore()
 

+ 28 - 24
datacenter/src/main/kotlin/com/persagy/server/services/objects/GeneralSystemService.kt

@@ -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!!){

+ 1 - 1
datacenter/src/main/kotlin/com/persagy/server/services/objects/ZoneSpaceBaseService.kt

@@ -457,7 +457,7 @@ object ZoneSpaceBaseService : ServiceSpace<ZoneSpace>(SMybatisDao(ZoneSpace::cla
                 sQueryResponse.result = SResponseType.success
                 return sQueryResponse
             } else {
-                val pageQuery = defClassService.pageQuery(request, arrayListOf(SFilter.eq("projectId", "common"), SFilter.eq("parentCode","space")))
+                val pageQuery = defClassService.pageQuery(request, arrayListOf(SFilter.eq("type", "common"), SFilter.eq("parentCode","space")))
                 val contentList = pageQuery.content
                 val list = ArrayList<DictSpaceProject>()
                 if (contentList != null && contentList.size > 0) {

+ 14 - 14
datacenter/src/main/resources/application-test.yml

@@ -25,28 +25,28 @@ server:
 
 spring:
   datasource:
-    url:                                jdbc:postgresql://192.168.64.14:5432/datacenterlabsl
+#    url:                                jdbc:postgresql://192.168.64.14:5432/datacenterlabsl
 #    url:                                jdbc:postgresql://datacenter:5432/datacenterlabsl
-#    url:                                jdbc:postgresql://192.168.64.15:5432/datacenter
+    url:                                jdbc:postgresql://192.168.64.15:5432/datacenter
 #    url:                                jdbc:postgresql://datacenter:5432/datacenter
     username:                           postgres
     password:                           cGVyc2FneV8yMDIwcXdlIUAj
 
-  rabbitmq:
-    host: 192.168.100.108
-    port: 9936
-    username: pbsage
-    password: pbsage123
-    #虚拟host 可以不设置,使用server默认host
-    virtual-host: /adm
-#
 #  rabbitmq:
-#    host: 192.168.64.15
+#    host: 192.168.100.108
 #    port: 9936
-#    username: admin
-#    password: brzj123456
+#    username: pbsage
+#    password: pbsage123
 #    #虚拟host 可以不设置,使用server默认host
-#    virtual-host: /test
+#    virtual-host: /adm
+#
+  rabbitmq:
+    host: 192.168.64.15
+    port: 9936
+    username: admin
+    password: brzj123456
+    #虚拟host 可以不设置,使用server默认host
+    virtual-host: /test
 
 
   servlet:

+ 1 - 1
equip-component/build.gradle

@@ -61,7 +61,7 @@ dependencies {
 
     ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     // spring cloud 依赖
-    compile group: 'org.springframework.cloud', name: 'spring-cloud-starter-eureka', version: SPRING_CLOUD_VERSION
+//    compile group: 'org.springframework.cloud', name: 'spring-cloud-starter-eureka', version: SPRING_CLOUD_VERSION
 
     ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     // MySQL

+ 1 - 1
equip-component/src/main/kotlin/com/persagy/server/models/ComponentProperty.kt

@@ -88,7 +88,7 @@ class ComponentProperty : BaseInfo(){
     /** 部件类型code */
     @Schema(description = "部件类型code")
     @Column(name = "class_code")
-    var category: String? = null
+    var classCode: String? = null
 
     /** 部件所在建筑id */
     @Schema(description = "部件所在建筑id")

+ 1 - 1
scanbuilding/build.gradle

@@ -62,7 +62,7 @@ dependencies {
 
     ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     // spring cloud 依赖
-    compile group: 'org.springframework.cloud', name: 'spring-cloud-starter-eureka', version: SPRING_CLOUD_VERSION
+//    compile group: 'org.springframework.cloud', name: 'spring-cloud-starter-eureka', version: SPRING_CLOUD_VERSION
 
     ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     // MySQL

+ 1 - 1
scanbuilding/src/main/kotlin/com/persagy/server/mappers/StatisticsCountMapper.kt

@@ -156,7 +156,7 @@ interface StatisticsCountMapper {
     /**
      * 统计设备任务下的部件类型以及数量
      */
-    @Select("SELECT class_code as code,(SELECT name FROM dict.def_class WHERE code = class_code and LIMIT 1 ) as name, COUNT(class_code) FROM scantask.equip_scan_task WHERE task_parent_id = #{id} AND parent_id = #{equipId} GROUP BY class_code")
+    @Select("SELECT class_code as code,(SELECT name FROM dict.def_class WHERE code = class_code  LIMIT 1 ) as name, COUNT(class_code) FROM scantask.equip_scan_task WHERE task_parent_id = #{id} AND parent_id = #{equipId} GROUP BY class_code")
     fun categoryStatistics(projectId:String,id: String,equipId: String): ArrayList<CategoryStatistics>
 
     /**

+ 1 - 1
scanbuilding/src/main/kotlin/com/persagy/server/services/UserService.kt

@@ -170,7 +170,7 @@ object UserService : SObjectService<User>(SMybatisDao(User::class.java)) {
         val coming = SPageContext.getHeader("coming")
         if (!request.content.isNullOrEmpty()) {
             for (content in request.content!!) {
-                val entity = select(SFilter.eq("projectId", projectId!!), SFilter.eq("phone", content.phone!!)).entity()
+                val entity = select(SFilter.eq("projectId", projectId!!),SFilter.not(SFilter.eq("userId",content.userId!!)), SFilter.eq("phone", content.phone!!)).entity()
                 if (entity!=null) {
                     sBaseResponse.message = "手机号已存在!"
                     sBaseResponse.result =SResponseType.failure

+ 2 - 2
scanbuilding/src/main/resources/application-dev.yml

@@ -8,8 +8,8 @@ spring:
 #    password:                           123456
 #    url:                                jdbc:postgresql://39.102.40.239:5432/datacenter
 #    url:                                jdbc:postgresql://60.205.177.43:5432/datacenterlabsl
-    url:                                jdbc:postgresql://192.168.64.15:5432/datacenter
-#    url:                                jdbc:postgresql://192.168.64.14:5432/datacenterlabsl
+#    url:                                jdbc:postgresql://192.168.64.15:5432/datacenter
+    url:                                jdbc:postgresql://192.168.64.14:5432/datacenterlabsl
     username:                           postgres
     #    password:                           persagy_2020qwe!@#
     password:                           cGVyc2FneV8yMDIwcXdlIUAj