774056846 4 meses atrás
pai
commit
630423991e

+ 2 - 1
src/core/callcenter/call.py

@@ -122,7 +122,7 @@ class CallService:
         if not devices:
             self.logger.info('hangupCallAll skip 已全部挂断 callId: %s', call_info.call_id)
             return
-        self.logger.info("hangup_all, call_id:%s, devices=%s"%(call_info.call_id, json.dumps(devices)))
+        self.logger.info("hangup_all, call_id:%s, devices=%s, case=%s"%(call_info.call_id, json.dumps(devices), case_enum))
         for device in devices:
             self.client.hangup_call(call_info.call_id, device, case_enum)
 
@@ -135,6 +135,7 @@ class CallService:
         if not devices:
             self.logger.info('hangup deviceList is null callId: %s', call_id)
             return
+        self.logger.info("hangup_all, call_id:%s, devices=%s" % (call_info.call_id, json.dumps(devices)))
         for device in devices:
             self.client.hangup_call(call_info.call_id, device, CallCause.RESTART)
 

+ 1 - 1
src/core/callcenter/esl/client.py

@@ -585,7 +585,7 @@ class OutboundClient:
                                  uuid1=call_id, uuid2=device_id, saas_id=saasId)
             device_custom = DeviceInfo(device_id=device_id, call_time=now,
                                      call_id=call_id, device_type=DeviceType.CUSTOMER.code,
-                                     agent_key=destination, cdr_type=CdrType.TRANSFER.code)
+                                     agent_key=destination, cdr_type=CdrType.OUTBOUND.code)
             device_bot = DeviceInfo(device_id=new_device_id, call_time=now,
                                      call_id=call_id, device_type=DeviceType.ROBOT.code,
                                      agent_key=destination, cdr_type=CdrType.INBOUND.code)

+ 1 - 2
src/core/callcenter/esl/handler/channel_hangup_handler.py

@@ -103,10 +103,9 @@ class ChannelHangupHandler(EslEventHandler):
             #     return
 
             # 一般情况下,挂断其他所有设备
-            if device.cdr_type < 4 and not call.end_time:
+            if device.cdr_type <= 4 and not call.end_time:
                 call.end_time = device.end_time
                 self.inbound_client.hangup_call(call_id, device_id, CallCause.HANGUP_EVENT)
-                # self.call_service.hangup_all(call, CallCause.HANGUP_EVENT)
 
             # 判断挂机方向 && 更新缓存
             self.hangup_dir(call, device, cause)