From b7c2b99c68095795df6b2c6fa96b1d2067701fed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B6=8C=ED=98=81=EC=84=B1?= Date: Sat, 7 Mar 2026 01:38:23 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20ApiBomItem=EC=97=90=20=EC=97=86=EB=8A=94?= =?UTF-8?q?=20specification=20=EC=86=8D=EC=84=B1=20=EC=B0=B8=EC=A1=B0=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - item.specification fallback 제거 (ApiBomItem에 spec만 존재) - 빌드 타입 에러 해결 --- src/components/production/ProductionOrders/actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/production/ProductionOrders/actions.ts b/src/components/production/ProductionOrders/actions.ts index e62288ab..29af77c5 100644 --- a/src/components/production/ProductionOrders/actions.ts +++ b/src/components/production/ProductionOrders/actions.ts @@ -68,7 +68,7 @@ function transformDetailApiToFrontend(data: ApiProductionOrderDetail): Productio id: item.id, itemCode: item.item_code, itemName: item.item_name, - spec: item.spec || item.specification || '', + spec: item.spec || '', unit: item.unit || '', quantity: item.quantity ?? 0, unitPrice: item.unit_price ?? 0,