|
@@ -22,6 +22,7 @@ class DataHandleServer:
|
|
|
"user_name": f"机器人{destination}" if destination else None,
|
|
|
}
|
|
|
call_record = CallRecord()
|
|
|
+ self.app.logger.info(f"创建通话记录: {call_info}")
|
|
|
# 处理多余的参数
|
|
|
for key, value in call_info.items():
|
|
|
if hasattr(call_record, key): # 确保模型有这个属性
|
|
@@ -30,6 +31,7 @@ class DataHandleServer:
|
|
|
if call_type in [0, 2] or category == 1: # 如果呼入类型是白名单和传统服务或者是呼出修改坐席id和坐席名称
|
|
|
if destination: # 确保 agent_num 存在
|
|
|
agent = self.get_user_name(destination)
|
|
|
+ self.app.logger.info(f"创建通话记录 agent: {agent}")
|
|
|
call_record.user_id = agent.user_id
|
|
|
call_record.user_name = agent.agent_name
|
|
|
else: # 如果是机器人,则修改状态为已接通
|