From 1b3e33607237f1e5898982130b86df6134c65e47 Mon Sep 17 00:00:00 2001 From: vilson <545522390@qq.com> Date: Tue, 25 Feb 2020 10:46:27 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E7=87=83=E5=B0=BD=E5=9B=BE?= =?UTF-8?q?=E5=9F=BA=E7=BA=BF=E8=AE=A1=E7=AE=97=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: vilson <545522390@qq.com> --- application/common/Model/ProjectReport.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/common/Model/ProjectReport.php b/application/common/Model/ProjectReport.php index c902eed..2e87129 100644 --- a/application/common/Model/ProjectReport.php +++ b/application/common/Model/ProjectReport.php @@ -51,12 +51,12 @@ class ProjectReport extends CommonModel } } if ($max) { - $each = ceil($max / ($day - 1)); + $each = round($max / ($day - 1), 1); $current = $max; for ($i = 1; $i <= $day; $i++) { + ($current < 0 || $day == $i) && $current = 0; $baseLineList[] = $current; $current -= $each; - $current < 0 && $current = 0; } } return ['date' => $dateList, 'task' => $taskList, 'undoneTask' => $undoneTaskList, 'baseLineList' => $baseLineList];