From 85b4510f476e5ae0a8e8ed86d45819be1ff84a6e 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 15:44:03 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20[=EC=9E=91=EC=97=85=EC=9E=90=ED=99=94?= =?UTF-8?q?=EB=A9=B4]=20=EC=9E=AC=EA=B3=B5=ED=92=88=20BD=EC=BD=94=EB=93=9C?= =?UTF-8?q?=20=ED=91=9C=EC=8B=9C=20fallback=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - item.code 없을 시 sourceOrderItem.item_code에서 BD코드 추출 --- 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 8663de8a..0fba02bb 100644 --- a/src/components/production/WorkerScreen/actions.ts +++ b/src/components/production/WorkerScreen/actions.ts @@ -157,7 +157,7 @@ function transformToWorkerScreenFormat(api: WorkOrderApiItem): WorkOrder { nodeName: g.nodeName, items: (g.items || []).map((it) => ({ id: it.id, - itemCode: it.item?.code || null, + itemCode: it.item?.code || it.source_order_item?.item_code || null, itemName: it.item_name, quantity: Number(it.quantity), specification: it.specification,