774056846 4 місяців тому
батько
коміт
d4ac5f8593

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

@@ -17,8 +17,8 @@ from src.core.callcenter.enumeration import CallType, DeviceType, Direction, Cdr
 class BaseApi:
     @classmethod
     def from_json(cls, json_string=None):
-        data = get_json_dict(json_string)
-        return cls(**data)
+        json_dict = get_json_dict(json_string)
+        return cls(**json_dict)
 
     def to_json_string(self):
         return json.dumps(self, default=lambda x: x.__dict__, ensure_ascii=False)

+ 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)
-        self.logger.info('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)
-            self.logger.info('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)
 

+ 9 - 8
src/core/callcenter/constant.py

@@ -82,14 +82,15 @@ CTI_ENGINE_DELAY_ACTION = "DELAY:ACTION:%s"
 CTI_ENGINE_DELAY_ACTION_LOCK = "DELAY:ACTION:LOCK:%s"
 NEED_PLAY_HOLD_MUSIC = "CTI:ENGINE:NEED:HOLD:%s"
 
-def get_json_dict(json_string=None):
-    data = json_string
-    if isinstance(json_string, str):
-        data = json.loads(json_string)
-    elif isinstance(json_string, bytes):
-        json_string = json_string.decode('UTF-8')
-        data = json.loads(json_string)
-    return data
+def get_json_dict(json_text=None):
+    if isinstance(json_text, str):
+        _data = json.loads(json_text)
+    elif isinstance(json_text, bytes):
+        json_string = json_text.decode('UTF-8')
+        _data = json.loads(json_string)
+    else:
+        _data = json_text
+    return _data
 
 
 def success_response(data=None, code=0, msg=""):