This commit is contained in:
何美荣 2026-07-27 14:41:35 +08:00
parent a5eed05199
commit c8d7d7ceb4

View File

@ -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);
}
}