774056846 4 months ago
parent
commit
86b35afe21
1 changed files with 3 additions and 2 deletions
  1. 3 2
      src/core/callcenter/esl/client.py

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

@@ -523,7 +523,8 @@ class OutboundClient:
 
                     self.build_call_info(call_id, device_id, new_device_id, str(destination), **kwargs)
                     Cache.add_device_user_part(device_id, destination)
-                    con.execute("bridge", "{sip_h_P-LIBRA-CallId=%s,sip_h_P-LIBRA-DeviceId=%s,origination_uuid=%s}user/%s"%(call_id, new_device_id, new_device_id, destination), device_id)
+                    # con.execute("bridge", "{sip_h_P-LIBRA-CallId=%s,sip_h_P-LIBRA-DeviceId=%s,origination_uuid=%s}user/%s"%(call_id, new_device_id, new_device_id, destination), device_id)
+                    con.bgapi(ORIGINATE, "{sip_h_P-LIBRA-CallId=%s,sip_h_P-LIBRA-DeviceId=%s,origination_uuid=%s}user/%s"%(call_id, new_device_id, new_device_id, destination))
 
                     # destination = "user/1001"
                     # msg = ESL.ESLevent("sendmsg", uuid)
@@ -565,7 +566,7 @@ class OutboundClient:
 
             call_info.device_list.append(device_id)
             call_info.device_list.append(new_device_id)
-            # call_info.next_commands.append(NextCommand(device_id, NextType.NEXT_CALL_OTHER.code))
+            call_info.next_commands.append(NextCommand(device_id, NextType.NEXT_CALL_BRIDGE.code, new_device_id))
             call_info.device_info_map = {device_id: device_custom, new_device_id: device_bot}
             Cache.add_call_info(call_info)