- [INSTALL WAIT LIST] minor bugs 수정.
This commit is contained in:
Hyojin Ahn 2026-05-15 12:16:48 -04:00
parent 80cf3d192c
commit 10562debd4
3 changed files with 5 additions and 6 deletions

View File

@ -625,8 +625,7 @@ trait InstallAPI {
di_request_note = ".($request_note ? "'".addslashes($request_note)."'" : "NULL").", di_request_note = ".($request_note ? "'".addslashes($request_note)."'" : "NULL").",
di_cs_note = ".($cs_note ? "'".addslashes($cs_note)."'" : "NULL").", di_cs_note = ".($cs_note ? "'".addslashes($cs_note)."'" : "NULL").",
di_work_note = ".($work_note ? "'".addslashes($work_note)."'" : "NULL").", di_work_note = ".($work_note ? "'".addslashes($work_note)."'" : "NULL").",
di_lock_date = '{$lock_date}', di_lock_date = '{$lock_date}'
di_oil_pickup = '{$need_oil}'
WHERE di_uid = '{$di_uid}' WHERE di_uid = '{$di_uid}'
LIMIT 1 LIMIT 1
"; ";

View File

@ -1430,7 +1430,7 @@ function renderList(){
if(rows.length === 0){ if(rows.length === 0){
html += ` html += `
<tr> <tr>
<td colspan="6" class="text-center text-muted py-3"> <td colspan="7" class="text-center text-muted py-3">
No orders. No orders.
</td> </td>
</tr> </tr>

View File

@ -191,7 +191,7 @@ $sql_install = "
FROM tbl_driver FROM tbl_driver
WHERE dr_status = 'A' WHERE dr_status = 'A'
AND dr_type = 'INSTALL' AND dr_type = 'INSTALL'
ORDER BY dr_initial ORDER BY dr_uid
"; ";
$ris = $jdb->nQuery($sql_install, "Load install drivers error"); $ris = $jdb->nQuery($sql_install, "Load install drivers error");
@ -985,7 +985,7 @@ $categoryLabels = [
<!-- HEADER : Date + Driver --> <!-- HEADER : Date + Driver -->
<div class="card-header bg-light"> <div class="card-header bg-light">
<div class="d-flex justify-content-between align-items-center flex-grow-1"> <div class="d-flex align-items-center w-100">
<!-- Date Navigator --> <!-- Date Navigator -->
<div class="d-flex align-items-center gap-2"> <div class="d-flex align-items-center gap-2">
<button type="button" class="btn btn-sm btn-outline-secondary btn-date-prev"> <button type="button" class="btn btn-sm btn-outline-secondary btn-date-prev">
@ -1028,7 +1028,7 @@ $categoryLabels = [
</div> </div>
<!-- Button --> <!-- Button -->
<div class="d-flex iw-ui-control align-items-center ms-auto gap-2"> <div class="d-flex iw-ui-control align-items-center justify-content-end gap-2 flex-grow-1">
<button id="btnPreview" class="btn btn-outline-secondary" onclick="previewPopup();"> <button id="btnPreview" class="btn btn-outline-secondary" onclick="previewPopup();">
<i class="bi bi-eye"></i> Preview <i class="bi bi-eye"></i> Preview
</button> </button>