|
@@ -16,7 +16,7 @@ from src.core.callcenter.enumeration import CallType, DeviceType, Direction, Cdr
|
|
|
|
|
|
class BaseApi:
|
|
|
@classmethod
|
|
|
- def from_json(cls, json_string):
|
|
|
+ def from_json(cls, json_string=None):
|
|
|
data = get_json_dict(json_string)
|
|
|
return cls(**data)
|
|
|
|
|
@@ -500,15 +500,15 @@ class CallInfo(BaseApi):
|
|
|
self.call_details = call_details # 电话流程
|
|
|
|
|
|
@classmethod
|
|
|
- def from_json(cls, json_string):
|
|
|
+ def from_json(cls, json_string=None):
|
|
|
data = get_json_dict(json_string)
|
|
|
device_info_map: Dict[str, Any] = {key: DeviceInfo(**value) for key, value in data.get('device_info_map', {}).items()}
|
|
|
follow_data: Dict[str, Any] = {key: value for key, value in data.get('follow_data', {}).items()}
|
|
|
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', [])]
|
|
|
-
|
|
|
- return CallInfo(core_uuid=data.get('core_uuid'), cti_flow_id=data.get('cti_flow_id'), call_id=data.get('call_id'),
|
|
|
+ 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'),
|
|
|
caller=data.get('caller'), called_display=data.get('called_display'), called=data.get('called'),
|