|
@@ -140,6 +140,7 @@ class AgentEventService:
|
|
|
if is_agent:
|
|
|
if call_id:
|
|
|
self.cache.set_call_is_end(call_id)
|
|
|
+ self.get_call_info_record(call_info)
|
|
|
self.agent_monitor_service.update_processing(agent_monitor)
|
|
|
self.reprocessing_idle(AgentDelayStateData(saas_id, flow_id, agent_num, AgentServiceState.REPROCESSING, AgentScene.MANUAL))
|
|
|
self.push_handler.push_on_call_end(saas_id, flow_id, agent_num, AgentScene.MANUAL, ServiceDirect.MANUAL_CALL.service_direct, '0')
|
|
@@ -149,7 +150,7 @@ class AgentEventService:
|
|
|
self.agent_actionlog_service.insert_service_state(agent_monitor, AgentServiceState.REPROCESSING, AgentLogState.CHANNEL_HANG_UP)
|
|
|
|
|
|
self.data_handle_server.update_record(call_id, time_end=datetime.now())
|
|
|
- self.get_call_info_record(call_info)
|
|
|
+
|
|
|
# 同步处理后处理置闲
|
|
|
# reprocessingIdle(statusDto);
|
|
|
# agentProducer.pushDelayedStatus(statusDto, reprocessingTimeout);
|
|
@@ -223,7 +224,9 @@ class AgentEventService:
|
|
|
self.agent_actionlog_service.insert_service_state(agent_monitor, AgentServiceState.REPROCESSING,
|
|
|
AgentLogState.CHANNEL_HANG_UP, service_id=human_service_id)
|
|
|
self.data_handle_server.update_record(call_id, time_end=datetime.now())
|
|
|
+ if CHANNEL_HANGUP == event_name:
|
|
|
self.get_call_info_record(call_info)
|
|
|
+
|
|
|
except:
|
|
|
traceback.print_exc()
|
|
|
finally:
|
|
@@ -242,6 +245,7 @@ class AgentEventService:
|
|
|
self.agent_actionlog_service.insert_service_state(agent_monitor, AgentServiceState.IDLE, AgentLogState.REPROCESSING_IDLE)
|
|
|
def get_call_info_record(self, call_info):
|
|
|
records = []
|
|
|
+ self.logger.info("yushanghuiceshi': %s", records)
|
|
|
for value in call_info.device_info_map.values():
|
|
|
records.append(value.record)
|
|
|
self.logger.info("get_call_info_record: %s", records)
|