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

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

@@ -135,7 +135,6 @@ 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,8 +205,8 @@ 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.reprocessing_idle(AgentDelayStateData(saas_id, flow_id, agent_num, AgentServiceState.REPROCESSING, AgentScene.ROBOT))
             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)
             self.push_handler.push_on_agent_report(saas_id, agent_num, AgentScene.ROBOT, AgentServiceState.REPROCESSING)