|
@@ -31,17 +31,16 @@ class AcdService:
|
|
|
self.checkIdleScheduler.add_job(self.try_transfer_agent, 'interval', seconds=2, max_instances=1)
|
|
|
self.checkIdleScheduler.start()
|
|
|
|
|
|
- def hold(self, call_id, device_id):
|
|
|
- # 1. hold住并且播放等待音
|
|
|
- self.call_service.hold(call_id, device_id)
|
|
|
- # self.wait_timeout(call_id)
|
|
|
-
|
|
|
- def transfer_to_agent(self, call_id, device_id, service_id='00000000000000000'):
|
|
|
+ def transfer_to_agent(self, call_id, device_id, service_id='00000000000000000', hold=False):
|
|
|
call_info = self.cache.get_call_info(call_id)
|
|
|
self.logger.info('transfer_to_agent, come in, call_id:%s, call_info:%s'%(call_id, call_info))
|
|
|
if not call_info:
|
|
|
return
|
|
|
call_info.answer_flag = AnswerFlag.TRANSFER_TO_AGENT.code
|
|
|
+ # 1. hold住并且播放等待音
|
|
|
+ if hold:
|
|
|
+ self.call_service.hold(call_id, device_id)
|
|
|
+ self.wait_timeout(call_id)
|
|
|
# 获得空闲坐席
|
|
|
agent_number = self.agent_service.assign(AgentActionRequest(saas_id=saasId, service_id=service_id))
|
|
|
if not agent_number:
|
|
@@ -106,4 +105,4 @@ class AcdService:
|
|
|
|
|
|
def wait_timeout(self, call_id, timeouts=30):
|
|
|
delay_action = DelayAction(call_id=call_id)
|
|
|
- # self.cache.add_delay_message(DelayActionEnum.ACD_TIMEOUT_PLAY.name, delay_action, timeouts)
|
|
|
+ self.cache.add_delay_message(DelayActionEnum.ACD_TIMEOUT_PLAY.name, delay_action, timeouts)
|