diff --git a/negodata/front/src/features/quotations/components/QuotationDetailDrawer.tsx b/negodata/front/src/features/quotations/components/QuotationDetailDrawer.tsx index 82d0145..3673674 100644 --- a/negodata/front/src/features/quotations/components/QuotationDetailDrawer.tsx +++ b/negodata/front/src/features/quotations/components/QuotationDetailDrawer.tsx @@ -29,6 +29,7 @@ import { normalizeQuotationStatus, buildBidSummary, mapServerSessionView, + sessionStatusLabel, mapServerCardView, } from '../types'; @@ -459,7 +460,7 @@ export function QuotationDetailDrawer({ { const isSelected = sd.session_id === effectiveSessionId; const name = partners.find((p) => p.id === sd.supplier_id)?.name || sd.supplier_id; - const statusLabel = sd.status === 2 ? '협상종료' : sd.status === 3 ? '협상거부' : '협상중'; + const statusLabel = sessionStatusLabel(sd.status); return (