From 2cbf56132057ad904f3793d96812bdcd3425db06 Mon Sep 17 00:00:00 2001 From: jrbin Date: Fri, 10 Nov 2023 16:30:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=9D=E9=A4=8A=E4=BA=BA=E5=93=A1=E9=81=8E?= =?UTF-8?q?=E6=BF=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wms/mkt/pricereview_repair-create.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wms/mkt/pricereview_repair-create.php b/wms/mkt/pricereview_repair-create.php index 17cf90f2..b8fd4938 100644 --- a/wms/mkt/pricereview_repair-create.php +++ b/wms/mkt/pricereview_repair-create.php @@ -22,7 +22,7 @@ mysqli_free_result($res); // 保養人員 $repairer_arr = []; -$sql = "select accountid, name from account where accounttype = 'B' order by accountid"; +$sql = "select accountid, name from account where accounttype = 'B' and accountid not in ('B000000001', 'M0008') order by accountid"; $res = mysqli_query($link, $sql); while ($row = mysqli_fetch_row($res)) { $repairer_arr[$row[0]] = $row[1];