|
@@ -19,9 +19,13 @@ class ChannelBridgeHandler(EslEventHandler):
|
|
|
device_id = EslEventUtil.getDeviceId(event)
|
|
|
call = self.cache.get_call_info(call_id)
|
|
|
device = call.device_info_map.get(device_id)
|
|
|
+ if not call.answer_time:
|
|
|
+ call.answer_time = EslEventUtil.getEventDateTimestamp(event)
|
|
|
+
|
|
|
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),
|
|
|
+ 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)
|
|
|
if device.device_type == DeviceType.AGENT.code: # 如果是坐席接听 变更坐席状态
|
|
|
- self.dataHandleServer.update_agent_monitor_service_state(device_id, AgentServiceState.IDLE.code)
|
|
|
+ print("变更坐席状态:%s" % call.agent_key)
|
|
|
+ self.dataHandleServer.update_agent_monitor_service_state(call.agent_key, AgentServiceState.IDLE.code)
|
|
|
pass
|