From d242cf7fc6e019a19e7f3a8cf1eac9fcd0f7e454 Mon Sep 17 00:00:00 2001 From: Hyojin Ahn Date: Wed, 6 May 2026 08:55:14 -0400 Subject: [PATCH] =?UTF-8?q?v1.2.12=20-=20[INSTALL=20ORDER]=20CS=20?= =?UTF-8?q?=EB=85=B8=ED=8A=B8=20=EC=9E=88=EC=9C=BC=EB=A9=B4=20=EC=9E=91?= =?UTF-8?q?=EC=97=85=20=EC=99=84=EB=A3=8C=20=ED=9B=84=20=ED=91=9C=EC=8B=9C?= =?UTF-8?q?.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public_html/doc/install_order.php | 32 ++++++++++++++++++++++ public_html/lib/add_install_wait_modal.php | 2 +- 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/public_html/doc/install_order.php b/public_html/doc/install_order.php index 256b57c..9192bcc 100644 --- a/public_html/doc/install_order.php +++ b/public_html/doc/install_order.php @@ -879,6 +879,7 @@ function renderWorkNotes(row){ const req = (row.di_request_note || '').trim(); const work = (row.di_work_note || '').trim(); + const cs = (row.di_cs_note || '').trim(); let html = ''; @@ -900,6 +901,15 @@ function renderWorkNotes(row){ `; } + if(cs){ + html += ` +
+ CS: + ${escapeHtml(cs)} +
+ `; + } + area.innerHTML = html; } @@ -1429,6 +1439,7 @@ function renderList(){ rows.forEach(row => { const req = (row.di_request_note || '').trim(); const work = (row.di_work_note || '').trim(); + const cs = (row.di_cs_note || '').trim(); html += ` @@ -1467,6 +1478,12 @@ function renderList(){ Work: ${escapeHtml(work)} ` : ''} + + ${cs ? ` +
+ CS: ${escapeHtml(cs)} +
+ ` : ''} `; @@ -1492,16 +1509,31 @@ function renderWorkCell(row){ // 기본 텍스트 let main = ''; + // cs note 있음 = 후속작업 있음 + const afterWork = (row.di_cs_note || '').trim(); + if(status === 'A'){ main = `${renderWorkType(row.di_work_type)}`; }else if(status === 'P'){ main = ` Done`; + if(afterWork.length > 0){ + main = main + `CS`; + } }else if(status === 'M'){ main = ` Modified`; + if(afterWork.length > 0){ + main = main + `CS`; + } }else if(status === 'X'){ main = ` Cancelled`; + if(afterWork.length > 0){ + main = main + `CS`; + } } + + + // 보조 아이콘 const icons = []; diff --git a/public_html/lib/add_install_wait_modal.php b/public_html/lib/add_install_wait_modal.php index 6043a04..d80e5be 100644 --- a/public_html/lib/add_install_wait_modal.php +++ b/public_html/lib/add_install_wait_modal.php @@ -137,7 +137,7 @@
- +