diff --git a/app/admin/quotes/[id]/page.tsx b/app/admin/quotes/[id]/page.tsx index 9943218..cea560e 100644 --- a/app/admin/quotes/[id]/page.tsx +++ b/app/admin/quotes/[id]/page.tsx @@ -388,7 +388,7 @@ export default function QuoteEditorPage() { {/* ── 견적항목 ── */} {tab === '견적항목' && ( -
선택 항목(optional)은 고객이 직접 선택/해제할 수 있습니다
@@ -396,39 +396,39 @@ export default function QuoteEditorPage() { {/* 헤더 */} {form.items.length > 0 && ( -| 작업명 | -기간 | +기간 | 설명 | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| {task.name} | -{task.duration} | +{task.name} | +{task.duration} | {task.description || '—'} |
| 카테고리 | @@ -322,15 +335,15 @@ export default function QuotePage() { {requiredItems.map((item) => (|||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| - + {item.category} | {item.name} | {item.description || '—'} | -{item.quantity} | -{item.unitPrice.toLocaleString()} | -{(item.unitPrice * item.quantity).toLocaleString()}원 | +{item.quantity} | +{item.unitPrice.toLocaleString()} | +{(item.unitPrice * item.quantity).toLocaleString()}원 |
| 선택 | +선택 | 카테고리 | 항목명 | 설명 | @@ -368,14 +389,14 @@ export default function QuotePage() { {}} />- + {item.category} | {item.name} | {item.description || '—'} | -{item.quantity} | -+ | {item.quantity} | +{(item.unitPrice * item.quantity).toLocaleString()}원 |
|---|