瀏覽代碼

******************************************* wx *****************
修改接口

zhangweixin 4 年之前
父節點
當前提交
120cae8454

+ 22 - 20
datasyn/src/main/kotlin/com/persagy/server/syn/jms/MessageProcessing.kt

@@ -71,27 +71,29 @@ class MessageProcessing {
      */
     fun syncRwdData(){
         /** 子线程处理数据 */
-//        object : Thread() {
-//            override fun run() {
-//                super.run()
-//                while (true){
-//                    /** 为 0 的 时候睡眠*/
-//                    if (messageTypeRwd == 0){
-//                        sleep(10000)
-//                    }
-//                }
-//            }
-//        }
-        if (messageTypeRwd!=0){
-            messageTypeRwd = 0
-            val syncRwdMessageList = syncRwdMessageService.select(SFilter.not(SFilter.eq("sign", 0))).order("createTime").exec()
-            if (syncRwdMessageList.size >0){
-                rwdSync.dataSync(syncRwdMessageList)
-                messageTypeRwd = 1
-                syncRwdData()
-            } else {
-                messageTypeRwd = 1
+
+        try {
+            logger.debug("状态-中台-  ${messageTypeRwd}")
+            if (messageTypeRwd!=0){
+                try {
+                    messageTypeRwd = 0
+                    val syncRwdMessageList = syncRwdMessageService.select(SFilter.not(SFilter.eq("state", 0))).order("createTime").exec()
+                    if (syncRwdMessageList.size >0){
+                        rwdSync.dataSync(syncRwdMessageList)
+                        messageTypeRwd = 1
+                        syncRwdData()
+                    } else {
+                        logger.debug("释放状态-中台")
+                        messageTypeRwd = 1
+                    }
+                } catch (e: Exception) {
+                    e.printStackTrace()
+                    messageTypeRwd = 1
+                }
             }
+        } catch (e: Exception) {
+            e.printStackTrace()
+            messageTypeRwd = 1
         }
 
     }

+ 7 - 5
datasyn/src/main/kotlin/com/persagy/server/syn/jms/MessageReceiver.kt

@@ -35,6 +35,8 @@ import com.persagy.server.syn.jms.bean.SyncRwdDatacenterMessage
 import com.persagy.service.SObjectService
 import com.persagy.service.utils.SJsonUtil
 import org.slf4j.LoggerFactory
+import org.springframework.amqp.rabbit.annotation.RabbitHandler
+import org.springframework.amqp.rabbit.annotation.RabbitListener
 import org.springframework.beans.factory.annotation.Autowired
 import org.springframework.stereotype.Component
 import org.springframework.stereotype.Service
@@ -70,17 +72,17 @@ class MessageReceiver {
     /**
      * 接收中台消息
      */
-//    @RabbitListener(queues = ["queue-center-syn"])
-//    @RabbitHandler
+    @RabbitListener(queues = ["queue-center-syn"])
+    @RabbitHandler
     fun process(mess: String) {
         logger.debug("接收中台消息:${mess}")
         /** 解析消息 */
         try {
             val messag = SJsonUtil.fromJson(mess, SyncRwdDatacenterMessage::class.java)
             /** 消息不可以为空 */
-            if (messag != null) {
-
-
+            if (messag!=null && !messag.appId.isNullOrEmpty()&&messag.appId == "datacenter") {
+                /** 不做处理 */
+            }else if (messag != null) {
                 /** 消息类型 */
                 when(messag.type){
                     Configure.RWDCREATE -> {

+ 9 - 0
datasyn/src/main/kotlin/com/persagy/server/syn/jms/bean/SyncRwdDatacenterMessage.kt

@@ -27,6 +27,7 @@
 package com.persagy.server.syn.jms.bean
 
 import java.io.Serializable
+import java.util.*
 import javax.persistence.Column
 import javax.persistence.Id
 import javax.persistence.Table
@@ -103,4 +104,12 @@ class SyncRwdDatacenterMessage : Serializable {
     @Column(name = "count")
     var count: Int = 0
 
+    /** 最后更新日期 */
+    @Column(name = "last_update", updatable = false, insertable = false)
+    var lastUpdate: Date? = null
+
+    /** 创建时间 */
+    @Column(name = "create_time", updatable = false, insertable = false)
+    var createTime: Date? = null
+
 } // Class SynchronousMessageObj

+ 6 - 1
datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/BuildingUtil.kt

@@ -351,7 +351,12 @@ object BuildingUtil {
      */
     fun buildingDataConversions(projectId: String,groupCode: String, mapObj: HashMap<String, Any?>): Building {
         /** 查建筑类型字典 */
-        val dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode), SFilter.eq("classCode", "building")).exec()
+        var dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode),SFilter.eq("projectId", projectId) ,SFilter.eq("classCode", "building")).exec()
+        if (dictDefFuncIdList.isNullOrEmpty()) {
+            dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("type", "commo"),
+                SFilter.eq("classCode","building")).exec()
+        }
+
         val mapEx = HashMap<String, Any?>()
         val mapCode = HashMap<String, Any?>()
         /** 遍历项目类型字典 */

+ 6 - 1
datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/EquipUtil.kt

@@ -2363,7 +2363,12 @@ object EquipUtil {
     fun equipSyns(projectId: String,groupCode: String, mapObj: HashMap<String, Any?>): Equipment {
         val equipment = Equipment()
         /** 查建楼层型字典 */
-        val dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode),SFilter.eq("projectId", projectId), SFilter.eq("classCode", mapObj["classCode"].toString())).exec()
+        var dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode),SFilter.eq("projectId", projectId), SFilter.eq("classCode", mapObj["classCode"].toString())).exec()
+        if (dictDefFuncIdList.isNullOrEmpty()) {
+            dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("type", "commo"),
+                SFilter.eq("classCode", mapObj["classCode"].toString())).exec()
+        }
+
         val mapEx = HashMap<String, Any?>()
         val mapCode = HashMap<String, Any?>()
         /** 遍历项目类型字典 */

+ 5 - 1
datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/FloorUtil.kt

@@ -65,8 +65,12 @@ object FloorUtil {
      */
     fun floorSyns(projectId: String,groupCode: String, mapObj: HashMap<String, Any?>): Floor {
         /** 查建楼层型字典 */
-        val dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode),
+        var dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode),
             SFilter.eq("classCode", "floor"),SFilter.eq("projectId", projectId)).exec()
+        if (dictDefFuncIdList.isNullOrEmpty()) {
+            dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("type", "commo"),
+                SFilter.eq("classCode","floor")).exec()
+        }
         val mapEx = HashMap<String, Any?>()
         val mapCode = HashMap<String, Any?>()
         /** 遍历项目类型字典 */

+ 7 - 1
datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/ProjectUtil.kt

@@ -68,7 +68,13 @@ object ProjectUtil {
     fun projectDataConversions(groupCode: String, mapObj: HashMap<String, Any?>): Project{
 
         /** 查询项目类型字典 */
-        val dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode), SFilter.eq("projectId", mapObj["id"].toString())).exec()
+        var dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode), SFilter.eq("projectId", mapObj["id"].toString())
+        , SFilter.eq("classCode","project") ).exec()
+        if (dictDefFuncIdList.isNullOrEmpty()) {
+            dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("type", "commo"),
+                SFilter.eq("classCode","project")).exec()
+        }
+
         val mapEx = HashMap<String, Any?>()
         val mapCode = HashMap<String, Any?>()
         /** 遍历项目类型字典 */

