余尚辉 4 ヶ月 前
コミット
a9e04890c2

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

@@ -46,6 +46,7 @@ class ChannelAnswerHandler(EslEventHandler):
         call_info.answer_count = call_info.answer_count + 1
         call_info.next_commands.remove(next_command)
 
+        print("call_info.answer_time:%s,device_info.answer_time%s"%(call_info.answer_time, device_info.answer_time), flush=True)
         if NextType.NEXT_CALL_OTHER.code == next_command.next_type:
             self.call_other(call_info, device_info)
         elif NextType.NEXT_CALL_BRIDGE.code == next_command.next_type:

+ 2 - 0
src/core/callcenter/esl/handler/channel_bridge_handler.py

@@ -20,6 +20,8 @@ class ChannelBridgeHandler(EslEventHandler):
         call = self.cache.get_call_info(call_id)
         device = call.device_info_map.get(device_id)
         print('debugger::device_id is23232323232 ', device_id, device, flush=True)
+        print("bridge call_info.answer_time:%s,device_info.answer_time%s" % (call.answer_time, device.answer_time),
+              flush=True)
         if device.device_type == DeviceType.AGENT.code: # 如果是坐席接听 变更坐席状态
             self.dataHandleServer.update_agent_monitor_service_state(device_id, AgentServiceState.IDLE.code)
         pass

+ 1 - 1
src/core/callcenter/push.py

@@ -48,7 +48,7 @@ class PushHandler:
         new_data = {'data': json.dumps(data)}
         self.push_to_socket_service(user_id, json.dumps(new_data))
 
-    def push_on_call_ring(self, saas_id, flow_id, user_id,scene, call_id, file_name, calling_no, called_no, human_service_id):
+    def push_on_call_ring(self, saas_id, flow_id, user_id,scene: AgentScene, call_id, file_name, calling_no, called_no, human_service_id):
         data = {
             'eventName': DownEvent.ON_CALLRING.code,
             'ext': {