余尚辉 4 månader sedan
förälder
incheckning
5161dcff2a

+ 1 - 1
src/core/callcenter/call.py

@@ -66,7 +66,7 @@ class CallService:
         })
         # 变更坐席状态为拨号中
         self.dataHandleServer.update_agent_monitor_service_state(request.agent_id, AgentServiceState.DIALING.code)
-        self.push_handler.push_on_agent_work_report(request.saas_id, request.cti_flow_id, request.agent_id, call_id,AgentScene.ROBOT, WorkStatus.AGENT_HANG_IDLE)
+        self.push_handler.push_on_agent_work_report(request.saas_id, request.cti_flow_id, request.agent_id, call_id,AgentScene.ROBOT, WorkStatus.AGENT_DIALING)
         return call_id
 
     def hold(self, call_info: CallInfo, device_id):

+ 1 - 1
src/core/callcenter/esl/handler/channel_originate_handler.py

@@ -20,6 +20,6 @@ class ChannelOriginateHandler(EslEventHandler):
         call = self.cache.get_call_info(call_id)
         device = call.device_info_map.get(device_id)
         self.logger.info('ChannelOriginateHandler::event %s, device.device_type: %s, DeviceType.AGENT.code:%s ', event,device.device_type, DeviceType.AGENT.code)
-        if call.direction== Direction.INBOUND.code and device.device_type == DeviceType.AGENT.code: # 如果是呼入有响铃
+        if call.direction == Direction.INBOUND.code and device.device_type == DeviceType.AGENT.code: # 如果是呼入有响铃
             self.push_handler.push_on_call_ring(call.cti_flow_id,call.agent_key,AgentScene.ROBOT,call.call_id,call.caller, call.called,"00000000000000000")
             self.push_handler.push_on_agent_work_report(call.saas_id, call.cti_flow_id,call.agent_key,call.call_id,AgentScene.ROBOT, WorkStatus.AGENT_RINGING,phone=call.caller)