|
@@ -204,11 +204,12 @@ class AgentEventService:
|
|
|
if CHANNEL_ORIGINATE == event_name and is_agent:
|
|
|
self.push_handler.push_on_call_ring(saas_id, flow_id, agent_num, AgentScene.ROBOT, call_id, ServiceDirect.ROBOT_CALL.service_direct, called, caller, human_service_id)
|
|
|
self.push_handler.push_on_agent_work_report(saas_id, flow_id, agent_num, call_id, AgentScene.ROBOT, WorkStatus.AGENT_RINGING,phone=call_info.caller)
|
|
|
+ self.data_handle_server.update_record(call_id, transfer_user_id=agent.user_id,transfer_user_name=agent.agent_name) #转接给客服以后更新转接人
|
|
|
|
|
|
|
|
|
if CHANNEL_ANSWER == event_name:
|
|
|
self.agent_state_service.busy(saas_id, agent.agent_num, agent.phone_num)
|
|
|
- self.data_handle_server.update_record(call_id, status=1, transfer_user_id=agent.user_id,transfer_user_name=agent.agent_name)
|
|
|
+ # self.data_handle_server.update_record(call_id, status=1, transfer_user_id=agent.user_id,transfer_user_name=agent.agent_name)
|
|
|
if is_agent:
|
|
|
self.agent_monitor_service.update_calling(agent_monitor)
|
|
|
self.push_handler.push_on_agent_work_report(saas_id, flow_id, agent_num, call_id, AgentScene.ROBOT, WorkStatus.AGENT_ANSWER_INCOMING, "座席接通呼入电话! internal")
|