From 0f53b407db10dd4cb66ae3bc348a74fb5d5cebe8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B6=8C=ED=98=81=EC=84=B1?= Date: Fri, 27 Feb 2026 17:36:42 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20[inspection]=20InspectionConfigData?= =?UTF-8?q?=EC=97=90=20finishing=5Ftype=20=ED=95=84=EB=93=9C=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - API 응답의 마감유형(S1/S2/S3) 정보를 타입에 반영 --- src/components/production/WorkOrders/actions.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/production/WorkOrders/actions.ts b/src/components/production/WorkOrders/actions.ts index 418f99d2..2a1b1651 100644 --- a/src/components/production/WorkOrders/actions.ts +++ b/src/components/production/WorkOrders/actions.ts @@ -789,6 +789,7 @@ export interface InspectionConfigData { work_order_id: number; process_type: string; product_code: string | null; + finishing_type: string | null; template_id: number | null; items: InspectionConfigItem[]; }