|
@@ -18,7 +18,7 @@ class PushHandler:
|
|
|
# 获取 RedisHandler 实例并发布消息到 Redis 频道
|
|
|
redis_handler = RedisHandler()
|
|
|
redis_handler.publish('socket_channel', message)
|
|
|
- def push_on_agent_work_report(self, saas_id, flow_id, user_id, call_id, scene: AgentScene, work_status: WorkStatus, description=""):
|
|
|
+ def push_on_agent_work_report(self, saas_id, flow_id, user_id, call_id, scene: AgentScene, work_status: WorkStatus, description=None):
|
|
|
data = {
|
|
|
'eventName': DownEvent.ON_AGENT_WORK_REPORT.code,
|
|
|
'ext': {'workStatus': work_status.code,
|
|
@@ -48,15 +48,13 @@ class PushHandler:
|
|
|
new_data = {'data': json.dumps(data)}
|
|
|
self.push_to_socket_service(user_id, json.dumps(new_data))
|
|
|
|
|
|
- def push_on_call_ring(self, saas_id, flow_id, user_id,scene, call_id, file_name, calling_no, called_no, human_service_id):
|
|
|
+ def push_on_call_ring(self, saas_id, flow_id, user_id,scene:AgentScene, call_id, calling_no, called_no, human_service_id):
|
|
|
data = {
|
|
|
'eventName': DownEvent.ON_CALLRING.code,
|
|
|
'ext': {
|
|
|
'callId':call_id,
|
|
|
'ctiFlowId':flow_id,
|
|
|
'scene': scene.code,
|
|
|
- 'fileName': file_name,
|
|
|
- 'serviceDirect':'',
|
|
|
'callingNo': calling_no,
|
|
|
'calledNo': called_no,
|
|
|
'serviceTaskId': human_service_id
|