From c8d7d7ceb4813da3a08e6c9801bbf5510ed41ba9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BD=95=E7=BE=8E=E8=8D=A3?= <10755671+mei-rong-he@user.noreply.gitee.com> Date: Mon, 27 Jul 2026 14:41:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=A5=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Api/BIController/BIStatiscialAnalysisController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/APT.MicroApi/APT.SC.WebApi/Controllers/Api/BIController/BIStatiscialAnalysisController.cs b/APT.MicroApi/APT.SC.WebApi/Controllers/Api/BIController/BIStatiscialAnalysisController.cs index 6626364..0dc5254 100644 --- a/APT.MicroApi/APT.SC.WebApi/Controllers/Api/BIController/BIStatiscialAnalysisController.cs +++ b/APT.MicroApi/APT.SC.WebApi/Controllers/Api/BIController/BIStatiscialAnalysisController.cs @@ -12347,7 +12347,7 @@ namespace APT.SC.WebApi.Controllers.Api.BIController run.FINISH_RATE = temp.ToString("0.0"); var temp2 = total == 0 ? 0 : (double)finish / total * 100; run.NORMAL_FINISH_RATE = temp2.ToString("0.0"); - run.TOTAL_QTY = total; + run.TOTAL_QTY = finish + overFinish; monthRuns.Add(run); } else @@ -12363,7 +12363,7 @@ namespace APT.SC.WebApi.Controllers.Api.BIController run.FINISH_RATE = temp.ToString("0"); var temp2 = total == 0 ? 0 : (double)finish / total * 100; run.NORMAL_FINISH_RATE = temp2.ToString("0"); - run.TOTAL_QTY = total; + run.TOTAL_QTY = finish + overFinish; monthRuns.Add(run); } }