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