774056846 4 months ago
parent
commit
de688d5198
2 changed files with 5 additions and 5 deletions
  1. 2 2
      src/core/callcenter/call.py
  2. 3 3
      src/core/callcenter/esl/client.py

+ 2 - 2
src/core/callcenter/call.py

@@ -130,7 +130,7 @@ class CallService:
             return
         self.logger.info("hangup_all, call_id:%s, devices=%s, case=%s"%(call_info.call_id, json.dumps(devices), case_enum))
         for device in devices:
-            self.client.hangup_call(call_info.call_id, device, case_enum)
+            self.client.kill_call(call_info.call_id, device, case_enum)
 
     def hangup_call(self, call_id):
         call_info = self.cache.get_call_info(call_id)
@@ -143,7 +143,7 @@ class CallService:
             return
         self.logger.info("hangup_all, call_id:%s, devices=%s" % (call_info.call_id, json.dumps(devices)))
         for device in devices:
-            self.client.hangup_call(call_info.call_id, device, CallCause.RESTART)
+            self.client.kill_call(call_info.call_id, device, CallCause.RESTART)
 
     def checkin_call(self, request: CheckInCallRequest):
         agent = self.cache.get_agent_info(request.saas_id, request.agent_number)

+ 3 - 3
src/core/callcenter/esl/client.py

@@ -271,11 +271,11 @@ class InboundClient:
             if _con:
                 _con.disconnect()
 
-    def kill_call(self, call_id, device_id):
+    def kill_call(self, call_id, device_id, case_enum=CallCause.DEFAULT):
         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")
+        self.logger.info("kill_call:%s, device:%s, case_enum:%s", call_id, device_id, case_enum)
+        self.api(UUID_KILL, device_id, desc="kill_call")
 
     def broadcast(self, uuid, path, smf):
         builder = [