+ 5 - 1
datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/ShaftUtil.kt

@@ -66,7 +66,11 @@ object ShaftUtil {
      */
     fun shaftDataConversions(projectId: String,groupCode: String, mapObj: HashMap<String, Any?>): Shaft {
         /** 查建楼层型字典 */
-        val dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode), SFilter.eq("classCode","shaft")).exec()
+        var dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode),SFilter.eq("projectId",projectId), SFilter.eq("classCode","shaft")).exec()
+        if (dictDefFuncIdList.isNullOrEmpty()) {
+            dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("type", "commo"),
+                SFilter.eq("classCode","shaft")).exec()
+        }
         val mapEx = HashMap<String, Any?>()
         val mapCode = HashMap<String, Any?>()
         /** 遍历项目类型字典 */

+ 5 - 1
datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/SpaceUtil.kt

@@ -379,8 +379,12 @@ object SpaceUtil {
     fun spaceDataConversions(projectId: String,groupCode: String, mapObj: HashMap<String, Any?>): ZoneSpace {
         logger.debug("打印空间 = ${mapObj.toJson()}")
         /** 查建楼层型字典 */
-        val dictDefFuncIdList = dictDefFuncIdService.select(
+        var dictDefFuncIdList = dictDefFuncIdService.select(
             SFilter.eq("classCode", mapObj["classCode"].toString()),SFilter.eq("projectId", projectId)).exec()
+        if (dictDefFuncIdList.isNullOrEmpty()) {
+            dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("type", "commo"),
+                SFilter.eq("classCode", mapObj["classCode"].toString())).exec()
+        }
         logger.debug("字典 = ${dictDefFuncIdList.size}")
         val mapEx = HashMap<String, Any?>()
         val mapCode = HashMap<String, Any?>()

+ 5 - 1
datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/SystemUtil.kt

@@ -64,7 +64,11 @@ object SystemUtil {
      */
     fun systemDataConversions(projectId: String,groupCode: String, mapObj: HashMap<String, Any?>): GeneralSystem {
         /** 查建楼层型字典 */
-        val dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode), SFilter.eq("classCode", mapObj["classCode"].toString())).exec()
+        var dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("groupCode", groupCode),SFilter.eq("projectId",projectId), SFilter.eq("classCode", mapObj["classCode"].toString())).exec()
+        if (dictDefFuncIdList.isNullOrEmpty()) {
+            dictDefFuncIdList = dictDefFuncIdService.select(SFilter.eq("type", "commo"),
+                SFilter.eq("classCode", mapObj["classCode"].toString())).exec()
+        }
         val mapEx = HashMap<String, Any?>()
         val mapCode = HashMap<String, Any?>()
         /** 遍历项目类型字典 */

+ 7 - 2
datasyn/src/main/kotlin/com/persagy/server/syn/services/jms/RwdProject.kt

@@ -87,15 +87,18 @@ class RwdProject {
                         )
                         projectService.insert(buildingDataConversions)
                         message.state = 0
+
                     } else {
+                        message.count+1
                         message.state = 2
                     }
 
                 } else {
                     message.state = 2
+                    message.count+1
                 }
                 /** 更改标记 */
