From 4a06db3a52e5523db8bf0e11c9590ba29f21247d Mon Sep 17 00:00:00 2001
From: Ben Lin <maobin001@msn.com>
Date: 星期二, 18 三月 2025 22:30:45 +0800
Subject: [PATCH] 雅达-移除动态 URL 赋值,使用固定地址

---
 Tiger.Business.WMS/Common/Inventory.cs |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/Tiger.Business.WMS/Common/Inventory.cs b/Tiger.Business.WMS/Common/Inventory.cs
index 2045de7..7884155 100644
--- a/Tiger.Business.WMS/Common/Inventory.cs
+++ b/Tiger.Business.WMS/Common/Inventory.cs
@@ -34,5 +34,10 @@
         public WMS_ITEM_PKG CurPkg => Packages.FirstOrDefault(q => q.SN == SN);
         public bool isExists => CurPkg != null;
         public bool isMinPackage => Items.Count == 1 && Items.Single().SN == SN;
+
+        public void UpdatePkgQty()
+        {
+            this.Packages = WMS_ITEM_PKG.UpdateQty(this.Packages);
+        }
     }
 }

--
Gitblit v1.9.3