余尚辉 4 mesi fa
parent
commit
62bb06f059

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

@@ -35,7 +35,7 @@ class DataHandleServer:
 
     @with_app_context
     def update_record(self, session_id, call_info):
-        call_record = CallRecord.query.filter_by(CallRecord.session_id==session_id).first()
+        call_record = CallRecord.query.filter(CallRecord.session_id == session_id).first()
         # 动态更新字段
         for key, value in call_info.items():
             if hasattr(call_record, key):

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

@@ -113,7 +113,7 @@ class ChannelHangupHandler(EslEventHandler):
                 if call_info.answer_time:
                     call_info.end_time = timestamp
                     call_info.talk_time = int(call_info.end_time) - int(call_info.answer_time)
-                    self.dataHandleServer.update_record(call_id, {"time_end": datetime.utcnow(), "times": call_info.talk_time / 1000 / 1000 })
+                    self.dataHandleServer.update_record(call_id, {"time_end": datetime.utcnow(), "times": call_info.talk_time / 1_000_000 })
 
             # 判断挂机方向 && 更新缓存
             self.hangup_dir(call_info, device_info, cause)