-                syncRwdMessageService.update(message, arrayListOf("state"))
+                syncRwdMessageService.update(message, arrayListOf("state","count"))
             }
             Configure.RWDUPDATE -> {
                 val entity = projectService.select(SFilter.eq("projectId", message.projectId!!)).entity()
@@ -113,12 +116,14 @@ class RwdProject {
                             message.state = 0
                         } else {
                             message.state = 2
+                            message.count+1
                         }
                     } else {
                         message.state = 2
+                        message.count+1
                     }
                     /** 更改标记 */
-                    syncRwdMessageService.update(message, arrayListOf("state"))
+                    syncRwdMessageService.update(message, arrayListOf("state","count"))
                 }
             }
             Configure.RWDDELETE -> {

+ 9 - 3
datasyn/src/main/kotlin/com/persagy/server/syn/task/SchedulerTaskTwo.kt

@@ -50,9 +50,15 @@ class SchedulerTaskTwo {
     @Autowired
     lateinit var messageProcessing: MessageProcessing
     //cron表达式:每隔5秒执行一次
-    @Scheduled(cron = "0 */3 * * * ?")
+//    @Scheduled(cron = "0 */3 * * * ?")
+//    @Scheduled(cron = "0 */1 * * * ?")
+    @Scheduled(cron="0/5 * *  * * ? ")   //每5秒执行一次
     fun scheduled() {
-        logger.info("同步中台任务开始}")
-//        messageProcessing.syncRwdData()
+        try {
+            logger.info("同步中台任务开始} *****************************************************************")
+            messageProcessing.syncRwdData()
+        } catch (e: Exception) {
+            e.printStackTrace()
+        }
     }
 }

+ 25 - 14
equip-component/src/main/kotlin/com/persagy/server/service/EquipmentComService.kt

@@ -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!!)
+                        }
                     }
                 }