From b7df9f3c9f2456debe8c83f27eea53b297786bb9 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 11:05:07 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20[types]=20searchStockByCode=20lots=20?= =?UTF-8?q?=ED=8C=8C=EB=9D=BC=EB=AF=B8=ED=84=B0=20=ED=83=80=EC=9E=85=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 a71e0948..8c7db5cc 100644 --- a/src/components/production/WorkerScreen/actions.ts +++ b/src/components/production/WorkerScreen/actions.ts @@ -931,7 +931,7 @@ export async function searchStockByCode( stockQty: s.stock_qty || 0, availableQty: s.available_qty || 0, lotCount: s.lot_count || 0, - lots: (s.lots || []).map((l) => ({ + lots: (s.lots || []).map((l: { lot_no: string; available_qty: number; fifo_order: number }) => ({ lotNo: l.lot_no, availableQty: l.available_qty, fifoOrder: l.fifo_order,