|
@@ -110,6 +110,7 @@ object REqInSpBaseService: RService<REqInSpBase>(SMybatisDao(REqInSpBase::class.
|
|
|
*/
|
|
|
fun deletes(type: String, rEqInSpBaseList: ArrayList<REqInSpBase>): SBaseResponse {
|
|
|
return try {
|
|
|
+
|
|
|
val projectId = SPageContext.getHeader("projectId")
|
|
|
val list= ArrayList<REq2Sp>()
|
|
|
for (rEqInSpBase in rEqInSpBaseList){
|
|
@@ -120,9 +121,18 @@ object REqInSpBaseService: RService<REqInSpBase>(SMybatisDao(REqInSpBase::class.
|
|
|
rEq2Sp.zoneType = type
|
|
|
rEq2Sp.type = "eq2sp_in"
|
|
|
list.add(rEq2Sp)
|
|
|
+ val delete = REq2SpService.delete(rEq2Sp)
|
|
|
+ if (delete) {
|
|
|
+ try {
|
|
|
+ /** 发送消息 */
|
|
|
+ rabbitMqService.sendRel(Opt.projectId!!, "EquipinSpace","12",rEq2Sp.id1!!,rEq2Sp.id2!!)
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
- REq2SpService.deleteByKeysList(list)
|
|
|
-
|
|
|
+// REq2SpService.deleteByKeysList(list)
|
|
|
+ SBaseResponse(SResponseType.success)
|
|
|
} catch (e: Exception) {
|
|
|
e.printStackTrace()
|
|
|
return SBaseResponse(SResponseType.failure, e.message!!)
|