From cf749e0f340ae138cf4b59c053a282b5fafcf9b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B6=8C=ED=98=81=EC=84=B1?= Date: Mon, 26 Jan 2026 22:09:55 +0900 Subject: [PATCH] =?UTF-8?q?fix(WEB):=20=EA=B2=AC=EC=A0=81=20=EC=A0=80?= =?UTF-8?q?=EC=9E=A5=20=EC=8B=9C=20is=5Ffinal=20=ED=94=8C=EB=9E=98?= =?UTF-8?q?=EA=B7=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 임시저장: status='draft', is_final=false (최초작성) - 최종저장: status='finalized', is_final=true (최종확정) --- src/components/quotes/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/quotes/types.ts b/src/components/quotes/types.ts index d1397af6..2024a58b 100644 --- a/src/components/quotes/types.ts +++ b/src/components/quotes/types.ts @@ -841,6 +841,7 @@ export function transformV2ToApi( unit_symbol: '개소', total_amount: grandTotal, status: data.status === 'final' ? 'finalized' : 'draft', + is_final: data.status === 'final', calculation_inputs: calculationInputs, items: items, };