|
@@ -25,7 +25,7 @@ from src.core.callcenter.esl.constant.esl_constant import BRIDGE_VARIABLES, BRID
|
|
|
UUID_RECORD, UUID_SETVAR, UUID_GETVAR, UUID_KILL, ANSWER
|
|
|
import src.core.callcenter.esl.utils.esl_event_util as EslEventUtil
|
|
|
import src.core.callcenter.esl.handler as event_handler
|
|
|
-from src.core.callcenter.esl.constant.sip_header_constant import sipHeaderHoldMusic, profile1, profile2
|
|
|
+from src.core.callcenter.esl.constant.sip_header_constant import sipHeaderHoldMusic, profile1, profile2, sipHeaderCallId
|
|
|
from src.core.callcenter.enumeration import CallCause, DeviceType, DelayActionEnum, HangupDir, CallType, NextType, \
|
|
|
Direction, CdrType, BizErrorCode
|
|
|
from src.core.callcenter.esl.handler.default_esl_event_handler import DefaultEslEventHandler
|
|
@@ -582,6 +582,7 @@ class OutboundClient:
|
|
|
|
|
|
def answer(self, con, call_id, device_id, timeouts=30):
|
|
|
con.execute("answer", "", device_id)
|
|
|
+ con.execute("uuid_setvar", f"{device_id} {sipHeaderCallId} {call_id}")
|
|
|
con.execute("playback", HOLD_MUSIC_PATH, device_id)
|
|
|
|
|
|
delay_action = DelayAction(call_id=call_id)
|