|
@@ -30,9 +30,9 @@ import com.persagy.database.SFilter
|
|
|
import com.persagy.mybatis.SMybatisDao
|
|
|
import com.persagy.server.datacenter.models.entities.dictnew.DictProject
|
|
|
import com.persagy.server.datacenter.models.entities.rel.*
|
|
|
-import com.persagy.server.datacenter.models.entities.rel.archforarch.RSp2Bd
|
|
|
-import com.persagy.server.datacenter.models.entities.rel.archforarch.RSp2Fl
|
|
|
-import com.persagy.server.datacenter.models.entities.rel.archforarch.RSp2Sh
|
|
|
+import com.persagy.server.datacenter.models.entities.rel.archforarch.*
|
|
|
+import com.persagy.server.datacenter.models.entities.rel.archforarch.RSh2Bd
|
|
|
+import com.persagy.server.datacenter.models.entities.rel.archforarch.RSh2Sp
|
|
|
import com.persagy.server.datacenter.models.jms.SynchronousMessageRel
|
|
|
import com.persagy.server.syn.Configure
|
|
|
import com.persagy.server.syn.models.api.obj.EquipApi
|
|
@@ -74,12 +74,39 @@ class AutomaticCalculationSync {
|
|
|
val rEq2EqService = SObjectService(SMybatisDao(REq2Eq::class.java))
|
|
|
/** 设备服务于竖井 */
|
|
|
val rEqForShService = SObjectService(SMybatisDao(REqForSh::class.java))
|
|
|
- /** 空间和竖井 */
|
|
|
- private val rSp2ShService = SObjectService(SMybatisDao(RSp2Sh::class.java))
|
|
|
- /** 空间和楼层 */
|
|
|
- private val rSp2FlService = SObjectService(SMybatisDao(RSp2Fl::class.java))
|
|
|
+
|
|
|
+ /** 区域服务-建筑和建筑 */
|
|
|
+ private val rBd2BdService = SObjectService(SMybatisDao(RBd2Bd::class.java))
|
|
|
+ /** 建筑和楼层 */
|
|
|
+ private val rBd2FlService = SObjectService(SMybatisDao(RBd2Fl::class.java))
|
|
|
+ /** 建筑和竖井 */
|
|
|
+ private val rBd2ShService = SObjectService(SMybatisDao(RBd2Sh::class.java))
|
|
|
+ /** 建筑和空间 */
|
|
|
+ private val rBd2SpService = SObjectService(SMybatisDao(RBd2Sp::class.java))
|
|
|
+ /** 区域服务-楼层和建筑 */
|
|
|
+ private val rFl2BdService = SObjectService(SMybatisDao(RFl2Bd::class.java))
|
|
|
+ /** 楼层和楼层 */
|
|
|
+ private val rFl2FlService = SObjectService(SMybatisDao(RFl2Fl::class.java))
|
|
|
+ /** 楼层和竖井 */
|
|
|
+ private val rFl2ShService = SObjectService(SMybatisDao(RFl2Sh::class.java))
|
|
|
+ /** 楼层和空间 */
|
|
|
+ private val rFl2SpService = SObjectService(SMybatisDao(RFl2Sp::class.java))
|
|
|
+ /** 区域服务-竖井和建筑 */
|
|
|
+ private val rSh2BdService = SObjectService(SMybatisDao(RSh2Bd::class.java))
|
|
|
+ /** 竖井和楼层 */
|
|
|
+ private val rSh2FlService = SObjectService(SMybatisDao(RSh2Fl::class.java))
|
|
|
+ /** 竖井和竖井 */
|
|
|
+ private val rSh2ShService = SObjectService(SMybatisDao(RSh2Sh::class.java))
|
|
|
+ /** 竖井和空间 */
|
|
|
+ private val rSh2SpService = SObjectService(SMybatisDao(RSh2Sp::class.java))
|
|
|
+
|
|
|
/** 区域服务-空间和建筑 */
|
|
|
private val rSp2BdService = SObjectService(SMybatisDao(RSp2Bd::class.java))
|
|
|
+ /** 空间和楼层 */
|
|
|
+ private val rSp2FlService = SObjectService(SMybatisDao(RSp2Fl::class.java))
|
|
|
+ /** 空间和竖井 */
|
|
|
+ private val rSp2ShService = SObjectService(SMybatisDao(RSp2Sh::class.java))
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -856,13 +883,13 @@ class AutomaticCalculationSync {
|
|
|
fun sp2BdFor(message: SynchronousMessageRel) {
|
|
|
val dictProject = dictProjectService.select(SFilter.eq("id", message.projectId!!)).entity()
|
|
|
if (dictProject!=null) {
|
|
|
- val rEq2SpList = rSp2BdService.select(SFilter.eq("projectId", message.projectId!!),SFilter.eq("type", "sp2bd_ArchForArch")).exec()
|
|
|
+ val rEq2SpList = rSh2SpService.select(SFilter.eq("projectId", message.projectId!!),SFilter.eq("type", "sp2bd_ArchForArch")).exec()
|
|
|
message.sign = 0
|
|
|
if (rEq2SpList.size>0) {
|
|
|
for (rEq2Sp in rEq2SpList) {
|
|
|
try {
|
|
|
/** 先执行删除 */
|
|
|
- val toJsonObj = Configure.toJsonObj("ArchForArch", "Sp2Bd", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val toJsonObj = Configure.toJsonObj("ArchForArch", "Sp2bd", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
val delRel = EquipApi.delRel(dictProject.groupCode!!, message.projectId!!, toJsonObj)
|
|
|
/** 关系列表 */
|
|
|
val toJsonObjArray =
|
|
@@ -884,4 +911,412 @@ class AutomaticCalculationSync {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 竖井服务于空间
|
|
|
+ */
|
|
|
+ fun sh2SpFor(message: SynchronousMessageRel) {
|
|
|
+ val dictProject = dictProjectService.select(SFilter.eq("id", message.projectId!!)).entity()
|
|
|
+ if (dictProject!=null) {
|
|
|
+ val rEq2SpList = rSh2SpService.select(SFilter.eq("projectId", message.projectId!!),SFilter.eq("type", "sh2sp_ArchForArch")).exec()
|
|
|
+ message.sign = 0
|
|
|
+ if (rEq2SpList.size>0) {
|
|
|
+ for (rEq2Sp in rEq2SpList) {
|
|
|
+ try {
|
|
|
+ /** 先执行删除 */
|
|
|
+ val toJsonObj = Configure.toJsonObj("ArchForArch", "Sh2Sp", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val delRel = EquipApi.delRel(dictProject.groupCode!!, message.projectId!!, toJsonObj)
|
|
|
+ /** 关系列表 */
|
|
|
+ val toJsonObjArray =
|
|
|
+ Configure.toJsonObjArray("ArchForArch", "Sh2Sp", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val createRel = EquipApi.createRel(dictProject.groupCode!!, message.projectId!!, toJsonObjArray)
|
|
|
+ if (!createRel){
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /** 更改标记 */
|
|
|
+ synchronousMessageRelService.update(message)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 竖井服务于竖井
|
|
|
+ */
|
|
|
+ fun sh2ShFor(message: SynchronousMessageRel) {
|
|
|
+ val dictProject = dictProjectService.select(SFilter.eq("id", message.projectId!!)).entity()
|
|
|
+ if (dictProject!=null) {
|
|
|
+ val rEq2SpList = rSh2ShService.select(SFilter.eq("projectId", message.projectId!!),SFilter.eq("type", "sh2sh_ArchForArch")).exec()
|
|
|
+ message.sign = 0
|
|
|
+ if (rEq2SpList.size>0) {
|
|
|
+ for (rEq2Sp in rEq2SpList) {
|
|
|
+ try {
|
|
|
+ /** 先执行删除 */
|
|
|
+ val toJsonObj = Configure.toJsonObj("ArchForArch", "Sh2Sh", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val delRel = EquipApi.delRel(dictProject.groupCode!!, message.projectId!!, toJsonObj)
|
|
|
+ /** 关系列表 */
|
|
|
+ val toJsonObjArray =
|
|
|
+ Configure.toJsonObjArray("ArchForArch", "Sh2Sh", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val createRel = EquipApi.createRel(dictProject.groupCode!!, message.projectId!!, toJsonObjArray)
|
|
|
+ if (!createRel){
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /** 更改标记 */
|
|
|
+ synchronousMessageRelService.update(message)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 竖井服务于楼层
|
|
|
+ */
|
|
|
+ fun sh2FlFor(message: SynchronousMessageRel) {
|
|
|
+ val dictProject = dictProjectService.select(SFilter.eq("id", message.projectId!!)).entity()
|
|
|
+ if (dictProject!=null) {
|
|
|
+ val rEq2SpList = rSh2FlService.select(SFilter.eq("projectId", message.projectId!!),SFilter.eq("type", "sh2fl_ArchForArch")).exec()
|
|
|
+ message.sign = 0
|
|
|
+ if (rEq2SpList.size>0) {
|
|
|
+ for (rEq2Sp in rEq2SpList) {
|
|
|
+ try {
|
|
|
+ /** 先执行删除 */
|
|
|
+ val toJsonObj = Configure.toJsonObj("ArchForArch", "Sh2Fl", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val delRel = EquipApi.delRel(dictProject.groupCode!!, message.projectId!!, toJsonObj)
|
|
|
+ /** 关系列表 */
|
|
|
+ val toJsonObjArray =
|
|
|
+ Configure.toJsonObjArray("ArchForArch", "Sh2Fl", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val createRel = EquipApi.createRel(dictProject.groupCode!!, message.projectId!!, toJsonObjArray)
|
|
|
+ if (!createRel){
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /** 更改标记 */
|
|
|
+ synchronousMessageRelService.update(message)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 竖井服务于建筑
|
|
|
+ */
|
|
|
+ fun sh2BdFor(message: SynchronousMessageRel) {
|
|
|
+ val dictProject = dictProjectService.select(SFilter.eq("id", message.projectId!!)).entity()
|
|
|
+ if (dictProject!=null) {
|
|
|
+ val rEq2SpList = rSh2BdService.select(SFilter.eq("projectId", message.projectId!!),SFilter.eq("type", "sh2bd_ArchForArch")).exec()
|
|
|
+ message.sign = 0
|
|
|
+ if (rEq2SpList.size>0) {
|
|
|
+ for (rEq2Sp in rEq2SpList) {
|
|
|
+ try {
|
|
|
+ /** 先执行删除 */
|
|
|
+ val toJsonObj = Configure.toJsonObj("ArchForArch", "Sh2Bd", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val delRel = EquipApi.delRel(dictProject.groupCode!!, message.projectId!!, toJsonObj)
|
|
|
+ /** 关系列表 */
|
|
|
+ val toJsonObjArray =
|
|
|
+ Configure.toJsonObjArray("ArchForArch", "Sh2Bd", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val createRel = EquipApi.createRel(dictProject.groupCode!!, message.projectId!!, toJsonObjArray)
|
|
|
+ if (!createRel){
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /** 更改标记 */
|
|
|
+ synchronousMessageRelService.update(message)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 楼层服务于建筑
|
|
|
+ */
|
|
|
+ fun fl2BdFor(message: SynchronousMessageRel) {
|
|
|
+ val dictProject = dictProjectService.select(SFilter.eq("id", message.projectId!!)).entity()
|
|
|
+ if (dictProject!=null) {
|
|
|
+ val rEq2SpList = rFl2BdService.select(SFilter.eq("projectId", message.projectId!!),SFilter.eq("type", "fl2bd_ArchForArch")).exec()
|
|
|
+ message.sign = 0
|
|
|
+ if (rEq2SpList.size>0) {
|
|
|
+ for (rEq2Sp in rEq2SpList) {
|
|
|
+ try {
|
|
|
+ /** 先执行删除 */
|
|
|
+ val toJsonObj = Configure.toJsonObj("ArchForArch", "Fl2Bd", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val delRel = EquipApi.delRel(dictProject.groupCode!!, message.projectId!!, toJsonObj)
|
|
|
+ /** 关系列表 */
|
|
|
+ val toJsonObjArray =
|
|
|
+ Configure.toJsonObjArray("ArchForArch", "Fl2Bd", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val createRel = EquipApi.createRel(dictProject.groupCode!!, message.projectId!!, toJsonObjArray)
|
|
|
+ if (!createRel){
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /** 更改标记 */
|
|
|
+ synchronousMessageRelService.update(message)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 楼层服务于楼层
|
|
|
+ */
|
|
|
+ fun fl2FlFor(message: SynchronousMessageRel) {
|
|
|
+ val dictProject = dictProjectService.select(SFilter.eq("id", message.projectId!!)).entity()
|
|
|
+ if (dictProject!=null) {
|
|
|
+ val rEq2SpList = rFl2FlService.select(SFilter.eq("projectId", message.projectId!!),SFilter.eq("type", "fl2fl_ArchForArch")).exec()
|
|
|
+ message.sign = 0
|
|
|
+ if (rEq2SpList.size>0) {
|
|
|
+ for (rEq2Sp in rEq2SpList) {
|
|
|
+ try {
|
|
|
+ /** 先执行删除 */
|
|
|
+ val toJsonObj = Configure.toJsonObj("ArchForArch", "Fl2Fl", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val delRel = EquipApi.delRel(dictProject.groupCode!!, message.projectId!!, toJsonObj)
|
|
|
+ /** 关系列表 */
|
|
|
+ val toJsonObjArray =
|
|
|
+ Configure.toJsonObjArray("ArchForArch", "Fl2Fl", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val createRel = EquipApi.createRel(dictProject.groupCode!!, message.projectId!!, toJsonObjArray)
|
|
|
+ if (!createRel){
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /** 更改标记 */
|
|
|
+ synchronousMessageRelService.update(message)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 楼层服务于竖井
|
|
|
+ */
|
|
|
+ fun fl2ShFor(message: SynchronousMessageRel) {
|
|
|
+ val dictProject = dictProjectService.select(SFilter.eq("id", message.projectId!!)).entity()
|
|
|
+ if (dictProject!=null) {
|
|
|
+ val rEq2SpList = rFl2ShService.select(SFilter.eq("projectId", message.projectId!!),SFilter.eq("type", "fl2sh_ArchForArch")).exec()
|
|
|
+ message.sign = 0
|
|
|
+ if (rEq2SpList.size>0) {
|
|
|
+ for (rEq2Sp in rEq2SpList) {
|
|
|
+ try {
|
|
|
+ /** 先执行删除 */
|
|
|
+ val toJsonObj = Configure.toJsonObj("ArchForArch", "Fl2Sh", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val delRel = EquipApi.delRel(dictProject.groupCode!!, message.projectId!!, toJsonObj)
|
|
|
+ /** 关系列表 */
|
|
|
+ val toJsonObjArray =
|
|
|
+ Configure.toJsonObjArray("ArchForArch", "Fl2Sh", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val createRel = EquipApi.createRel(dictProject.groupCode!!, message.projectId!!, toJsonObjArray)
|
|
|
+ if (!createRel){
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /** 更改标记 */
|
|
|
+ synchronousMessageRelService.update(message)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 楼层服务于空间
|
|
|
+ */
|
|
|
+ fun fl2SpFor(message: SynchronousMessageRel) {
|
|
|
+ val dictProject = dictProjectService.select(SFilter.eq("id", message.projectId!!)).entity()
|
|
|
+ if (dictProject!=null) {
|
|
|
+ val rEq2SpList = rFl2SpService.select(SFilter.eq("projectId", message.projectId!!),SFilter.eq("type", "fl2sp_ArchForArch")).exec()
|
|
|
+ message.sign = 0
|
|
|
+ if (rEq2SpList.size>0) {
|
|
|
+ for (rEq2Sp in rEq2SpList) {
|
|
|
+ try {
|
|
|
+ /** 先执行删除 */
|
|
|
+ val toJsonObj = Configure.toJsonObj("ArchForArch", "Fl2Sp", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val delRel = EquipApi.delRel(dictProject.groupCode!!, message.projectId!!, toJsonObj)
|
|
|
+ /** 关系列表 */
|
|
|
+ val toJsonObjArray =
|
|
|
+ Configure.toJsonObjArray("ArchForArch", "Fl2Sp", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val createRel = EquipApi.createRel(dictProject.groupCode!!, message.projectId!!, toJsonObjArray)
|
|
|
+ if (!createRel){
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /** 更改标记 */
|
|
|
+ synchronousMessageRelService.update(message)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 建筑服务于空间
|
|
|
+ */
|
|
|
+ fun bd2SpFor(message: SynchronousMessageRel) {
|
|
|
+ val dictProject = dictProjectService.select(SFilter.eq("id", message.projectId!!)).entity()
|
|
|
+ if (dictProject!=null) {
|
|
|
+ val rEq2SpList = rBd2SpService.select(SFilter.eq("projectId", message.projectId!!),SFilter.eq("type", "bd2sp_ArchForArch")).exec()
|
|
|
+ message.sign = 0
|
|
|
+ if (rEq2SpList.size>0) {
|
|
|
+ for (rEq2Sp in rEq2SpList) {
|
|
|
+ try {
|
|
|
+ /** 先执行删除 */
|
|
|
+ val toJsonObj = Configure.toJsonObj("ArchForArch", "Bd2Sp", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val delRel = EquipApi.delRel(dictProject.groupCode!!, message.projectId!!, toJsonObj)
|
|
|
+ /** 关系列表 */
|
|
|
+ val toJsonObjArray =
|
|
|
+ Configure.toJsonObjArray("ArchForArch", "Bd2Sp", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val createRel = EquipApi.createRel(dictProject.groupCode!!, message.projectId!!, toJsonObjArray)
|
|
|
+ if (!createRel){
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /** 更改标记 */
|
|
|
+ synchronousMessageRelService.update(message)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 建筑服务于竖井
|
|
|
+ */
|
|
|
+ fun bd2ShFor(message: SynchronousMessageRel) {
|
|
|
+ val dictProject = dictProjectService.select(SFilter.eq("id", message.projectId!!)).entity()
|
|
|
+ if (dictProject!=null) {
|
|
|
+ val rEq2SpList = rBd2ShService.select(SFilter.eq("projectId", message.projectId!!),SFilter.eq("type", "bd2sh_ArchForArch")).exec()
|
|
|
+ message.sign = 0
|
|
|
+ if (rEq2SpList.size>0) {
|
|
|
+ for (rEq2Sp in rEq2SpList) {
|
|
|
+ try {
|
|
|
+ /** 先执行删除 */
|
|
|
+ val toJsonObj = Configure.toJsonObj("ArchForArch", "Bd2Sh", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val delRel = EquipApi.delRel(dictProject.groupCode!!, message.projectId!!, toJsonObj)
|
|
|
+ /** 关系列表 */
|
|
|
+ val toJsonObjArray =
|
|
|
+ Configure.toJsonObjArray("ArchForArch", "Bd2Sh", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val createRel = EquipApi.createRel(dictProject.groupCode!!, message.projectId!!, toJsonObjArray)
|
|
|
+ if (!createRel){
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /** 更改标记 */
|
|
|
+ synchronousMessageRelService.update(message)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 建筑服务于楼层
|
|
|
+ */
|
|
|
+ fun bd2FlFor(message: SynchronousMessageRel) {
|
|
|
+ val dictProject = dictProjectService.select(SFilter.eq("id", message.projectId!!)).entity()
|
|
|
+ if (dictProject!=null) {
|
|
|
+ val rEq2SpList = rBd2FlService.select(SFilter.eq("projectId", message.projectId!!),SFilter.eq("type", "bd2fl_ArchForArch")).exec()
|
|
|
+ message.sign = 0
|
|
|
+ if (rEq2SpList.size>0) {
|
|
|
+ for (rEq2Sp in rEq2SpList) {
|
|
|
+ try {
|
|
|
+ /** 先执行删除 */
|
|
|
+ val toJsonObj = Configure.toJsonObj("ArchForArch", "Bd2Fl", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val delRel = EquipApi.delRel(dictProject.groupCode!!, message.projectId!!, toJsonObj)
|
|
|
+ /** 关系列表 */
|
|
|
+ val toJsonObjArray =
|
|
|
+ Configure.toJsonObjArray("ArchForArch", "Bd2Fl", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val createRel = EquipApi.createRel(dictProject.groupCode!!, message.projectId!!, toJsonObjArray)
|
|
|
+ if (!createRel){
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /** 更改标记 */
|
|
|
+ synchronousMessageRelService.update(message)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 建筑服务于建筑
|
|
|
+ */
|
|
|
+ fun bd2BdFor(message: SynchronousMessageRel) {
|
|
|
+ val dictProject = dictProjectService.select(SFilter.eq("id", message.projectId!!)).entity()
|
|
|
+ if (dictProject!=null) {
|
|
|
+ val rEq2SpList = rBd2BdService.select(SFilter.eq("projectId", message.projectId!!),SFilter.eq("type", "bd2bd_ArchForArch")).exec()
|
|
|
+ message.sign = 0
|
|
|
+ if (rEq2SpList.size>0) {
|
|
|
+ for (rEq2Sp in rEq2SpList) {
|
|
|
+ try {
|
|
|
+ /** 先执行删除 */
|
|
|
+ val toJsonObj = Configure.toJsonObj("ArchForArch", "Bd2bd", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val delRel = EquipApi.delRel(dictProject.groupCode!!, message.projectId!!, toJsonObj)
|
|
|
+ /** 关系列表 */
|
|
|
+ val toJsonObjArray =
|
|
|
+ Configure.toJsonObjArray("ArchForArch", "Bd2bd", rEq2Sp.id1!!, rEq2Sp.id1!!)
|
|
|
+ val createRel = EquipApi.createRel(dictProject.groupCode!!, message.projectId!!, toJsonObjArray)
|
|
|
+ if (!createRel){
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
+ message.sign = 2
|
|
|
+ message.count = message.count +1
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /** 更改标记 */
|
|
|
+ synchronousMessageRelService.update(message)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}
|