774056846 4 ماه پیش
والد
کامیت
2f495b44a5
4فایلهای تغییر یافته به همراه5 افزوده شده و 5 حذف شده
  1. 0 1
      src/core/callcenter/api.py
  2. 2 2
      src/core/callcenter/cache.py
  3. 2 1
      src/core/callcenter/call.py
  4. 1 1
      src/core/voip/bot.py

+ 0 - 1
src/core/callcenter/api.py

@@ -507,7 +507,6 @@ class CallInfo(BaseApi):
         process_data: Dict[str, Any] = {key: value for key, value in data.get('process_data', {}).items()}
         next_commands = [NextCommand(**x) for x in data.get('next_commands', [])]
         call_details = [CallDetail(**x) for x in data.get('call_details', [])]
-        print("daviddebugger::data:%s"%data, flush=True)
         return cls(core_uuid=data.get('core_uuid'), cti_flow_id=data.get('cti_flow_id'), call_id=data.get('call_id'),
                    conference=data.get('conference'), saas_id=data.get('saas_id'), group_id=data.get('group_id'),
                    hidden_customer=data.get('hidden_customer'), caller_display=data.get('caller_display'),

+ 2 - 2
src/core/callcenter/cache.py

@@ -64,7 +64,7 @@ class Cache:
     def add_call_info(self, call: CallInfo):
         for k, v in call.device_info_map.items():
             self.add_device(k, call.call_id)
-        print('daviddebugger::add_call_info call_id:%s, call=%s'% (call.call_id, call))
+        # print('daviddebugger::add_call_info call_id:%s, call=%s'% (call.call_id, call))
         self.redis_handler.set(CALL_INFO + call.call_id, call.to_json_string(), self.cacheDay * 24 * 60 * 60)
 
 
@@ -79,7 +79,7 @@ class Cache:
         text = None
         if call_id:
             text = self.redis_handler.get(CALL_INFO + call_id)
-            print('daviddebugger::get_call_info call_id:%s, text:%s'% (call_id, text))
+            # print('daviddebugger::get_call_info call_id:%s, text:%s'% (call_id, text))
         if text:
             return CallInfo.from_json(text)
 

+ 2 - 1
src/core/callcenter/call.py

@@ -35,7 +35,8 @@ class CallService:
                              caller=agent.agent_number, called=request.called, direction=Direction.INBOUND.code,
                              caller_display=request.caller_display, called_display=request.called_display,
                              call_type=request.call_type.code, call_time=now, follow_data=request.follow_data,
-                             uuid1=request.uuid1, uuid2=request.uuid2, saas_id=saasId)
+                             uuid1=request.uuid1, uuid2=request.uuid2, saas_id=saasId, device_list=[],device_info_map = {},
+                             process_data = {}, next_commands=[], call_details=[])
         device_info = DeviceInfo(cti_flow_id=request.cti_flow_id, device_id=device_id, call_time=now, call_id=call_id, device_type=DeviceType.AGENT.code,
                                  agent_key=agent.agent_number, caller_display=route_gateway.name, cdr_type=CdrType.INBOUND.code)
         call_info.device_list.append(device_id)

+ 1 - 1
src/core/voip/bot.py

@@ -556,7 +556,7 @@ class BotAgent:
         while try_count >0:
             if self.cache.get_need_play_hold_music(call_id):
                 self.hangup(user_part)
-                self.cache.del_need_play_hold_music(call_id)
+                # self.cache.del_need_play_hold_music(call_id)
                 break
             time.sleep(1)