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/WMS_ITEM_Biz.cs | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Tiger.Business.WMS/WMS_ITEM_Biz.cs b/Tiger.Business.WMS/WMS_ITEM_Biz.cs index db4265f..ea6dae1 100644 --- a/Tiger.Business.WMS/WMS_ITEM_Biz.cs +++ b/Tiger.Business.WMS/WMS_ITEM_Biz.cs @@ -367,7 +367,7 @@ /// <param name="status">涓嬫灦鍚庣姸鎬�</param> /// <param name="clearLocation">鏄惁娓呯悊鍌ㄥ尯璐ф灦鍌ㄤ綅淇℃伅</param> /// <returns></returns> - public Result<TakeDownInfo> TakeDown(IInventory inventory, Dictionary<string, decimal> qtyList, AuthOption option, WMS_ITEM.STATUSs status, bool clearLocation = true) + public Result<TakeDownInfo> TakeDown(IInventory inventory, Dictionary<string, double> qtyList, AuthOption option, WMS_ITEM.STATUSs status, bool clearLocation = true) { var result = new Result<TakeDownInfo>(Result.Flags.Success, new TakeDownInfo()); try @@ -519,13 +519,13 @@ /// <param name="option">鎺堟潈鏌ヨ閫夐」</param> /// <param name="reqQty">闇�姹傛暟閲忥紝浼氳繑鍥炴弧瓒抽渶姹傜殑鐗╂枡涓暟</param> /// <returns></returns> - public Result<List<SuggestItem>> Suggest(string order, string itemCode, string erpWH, string whID, string regionID, string shelfID, AuthOption option, decimal reqQty) + public Result<List<SuggestItem>> Suggest(string order, string itemCode, string erpWH, string whID, string regionID, string shelfID, AuthOption option, double reqQty) { var result = new Result<List<SuggestItem>>(Result.Flags.Success, new List<SuggestItem>()) { LocaleMsg = new("WMS.WmsItem.Suggest.Success") }; try { var takeCount = 0; - var checkSum = (decimal)0; + var checkSum = 0.0; var checkCount = 0; do { @@ -626,7 +626,7 @@ Location = l, }) .Take(takeCount).ToList(); - var curQty = (decimal)0; + var curQty = 0.0; foreach (var item in items) { result.Data.Add(item); @@ -737,7 +737,7 @@ /// <param name="transLine"></param> /// <param name="actQty"></param> /// <param name="isFirst"></param> - public static WMS_ITEM_POOL GetPoolItem(this WMS_ITEM item, string orgCode, string transCode, string transNo, string transLine, decimal actQty, bool isFirst) + public static WMS_ITEM_POOL GetPoolItem(this WMS_ITEM item, string orgCode, string transCode, string transNo, string transLine, double actQty, bool isFirst) { var poolItem = new WMS_ITEM_POOL() { -- Gitblit v1.9.3