774056846 4 hónapja
szülő
commit
cc9cfb15a1
1 módosított fájl, 8 hozzáadás és 1 törlés
  1. 8 1
      src/core/callcenter/esl/client.py

+ 8 - 1
src/core/callcenter/esl/client.py

@@ -261,7 +261,8 @@ class InboundClient:
             if _con.connected():
                 arg = ''.join([EslEventUtil.SIP_H_P_LIBRA_HANGUP_CAUSE, "=", case_enum.description])
                 self.send_args(device_id, SET, arg, con=_con)
-                e = _con.sendEvent(msg)
+                e = _con.sendMSG(msg)
+                # e = _con.api(UUID_KILL, device_id)
                 self.logger.info("hangup_call挂机 hangup call: %s, device: %s, arg: %s, res:%s" % (call_id, device_id, arg, e.serialize('json')))
         except:
             traceback.print_exc()
@@ -269,6 +270,12 @@ class InboundClient:
             if _con:
                 _con.disconnect()
 
+    def kill_call(self, call_id, device_id):
+        if not device_id:
+            return
+        self.logger.info("kill_call:%s, device:%s", call_id, device_id)
+        self.bgapi(UUID_KILL, device_id, desc="kill_call")
+
     def broadcast(self, uuid, path, smf):
         builder = [
             UUID_BROADCAST,