DavidLiu 3 months ago
parent
commit
f6aaa9c246
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/core/callcenter/agent.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)
 
-        # 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