fix(admin/orders): 거래명세표 컬럼 폭 재조정 — 품명 넓게, 수량·비고 좁게
Deploy momo-erp / deploy (push) Successful in 1m53s

* 수량 컬럼: w-20 → w-14 (header), QtyInput w-16 → w-11
* 비고 컬럼: w-32 → w-20
* 품명은 무제한 폭으로 둬서 줄어든 만큼 자동 확장

화면/이미지 공유/인쇄 모두 동일하게 적용 (캡처 영역 내 변경).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
chpark
2026-05-20 15:29:25 +09:00
parent d95a736701
commit 1eba9aab32
+3 -3
View File
@@ -778,12 +778,12 @@ function StatementPreview({
<th className="border border-slate-300 px-1.5 py-1.5 text-left"></th>
<th className="border border-slate-300 px-1.5 py-1.5 w-12"></th>
<th className="border border-slate-300 px-1.5 py-1.5 w-14 js-no-export"></th>
<th className="border border-slate-300 px-1.5 py-1.5 w-20"></th>
<th className="border border-slate-300 px-1.5 py-1.5 w-14"></th>
<th className="border border-slate-300 px-1.5 py-1.5 w-20"></th>
<th className="border border-slate-300 px-1.5 py-1.5"></th>
<th className="border border-slate-300 px-1.5 py-1.5"></th>
<th className="border border-slate-300 px-1.5 py-1.5"></th>
<th className="border border-slate-300 px-1.5 py-1.5 w-32"></th>
<th className="border border-slate-300 px-1.5 py-1.5 w-20"></th>
{editable && <th className="border border-slate-300 px-1 py-1.5 w-8"></th>}
</tr>
</thead>
@@ -1203,7 +1203,7 @@ function QtyInput({ initial, onSave }: { initial: number; onSave: (q: number) =>
onChange={(e) => setVal(e.target.value)}
onBlur={commit}
onKeyDown={(e) => { if (e.key === "Enter") (e.target as HTMLInputElement).blur(); }}
className="w-16 h-6 px-1 border border-slate-200 rounded text-[11px] text-right tabular-nums bg-white"
className="w-11 h-6 px-1 border border-slate-200 rounded text-[11px] text-right tabular-nums bg-white"
/>
);
}