diff --git a/src/WMS.Web.Api/wwwroot/WMS.Web.Core.xml b/src/WMS.Web.Api/wwwroot/WMS.Web.Core.xml index 05654938..8d17923b 100644 --- a/src/WMS.Web.Api/wwwroot/WMS.Web.Core.xml +++ b/src/WMS.Web.Api/wwwroot/WMS.Web.Core.xml @@ -576,14 +576,14 @@ 目标箱子 - + - 原仓位ID + 原仓位编码 - + - 现仓位ID + 现仓位编码 @@ -916,6 +916,11 @@ 物料ID + + + 物料编码 + + 仓库ID @@ -1722,11 +1727,6 @@ 对应金蝶的明细ID - - - 物料ID - - 物料名称 @@ -2027,11 +2027,6 @@ 仓库名称 - - - 物料ID - - 物料名称 @@ -2117,11 +2112,6 @@ 仓库名称 - - - 物料ID - - 物料名称 @@ -2672,11 +2662,6 @@ 任务单 - - - 物料ID - - 明细ID @@ -2777,9 +2762,9 @@ 仓库编码 - + - 仓位ID + 仓位编码 @@ -2792,9 +2777,9 @@ 出入库回退上下架明细-箱库存处理对象 - + - 物料ID + 物料编码 @@ -2832,9 +2817,9 @@ 目标箱的仓库(可为空:当目标箱不需要上架时候) - + - 目标箱的仓位(可为空:当目标箱不需要上架时候) + 仓位编码 目标箱的仓位(可为空:当目标箱不需要上架时候) @@ -2852,9 +2837,9 @@ 箱库存明细 - + - 物料ID + 物料编码 @@ -2897,9 +2882,9 @@ 仓库名称 - + - 仓位ID + 仓位编码 @@ -2922,11 +2907,6 @@ 箱库存明细响应对象 - - - 物料ID - - 物料名称 @@ -2982,9 +2962,9 @@ 仓库code:为空的时候,就是出库等操作,有值的时候就是移箱改箱和上架操作 - + - 仓位:为空的时候,就是出库等操作,有值的时候就是移箱改箱和上架操作 + 仓位编码:为空的时候,就是出库等操作,有值的时候就是移箱改箱和上架操作 @@ -2997,9 +2977,9 @@ 箱库存明细 - + - 物料ID + 物料编码 @@ -3032,9 +3012,9 @@ 仓库code - + - 仓位 + 仓位编码 @@ -3052,10 +3032,10 @@ 明细 - - - 物料Id - + + + 物料编码 + @@ -3208,9 +3188,9 @@ 仓库编码 - + - 仓位 + 仓位编码 @@ -3308,9 +3288,9 @@ 仓库编码 - + - 仓位ID + 仓位编码 @@ -3323,9 +3303,9 @@ - + - 物料ID + 物料编码 @@ -3383,9 +3363,9 @@ 即时库存明细:生成dto - + - 物料ID + 物料编码 @@ -3398,9 +3378,9 @@ 仓库 - + - 仓位ID + 仓位编码 @@ -3423,9 +3403,9 @@ 仓库编码 - + - 仓位 + 仓位编码 @@ -3493,9 +3473,9 @@ 即时库存明细汇总 - + - 物料ID + 物料编码 @@ -3528,9 +3508,9 @@ 仓库编码 - + - 仓位ID + 仓位编码 @@ -3538,9 +3518,9 @@ 箱ID - + - 物料ID + 物料编码 @@ -4298,12 +4278,12 @@ 移箱列表请求 - + 原仓位编码 - + 目标仓位编码 diff --git a/src/WMS.Web.Domain/Services/Public/ErpBasicDataExtendService.cs b/src/WMS.Web.Domain/Services/Public/ErpBasicDataExtendService.cs index cd659b96..125df044 100644 --- a/src/WMS.Web.Domain/Services/Public/ErpBasicDataExtendService.cs +++ b/src/WMS.Web.Domain/Services/Public/ErpBasicDataExtendService.cs @@ -161,20 +161,6 @@ namespace WMS.Web.Domain.Services.Public } return mat.BaseUnitName; } - public string GetMaterialUnitName(List erpMaterials, string materialNumber) - { - if (erpMaterials == null || erpMaterials.Count == 0) - return ""; - var mat = erpMaterials.Where(x => x.MaterialNumber == materialNumber).FirstOrDefault(); - if (mat == null) - { - var result = _erpService.BillQueryForMaterial(materialNumber).GetAwaiter().GetResult(); - if (!result.IsSuccess) - return ""; - return result.Data == null ? "" : result.Data.BaseUnitName; - } - return mat.BaseUnitName; - } /// /// 获取物料基本单位名称 ///