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) : ''}