From 4fc0b37db9338c8a3fd4a75c9df58bf10d0d9b18 Mon Sep 17 00:00:00 2001 From: wanghongjun <1445693971@qq.com> Date: Fri, 12 Dec 2025 16:07:44 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8E=E5=8F=B0=E9=A6=96=E9=A1=B5=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1=E6=95=B0=E6=8D=AE=E6=8E=A5=E5=8F=A3=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/model/FinalReportDate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/model/FinalReportDate.php b/app/model/FinalReportDate.php index badb792..59bb042 100644 --- a/app/model/FinalReportDate.php +++ b/app/model/FinalReportDate.php @@ -15,7 +15,7 @@ class FinalReportDate extends Model if ($type == 1) { return $ydzse_sum ? number_format($ydzse_sum, 2, '.', ',') : 0; } else { - return $ydzse_sum ?: 0; + return $ydzse_sum ? round($ydzse_sum) : 0; } } }