|
@@ -9,15 +9,15 @@ class DataHandleServer:
|
|
|
self.app = app
|
|
|
|
|
|
@with_app_context
|
|
|
- def create_record(self, call_id, caller_number, call_type, service_category=None, destination=None):
|
|
|
+ def create_record(self, call_id, caller_number, call_type, service_category=None, destination=None, category=0):
|
|
|
call_info = {
|
|
|
"session_id": call_id,
|
|
|
"time_begin": datetime.utcnow(),
|
|
|
- "category": 0,
|
|
|
+ "category": category,
|
|
|
"phone": caller_number,
|
|
|
"type": call_type,
|
|
|
"service_category": service_category,
|
|
|
- "agent_num":destination,
|
|
|
+ # "agent_num":destination,
|
|
|
"user_id":destination,
|
|
|
"user_name": f"机器人{destination}" if destination else None,
|
|
|
}
|
|
@@ -27,10 +27,9 @@ class DataHandleServer:
|
|
|
if hasattr(call_record, key): # 确保模型有这个属性
|
|
|
setattr(call_record, key, value)
|
|
|
try:
|
|
|
- if call_info.get("type") in [0, 2] or call_info.get("category") == 1: # 如果呼入类型是白名单和传统服务或者是呼出 修改用户id和用户名称
|
|
|
- agent_num = call_info.get("agent_num") # 使用 get 方法
|
|
|
- if agent_num: # 确保 agent_num 存在
|
|
|
- agent = self.get_user_name(agent_num)
|
|
|
+ if call_type in [0, 2] or category == 1: # 如果呼入类型是白名单和传统服务或者是呼出修改坐席id和坐席名称
|
|
|
+ if destination: # 确保 agent_num 存在
|
|
|
+ agent = self.get_user_name(destination)
|
|
|
call_record.user_id = agent.user_id
|
|
|
call_record.user_name = agent.agent_name
|
|
|
db.session.add(call_record)
|
|
@@ -41,10 +40,10 @@ class DataHandleServer:
|
|
|
raise ValueError(f"创建记录失败: {e}")
|
|
|
|
|
|
@with_app_context
|
|
|
- def update_record(self, session_id, call_info):
|
|
|
+ def update_record(self, session_id, **kwargs):
|
|
|
call_record = CallRecord.query.filter(CallRecord.session_id == session_id).first()
|
|
|
# 动态更新字段
|
|
|
- for key, value in call_info.items():
|
|
|
+ for key, value in kwargs.items():
|
|
|
if hasattr(call_record, key):
|
|
|
setattr(call_record, key, value)
|
|
|
db.session.commit()
|
|
@@ -101,5 +100,5 @@ class DataHandleServer:
|
|
|
def update_call_record_bussiness_type(self, session):
|
|
|
BotRecord = BotRecords.query.filter(BotRecords.session == session).first()
|
|
|
print("BotRecord",BotRecord.intent,session,flush=True)
|
|
|
- self.update_record(session, {"bussiness_type": BotRecord.intent})
|
|
|
+ self.update_record(session, bussiness_type=BotRecord.intent)
|
|
|
db.session.commit()
|