From 463110f9058a1f06377ddeb091af520bed867a59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B6=8C=ED=98=81=EC=84=B1?= Date: Wed, 11 Feb 2026 16:00:00 +0900 Subject: [PATCH] =?UTF-8?q?fix(WEB):=20=EC=88=98=EC=A3=BC=20=EB=93=B1?= =?UTF-8?q?=EB=A1=9D=20=ED=8E=98=EC=9D=B4=EC=A7=80=20itemId=20=ED=83=80?= =?UTF-8?q?=EC=9E=85=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - qi.itemId (string|null|undefined) → Number() 변환으로 OrderItem 타입 호환 --- .../(protected)/sales/order-management-sales/new/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/[locale]/(protected)/sales/order-management-sales/new/page.tsx b/src/app/[locale]/(protected)/sales/order-management-sales/new/page.tsx index 27b50635..16819074 100644 --- a/src/app/[locale]/(protected)/sales/order-management-sales/new/page.tsx +++ b/src/app/[locale]/(protected)/sales/order-management-sales/new/page.tsx @@ -93,6 +93,7 @@ export default function OrderNewPage() { contact: initialQuotation.contact || "", items: (initialQuotation.items || []).map((qi: QuotationItem) => ({ id: qi.id, + itemId: qi.itemId ? Number(qi.itemId) : undefined, itemCode: qi.itemCode, itemName: qi.itemName, type: qi.type,