余尚辉 vor 4 Monaten
Ursprung
Commit
8ec5ef7ddb

+ 2 - 2
src/core/callcenter/esl/handler/channel_progress_media_handler.py

@@ -2,7 +2,7 @@
 # encoding:utf-8
 
 from src.core.callcenter.esl.annotation import EslEventName
-from src.core.callcenter.enumeration import  DeviceType,AgentScene,WorkStatus
+from src.core.callcenter.enumeration import  DeviceType,AgentScene,WorkStatus, Direction
 from src.core.callcenter.esl.constant.event_names import CHANNEL_PROGRESS_MEDIA
 from src.core.callcenter.esl.handler.esl_event_handler import EslEventHandler
 import src.core.callcenter.esl.utils.esl_event_util as EslEventUtil
@@ -21,5 +21,5 @@ class ChannelProgressMediaHandler(EslEventHandler):
         call_info = self.cache.get_call_info(call_id)
         device = call_info.device_info_map.get(device_id)
         self.logger.info('ChannelProgressMediaHandler:: device.device_type: %s,  call_info.direction: %s ',device.device_type, call_info.direction)
-        if device.device_type == DeviceType.AGENT.code:
+        if call_info.direction == Direction.OUTBOUND.code and device.device_type == DeviceType.CUSTOMER.code:
             self.push_handler.push_on_agent_work_report(call_info.saas_id, call_info.cti_flow_id, call_info.agent_key, call_info.call_id, AgentScene.MANUAL, WorkStatus.AGENT_CALLING_RINGING)