From b99e391cc61f3e53715a03c64249a0e1acef9504 Mon Sep 17 00:00:00 2001 From: sky121113 Date: Thu, 5 Feb 2026 13:05:50 +0800 Subject: [PATCH] =?UTF-8?q?feat(inventory):=20=E7=9B=A4=E9=BB=9E=E5=96=AE?= =?UTF-8?q?=E5=88=97=E5=8D=B0=E6=A0=BC=E5=BC=8F=E5=8A=A0=E5=85=A5=E6=89=B9?= =?UTF-8?q?=E8=99=9F=E6=AC=84=E4=BD=8D=EF=BC=88=E4=BD=8D=E6=96=BC=E5=93=81?= =?UTF-8?q?=E5=90=8D=E4=B9=8B=E5=BE=8C=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/js/Pages/Inventory/Count/Print.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/js/Pages/Inventory/Count/Print.tsx b/resources/js/Pages/Inventory/Count/Print.tsx index 9e6ca2d..6d25125 100644 --- a/resources/js/Pages/Inventory/Count/Print.tsx +++ b/resources/js/Pages/Inventory/Count/Print.tsx @@ -18,6 +18,7 @@ interface PrintProps { unit: string; quantity: number; counted_qty: number | null; + batch_number: string | null; notes: string; }>; }; @@ -114,6 +115,7 @@ export default function Print({ doc }: PrintProps) { 序號 品號 品名 + 批號 規格 數量 單位 @@ -126,6 +128,7 @@ export default function Print({ doc }: PrintProps) { {index + 1} {item.product_code} {item.product_name} + {item.batch_number || '-'} {item.specification || '-'} {item.counted_qty !== null ? Number(item.counted_qty).toFixed(2) : ''}