DavidLiu před 3 měsíci
rodič
revize
36da1ef421
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      src/core/callcenter/esl/client.py

+ 2 - 1
src/core/callcenter/esl/client.py

@@ -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)