From ff247ae3a329229de9a6a68146450daf77adfa48 Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期六, 28 十二月 2024 16:05:56 +0800 Subject: [PATCH] Add PLAN_DATE property to BIZ_MES_WO_BATCH model This enhancement provides additional scheduling information by storing the planned date for a work order batch. --- 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