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];