shanghui il y a 3 mois
Parent
commit
893bfdf7ec
2 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 3 3
      src/core/callcenter/agent.py
  2. 1 1
      src/core/callcenter/config.py

+ 3 - 3
src/core/callcenter/agent.py

@@ -295,9 +295,9 @@ class AgentOperService:
         self.agent_actionlog_service.insert_check_state(agent_monitor, AgentCheck.IN, AgentLogState.CHECKIN)
         self.agent_state_service.checkin(agent.saas_id, agent.out_id, agent.phone_num)
         print("checkin", agent_monitor,agent_monitor.check_state)
-        # if req.scene == AgentScene.MANUAL.code:
-        #     # 如果是手动外呼增加置忙
-        #     self._handle_idle(req.scene, agent)
+        if req.scene == AgentScene.MANUAL.code:
+            # 如果是手动外呼增加置忙
+            self._handle_idle(req.scene, agent)
         return self._push_event_for_checkin(agent, agent_monitor, phone, req.scene)
 
     @with_app_context

+ 1 - 1
src/core/callcenter/config.py

@@ -18,7 +18,7 @@ class BaseConfig(object):
 
     SQLALCHEMY_DATABASE_URI = f"{DIALCT}+{DRITVER}://{USERNAME}:{PASSWORD}@{HOST}:{PORT}/{DBNAME}?charset=utf8"
     SQLALCHEMY_TRACK_MODIFICATIONS = False   # Disable track modifications
-    SQLALCHEMY_ECHO = False  # Optional: Log SQL queries
+    SQLALCHEMY_ECHO = True  # Optional: Log SQL queries
 
 
 dictConfig({