Ver código fonte

Merge branch 'dev_20241205' of ssh://gitlab.fuxicarbon.com:1111/client_service/voice-gateway-service into dev_20241205

DavidLiu 3 meses atrás
pai
commit
b661db38db

+ 1 - 0
src/core/callcenter/agent.py

@@ -120,6 +120,7 @@ class AgentEventService:
                         return
 
                 self.agent_state_service.busy(saas_id, agent.agent_num, agent.phone_num)
+                self.logger.info('agent接通:',agent )
                 self.data_handle_server.update_record(call_id, status=1, user_id=agent.user_id,user_name=agent.agent_name)
                 if is_agent:
                     # 坐席接起

+ 1 - 0
src/core/callcenter/data_handler.py

@@ -45,6 +45,7 @@ class DataHandleServer:
         for key, value in kwargs.items():
             if hasattr(call_record, key):
                 setattr(call_record, key, value)
+        self.app.logger.info(f"更新通话记录: {kwargs}")
         db.session.commit()
 
     @with_app_context