shanghui 2 months ago
parent
commit
6aeb43dbea
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/core/callcenter/agent.py

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

@@ -104,6 +104,8 @@ class AgentEventService:
             # 信道发起事件,触发完成发起(或桥)&& 坐席侧
             if CHANNEL_ORIGINATE == event_name and is_agent:
                 self.push_handler.push_on_agent_work_report(saas_id, flow_id, agent_num, call_id, AgentScene.MANUAL, WorkStatus.AGENT_RINGING,phone=call_info.caller)
+                self.logger.info('信道发起事件:%s', agent)
+                self.data_handle_server.update_record(call_id, user_id=agent.user_id, user_name=agent.agent_name)
 
             # 进度事件,外呼时对方提醒。或者入呼时提醒 && 坐席侧
             if CHANNEL_PROGRESS == event_name and is_agent:
@@ -145,7 +147,7 @@ class AgentEventService:
                         self.cache.set_call_is_end(call_id)
                 self.agent_monitor_service.update_processing(agent_monitor)
                 self.logger.info('挂断更新:%s', agent)
-                self.data_handle_server.update_record(call_id, user_id=agent.user_id, user_name=agent.agent_name)
+                # self.data_handle_server.update_record(call_id, user_id=agent.user_id, user_name=agent.agent_name)
                 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')
                 self.push_handler.push_on_agent_work_report(saas_id, flow_id, agent_num, call_id, AgentScene.MANUAL, WorkStatus.AGENT_HANG_REPROCESSING)