From c49500f90630b990eaf5b460824cb4920655689a Mon Sep 17 00:00:00 2001 From: jrbin Date: Thu, 23 Nov 2023 09:55:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B1=B0=E6=94=B9=E7=B0=BD=E6=A0=B8bug=20fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wms/fun_global.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wms/fun_global.php b/wms/fun_global.php index b00c9d19..e995e449 100644 --- a/wms/fun_global.php +++ b/wms/fun_global.php @@ -124,11 +124,11 @@ function pricereview_renovate_class($rate, $user_id, $renovate_flag) { mysqli_free_result($res); if ($renovate_flag == "REN") { - if ($rate < 80 && $rate >= 60) $ret[3] = "M0008"; // 詹總 + if ($rate < 80) $ret[3] = "M0008"; // 詹總 if ($rate < 60) $ret[4] = "M0006"; // 總經理 } else { // 全汰改 - if ($rate < 80 && $rate >= 75) $ret[3] = "M0008"; // 詹總 + if ($rate < 80) $ret[3] = "M0008"; // 詹總 if ($rate < 75) $ret[4] = "M0006"; // 總經理 }