余尚辉 vor 4 Monaten
Ursprung
Commit
d5918dc789
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. 2 1
      src/core/callcenter/agent.py

+ 2 - 1
src/core/callcenter/agent.py

@@ -135,7 +135,7 @@ class AgentEventService:
             if is_agent:
                 if call_id:
                     self.cache.set_call_is_end(call_id)
-
+            self.logger.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')
@@ -206,6 +206,7 @@ class AgentEventService:
                 self.push_handler.push_on_agent_work_report(saas_id, flow_id, agent_num, call_id, AgentScene.ROBOT, WorkStatus.AGENT_ANSWER_INCOMING, "座席接通呼入电话! external")
 
         if CHANNEL_HANGUP == event_name and is_agent:
+            self.logger.info('机器人挂断')
             self.agent_monitor_service.update_processing(agent_monitor)
             self.push_handler.push_on_call_end(saas_id, flow_id, agent_num, AgentScene.ROBOT, ServiceDirect.ROBOT_CALL.service_direct, "0")
             self.push_handler.push_on_agent_work_report(saas_id, flow_id, agent_num, call_id, AgentScene.ROBOT, WorkStatus.AGENT_HANG_REPROCESSING)