From 5b6eb2d7d9db690f4dfae9519657148fbaf175fb Mon Sep 17 00:00:00 2001 From: chpark Date: Fri, 29 May 2026 01:24:34 +0900 Subject: [PATCH] =?UTF-8?q?fix(orders/admin):=20=EB=B0=9C=EC=A3=BC=20?= =?UTF-8?q?=EB=A6=AC=EC=8A=A4=ED=8A=B8=20=EC=BB=AC=EB=9F=BC=20=EA=B2=B9?= =?UTF-8?q?=EC=B9=A8/=ED=88=B4=ED=8C=81=20=EB=96=A0=EB=8B=A4=EB=8B=98=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 의 lock 메시지 hover 툴팁이 다음 행 위로 떠다니던 문제 해결 — title 제거. - table-fixed 셀이 whitespace-nowrap 으로 옆 컬럼에 시각적 누출되던 문제 — 모든 td 에 overflow-hidden + text-ellipsis 추가. - 컬럼 폭 확장: 발주번호 100→112, 발주일 82→100, 합계 100→110, 상태 72→78. - 좌측 패널 최소폭 560→640 으로 키워 업체 컬럼이 화면에 꽉 차게 한다. --- src/app/(main)/m/admin/orders/page.tsx | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/src/app/(main)/m/admin/orders/page.tsx b/src/app/(main)/m/admin/orders/page.tsx index 01116e1..45459f2 100644 --- a/src/app/(main)/m/admin/orders/page.tsx +++ b/src/app/(main)/m/admin/orders/page.tsx @@ -446,7 +446,7 @@ export default function AdminOrdersPage() { {/* 2분할 레이아웃 — 모바일은 stack, lg 이상은 좌-우 분할 */} -
+
{/* 좌측: 발주 리스트 */}
@@ -524,11 +524,11 @@ export default function AdminOrdersPage() { disabled={allRequestedCount === 0} className="accent-emerald-600 cursor-pointer disabled:opacity-30" /> - 발주번호 - 발주일 + 발주번호 + 발주일 업체 - 합계 - 상태 + 합계 + 상태 @@ -544,7 +544,6 @@ export default function AdminOrdersPage() { key={o.OBJID} onClick={() => setActiveId(o.OBJID)} className={`border-t border-slate-100 cursor-pointer ${active ? "bg-emerald-50/60" : lockedByMeRow ? "bg-emerald-50/30 hover:bg-emerald-50/50" : lockedByOtherUser ? "bg-rose-50/30 hover:bg-rose-50/60" : "hover:bg-slate-50"}`} - title={lockedByMeRow ? "✏️ 내가 수정 중" : lockedByOtherUser ? `🔒 ${o.EDITING_BY_NAME} 님이 수정 중` : ""} > e.stopPropagation()}> - + {lockedByMeRow && ✏️} {lockedByOtherUser && 🔒} {o.ORDER_NO} - {o.ORDER_DATE} - - {o.COMPANY_NAME} + {o.ORDER_DATE} + +
{o.COMPANY_NAME}
{lockedByMeRow &&
✏️ 내가 수정 중
} {lockedByOtherUser &&
🔒 {o.EDITING_BY_NAME}
} - ₩{fmt(o.TOTAL_AMOUNT)} - + ₩{fmt(o.TOTAL_AMOUNT)} + {STATUS_LABEL[o.STATUS] ?? o.STATUS}