|
@@ -42,6 +42,10 @@ class DataHandleServer:
|
|
|
@with_app_context
|
|
|
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:
|
|
|
+ bot_record = BotRecords.query.filter(BotRecords.session == session_id).first()
|
|
|
+ call_record.bussiness_type = bot_record.intent
|
|
|
# 动态更新字段
|
|
|
for key, value in kwargs.items():
|
|
|
if hasattr(call_record, key):
|
|
@@ -96,9 +100,3 @@ class DataHandleServer:
|
|
|
agent_monitor.service_state = service_state
|
|
|
db.session.commit()
|
|
|
|
|
|
- @with_app_context
|
|
|
- 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)
|
|
|
- db.session.commit()
|