|
@@ -45,7 +45,7 @@ class DataHandleServer:
|
|
|
def update_record(self, session_id, **kwargs):
|
|
|
call_record = CallRecord.query.filter(CallRecord.session_id == session_id).first()
|
|
|
time_end = kwargs.get('time_end')
|
|
|
- if time_end and call_record.call_type==1:
|
|
|
+ if time_end and call_record.type==1:
|
|
|
bot_record = BotRecords.query.filter(BotRecords.session == session_id).first()
|
|
|
call_record.bussiness_type = bot_record.intent if bot_record else ''
|
|
|
# 动态更新字段
|