|
@@ -70,18 +70,24 @@ class CallService:
|
|
|
self.agent_actionlog_service.insert_service_state(agent_monitor, AgentServiceState.DIALING, AgentLogState.DIALING)
|
|
|
self.data_handle_server.create_record(call_info.call_id, call_info.called, call_info.call_type, service_category=0, destination=agent_id, category=1)
|
|
|
|
|
|
- def hold(self, call_info: CallInfo, device_id):
|
|
|
- devices = call_info.device_list
|
|
|
- # try:
|
|
|
- # devices.remove(device_id)
|
|
|
- # except:
|
|
|
- # pass
|
|
|
- # custom_device_id = devices[0]
|
|
|
- custom_device_id = device_id
|
|
|
- self.logger.info('hold, custom_device_id=%s'%custom_device_id)
|
|
|
- self.client.bridge_break(call_info.call_id, custom_device_id)
|
|
|
- self.cache.set_need_play_hold_music(call_info.call_id)
|
|
|
- self.logger.info('hold success custom_device_id=%s'%custom_device_id)
|
|
|
+ def hold(self, call_id, device_id):
|
|
|
+ self.logger.info('hold, custom_device_id=%s'%device_id)
|
|
|
+ self.client.bridge_break(call_id, device_id)
|
|
|
+ self.cache.set_need_play_hold_music(call_id)
|
|
|
+ self.logger.info('hold success custom_device_id=%s'%device_id)
|
|
|
+
|
|
|
+ # def hold(self, call_info: CallInfo, device_id):
|
|
|
+ # devices = call_info.device_list
|
|
|
+ # # try:
|
|
|
+ # # devices.remove(device_id)
|
|
|
+ # # except:
|
|
|
+ # # pass
|
|
|
+ # # custom_device_id = devices[0]
|
|
|
+ # custom_device_id = device_id
|
|
|
+ # self.logger.info('hold, custom_device_id=%s'%custom_device_id)
|
|
|
+ # self.client.bridge_break(call_info.call_id, custom_device_id)
|
|
|
+ # self.cache.set_need_play_hold_music(call_info.call_id)
|
|
|
+ # self.logger.info('hold success custom_device_id=%s'%custom_device_id)
|
|
|
|
|
|
def cancel_hold(self, call_info: CallInfo, device_id):
|
|
|
self.client.bridge_call(call_info.call_id, call_info.device_list[0], call_info.device_list[1])
|