소스 검색

fix: 修改通话状态

余尚辉 4 달 전
부모
커밋
2603028b80
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/core/callcenter/esl/handler/channel_bridge_handler.py

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

@@ -23,11 +23,11 @@ class ChannelBridgeHandler(EslEventHandler):
         device = call.device_info_map.get(device_id)
         if not call.answer_time:
             call.answer_time = EslEventUtil.getEventDateTimestamp(event)
+            self.cache.add_call_info(call)
 
         print('debugger::device_id is23232323232 ', device_id, device, flush=True)
         print("bridge call_info.answer_time:%s,device_info.answer_time%s,device.device_type%s" % (call.answer_time, device.answer_time,device.device_type),
               flush=True)
-        self.cache.add_call_info(call)
         if device.device_type == DeviceType.AGENT.code: # 如果是坐席接听 变更坐席状态
             print("变更坐席状态:%s" % call.agent_key)
             self.dataHandleServer.update_agent_monitor_service_state(call.agent_key, AgentServiceState.CALLING.code)