DavidLiu há 3 meses atrás
pai
commit
99c243091f

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

@@ -59,7 +59,7 @@ class CallService:
                                   call_type=call_info.call_type, sip_server=call_info.sip_server,
                                   sip_header_map={sipHeaderCtiFlowId: request.cti_flow_id})
 
-        self.client.make_call_new(context)
+        self.client.make_call(context)
         self.do_after_manual_call(call_info, agent.agent_number)
         return call_id
 
@@ -119,7 +119,7 @@ class CallService:
         context = MakeCallContext(display=call_info.caller, caller=call_info.caller, called=agent_number,
                                   call_id=call_id, device_id=device_id, device_type=device_info.device_type,sip_server=agent.sip_server,
                                   call_type=call_info.call_type, service_id=service_id, sip_header_map=sip_header_map)
-        self.client.make_call_new(context)
+        self.client.make_call(context)
 
     def hangup_by_scene(self, request: HangupCallRequest):
         scene = AgentScene.get_by_code(request.scene)

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

@@ -217,7 +217,7 @@ class InboundClient:
             self.logger.info("waitingTimeOut 开始播放结束音乐 callId:%s customerDeviceId:%s playFile:%s", call_id,
                              device_id, WaitingHangupMusicPath)
 
-    def make_call_new(self, context: MakeCallContext):
+    def make_call(self, context: MakeCallContext):
         # self.logger.info("拨打测试context:%s", context.__dict__)
         called = context.get_called()
         params = {'gateway': context.route_gateway_name, 'called': called, 'realm': context.get_realm()}
@@ -235,7 +235,7 @@ class InboundClient:
             # self.logger.info("拨打测试builder:%s", builder)
         cmd = "".join(builder)
         self.logger.info(cmd)
-        self.bgapi(ORIGINATE, arg=cmd, desc="make_call_new")
+        self.bgapi(ORIGINATE, arg=cmd, desc="make_call")
         # self.con.bgapi(ORIGINATE, cmd)
 
     def call_timeout(self, call_id, device_id, timeout):

+ 1 - 1
src/core/callcenter/esl/handler/channel_answer_handler.py

@@ -105,7 +105,7 @@ class ChannelAnswerHandler(EslEventHandler):
         context = MakeCallContext(display=new_device.caller_display, caller=new_device.caller_display, called=called,
                                   call_id=call_id, device_id=new_device_id, device_type=new_device.device_type,
                                   call_type=call.call_type, sip_server=agent.sip_server)
-        self.inbound_client.make_call_new(context)
+        self.inbound_client.make_call(context)
 
     def call_bridge(self, call: CallInfo, device: DeviceInfo, next_command: NextCommand, event):
         self.logger.info("开始桥接电话: callId:%s, caller:%s, called:%s, device1:%s, device2:%s"% (call.call_id,