From 3e75683ee16a1364815a1350dc92d82293096932 Mon Sep 17 00:00:00 2001 From: caoqianming Date: Thu, 11 Apr 2024 16:59:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20EnvDataSerializer=20round=E5=A4=84?= =?UTF-8?q?=E7=90=862?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/enp/serializers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/enp/serializers.py b/apps/enp/serializers.py index 50446648..2dc692fa 100644 --- a/apps/enp/serializers.py +++ b/apps/enp/serializers.py @@ -129,7 +129,8 @@ class EnvDataSerializer(CustomModelSerializer): def to_representation(self, instance): representation = super().to_representation(instance) for field_name in ("dust_rtd", "dust_zs", "temperature", "pressure", "speed", "humidity", "flux", "pm25", "pm10", "tsp", "wind_speed", "so2_rtd", "so2_zs", "nox_rtd", "nox_zs", "o2"): - representation[field_name] = round(representation[field_name], 4) + if representation[field_name]: + representation[field_name] = round(representation[field_name], 4) return representation