|
@@ -509,7 +509,7 @@ open class RelationCalcService {
|
|
|
val result = mapper.calcFl2Sp(tablesName, projectId)
|
|
|
if (result != null && result == 0) {
|
|
|
/** 发送消息 */
|
|
|
- rabbitMqService.sendRel(Opt.projectId!!, "Fl2Sp_in", "20", tables!!, "456")
|
|
|
+ rabbitMqService.sendRel(Opt.projectId!!, "Fl2Sp_in", "20", "全量同步", "456")
|
|
|
upDate(projectId, "fl2sp")
|
|
|
return SBaseResponse(SResponseType.success)
|
|
|
} else {
|
|
@@ -948,9 +948,7 @@ open class RelationCalcService {
|
|
|
*/
|
|
|
fun upDateBiaoji(projectId: String, type: String, sing: Int) {
|
|
|
try {
|
|
|
- val list = ArrayList<String>()
|
|
|
- list.add("ComputationalState")
|
|
|
- list.add("ComputingTime")
|
|
|
+
|
|
|
if (sing == 3) {
|
|
|
logger.debug("type1= $type********************************************")
|
|
|
val entity = relationTypeProjectservice.select(SFilter.eq("projectId", projectId), SFilter.eq("relationType", type)).entity()
|
|
@@ -958,7 +956,7 @@ open class RelationCalcService {
|
|
|
entity.computationalState = 3
|
|
|
entity.computingTime = IdUtils.time()
|
|
|
logger.debug("computingTime= ${entity.computingTime},graphic_id =${entity.graphicId} ,code = ${entity.relationTypeCode},id= ${entity.id},project_id = ${entity.projectId}********************************************")
|
|
|
- val update = relationTypeProjectservice.update(entity, list)
|
|
|
+ val update = relationTypeProjectservice.update(entity)
|
|
|
logger.debug("update= ${update}********************************************")
|
|
|
}
|
|
|
logger.debug("type= $type********************************************")
|
|
@@ -967,7 +965,7 @@ open class RelationCalcService {
|
|
|
if (entity != null) {
|
|
|
entity.computationalState = 5
|
|
|
entity.computingTime = IdUtils.time()
|
|
|
- relationTypeProjectservice.update(entity, list)
|
|
|
+ relationTypeProjectservice.update(entity)
|
|
|
}
|
|
|
logger.debug("type3= $type********************************************")
|
|
|
}
|
|
@@ -1049,7 +1047,7 @@ open class RelationCalcService {
|
|
|
/** 处理关系 */
|
|
|
val equipmentList = EquipmentService.select(SFilter.eq("projectId", projectId),
|
|
|
SFilter.inList("classCode",
|
|
|
- arrayListOf("SETP", "SERH", "SECT"))).exec()
|
|
|
+ arrayListOf("OTSETP", "OTSERH", "OTSECT"))).exec()
|
|
|
logger.debug("设备长度: ${equipmentList.size}")
|
|
|
logger.debug("设备长度: ${equipmentList.size}")
|
|
|
if (equipmentList.size > 0) {
|
|
@@ -1119,18 +1117,13 @@ open class RelationCalcService {
|
|
|
|
|
|
/*************************上面添加数据**********************************/
|
|
|
|
|
|
-
|
|
|
-
|
|
|
// REq2SpService.delete(SFilter.eq("projectId", projectId),
|
|
|
// SFilter.eq("type", "eq2sp_for"))
|
|
|
val r2 = mapper.insertsp(projectId)
|
|
|
// logger.debug("设备关联业务空间计算结果= ${r1}+${r2}")
|
|
|
|
|
|
-
|
|
|
-
|
|
|
if (result != null && result == 0) {
|
|
|
try {
|
|
|
-
|
|
|
upDate(projectId, "fl2sp")
|
|
|
upDate(projectId, "eq2fl")
|
|
|
val entity = relationTypeProjectservice.select(SFilter.eq("projectId", projectId), SFilter.eq("relationType", "eq2sp_for"), SFilter.eq("zoneType", tables!!)).entity()
|
|
@@ -1143,7 +1136,6 @@ open class RelationCalcService {
|
|
|
e.printStackTrace()
|
|
|
}
|
|
|
|
|
|
-
|
|
|
/** 处理关系 */
|
|
|
val equipmentList = EquipmentService.select(SFilter.eq("projectId", projectId),
|
|
|
SFilter.inList("classCode",
|