774056846 4 ay önce
ebeveyn
işleme
c9871e9187

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

@@ -1,6 +1,6 @@
 #!/usr/bin/env python3
 # encoding:utf-8
-
+import json
 import time
 from datetime import datetime
 from src.core.callcenter.cache import Cache
@@ -122,6 +122,7 @@ class CallService:
         if not devices:
             self.logger.info('hangupCallAll skip 已全部挂断 callId: %s', call_info.call_id)
             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, case_enum)
 

+ 2 - 5
src/core/callcenter/esl/client.py

@@ -252,18 +252,15 @@ class InboundClient:
         msg.addHeader("call-command", EXECUTE)
         msg.addHeader("execute-app-name", HANGUP)
         msg.addHeader("execute-app-arg", NORMAL_CLEARING)
-        msg.addHeader("async", "true")
+        # msg.addHeader("async", "true")
         _con = None
         try:
             _con = ESL.ESLconnection(self.host, self.port, self.password)
             if _con.connected():
-                self.logger.info("hangup_call挂机1 hangup call: %s, device: %s, ctiCauseEnum: %s" % (call_id, device_id, case_enum))
                 arg = ''.join([EslEventUtil.SIP_H_P_LIBRA_HANGUP_CAUSE, "=", case_enum.description])
-                self.logger.info("hangup_call挂机2 hangup call: %s, device: %s, arg: %s" % (call_id, device_id, arg))
                 self.send_args(device_id, SET, arg, con=_con)
-                self.logger.info("hangup_call挂机3 hangup call: %s, device: %s, arg: %s" % (call_id, device_id, arg))
                 _con.sendEvent(msg)
-                self.logger.info("hangup_call挂机4 hangup call: %s, device: %s, arg: %s" % (call_id, device_id, arg))
+                self.logger.info("hangup_call挂机 hangup call: %s, device: %s, arg: %s" % (call_id, device_id, arg))
         except:
             traceback.print_exc()
         finally: