From cc4d3d0dcddc71106a9d3457949859ca3d86f8a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Sun, 22 Mar 2026 13:33:46 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20[worker-screen]=20WorkOrderApiItem=20sta?= =?UTF-8?q?tus=20=ED=83=80=EC=9E=85=EC=97=90=20cancelled=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 빌드 시 TypeScript 타입 에러 해결 --- src/components/production/WorkerScreen/actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/production/WorkerScreen/actions.ts b/src/components/production/WorkerScreen/actions.ts index ae83e3f2..0625d6b1 100644 --- a/src/components/production/WorkerScreen/actions.ts +++ b/src/components/production/WorkerScreen/actions.ts @@ -31,7 +31,7 @@ interface WorkOrderApiItem { }; /** @deprecated process_id + process relation 사용 */ process_type?: 'screen' | 'slat' | 'bending'; - status: 'unassigned' | 'pending' | 'waiting' | 'in_progress' | 'completed' | 'shipped'; + status: 'unassigned' | 'pending' | 'waiting' | 'in_progress' | 'completed' | 'shipped' | 'cancelled'; scheduled_date: string | null; memo: string | null; created_at: string;