余尚辉 4 months ago
parent
commit
ad68f17a5b
2 changed files with 6 additions and 8 deletions
  1. 4 6
      src/core/callcenter/data_handler.py
  2. 2 2
      src/core/voip/bot.py

+ 4 - 6
src/core/callcenter/data_handler.py

@@ -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()

+ 2 - 2
src/core/voip/bot.py

@@ -366,8 +366,8 @@ class MyCall(pj.Call):
         elif action_code == 'transfer':  # 转人工
             print('todo 转人工')
             self.agent.transfer(user_part=self.user_part, call_id=self.session_id, device_id=self.device_id)
-            #更新通话记录机器人意图
-            self.agent.dataHandleServer.update_call_record_bussiness_type(self.session_id)
+            #更新通话记录
+            self.agent.dataHandleServer.update_record(self.session_id, service_category=2)
 
 class ToTextBotAgent:
     def __init__(self, user_asr_text, call_agent):