From c2e0ff726d5de925f62c12e2d59891b9280d97bd Mon Sep 17 00:00:00 2001 From: sky121113 Date: Mon, 9 Feb 2026 10:40:44 +0800 Subject: [PATCH] =?UTF-8?q?feat(inventory):=20=E5=9C=A8=E5=BA=AB=E5=AD=98?= =?UTF-8?q?=E8=AA=BF=E6=95=B4=E8=88=87=E8=AA=BF=E6=92=A5=E5=B0=8D=E8=A9=B1?= =?UTF-8?q?=E6=A1=86=E4=B8=AD=E5=8A=A0=E5=85=A5=E5=95=86=E5=93=81=E7=B7=A8?= =?UTF-8?q?=E8=99=9F=E9=A1=AF=E7=A4=BA=EF=BC=8C=E6=96=B9=E4=BE=BF=E5=8D=80?= =?UTF-8?q?=E5=88=86=E9=87=8D=E8=A4=87=E5=93=81=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/js/Pages/Inventory/Adjust/Show.tsx | 7 ++++++- resources/js/Pages/Inventory/Transfer/Show.tsx | 9 +++++++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/resources/js/Pages/Inventory/Adjust/Show.tsx b/resources/js/Pages/Inventory/Adjust/Show.tsx index 6ee0b45..fa7e7e8 100644 --- a/resources/js/Pages/Inventory/Adjust/Show.tsx +++ b/resources/js/Pages/Inventory/Adjust/Show.tsx @@ -452,7 +452,12 @@ export default function Show({ doc }: { auth: any, doc: AdjDoc }) { /> - {inv.product_name} + +
+ {inv.product_name} + {inv.product_code} +
+
{inv.batch_number || '-'} {inv.expiry_date || '-'} {inv.quantity} {inv.unit_name} diff --git a/resources/js/Pages/Inventory/Transfer/Show.tsx b/resources/js/Pages/Inventory/Transfer/Show.tsx index 469c91c..0c5d64d 100644 --- a/resources/js/Pages/Inventory/Transfer/Show.tsx +++ b/resources/js/Pages/Inventory/Transfer/Show.tsx @@ -375,7 +375,7 @@ export default function Show({ order }: any) { /> - 品名 + 品名 / 代號 批號 效期 現有庫存 @@ -415,7 +415,12 @@ export default function Show({ order }: any) { /> - {inv.product_name} + +
+ {inv.product_name} + {inv.product_code} +
+
{inv.batch_number || '-'} {inv.expiry_date || '-'} {inv.quantity} {inv.unit_name}