From ff6ed54d7c98750e5c7b5b41d3375601abbb6d2a Mon Sep 17 00:00:00 2001 From: "boxu.zheng" Date: Thu, 26 Dec 2024 09:49:06 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ProductionLineItems/ProductionLineItemAppService.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/be/Modules/BaseData/src/Win_in.Sfs.Basedata.Application/ProductionLineItems/ProductionLineItemAppService.cs b/be/Modules/BaseData/src/Win_in.Sfs.Basedata.Application/ProductionLineItems/ProductionLineItemAppService.cs index b2d9b2523..36e28c021 100644 --- a/be/Modules/BaseData/src/Win_in.Sfs.Basedata.Application/ProductionLineItems/ProductionLineItemAppService.cs +++ b/be/Modules/BaseData/src/Win_in.Sfs.Basedata.Application/ProductionLineItems/ProductionLineItemAppService.cs @@ -102,6 +102,7 @@ public class ProductionLineItemAppService : } } + private void CheckProductionLineProdLineCodeJsonAsync(ProductionLineItemImportInput input, List validationRresult) { @@ -111,7 +112,9 @@ public class ProductionLineItemAppService : { validationRresult.Add(new ValidationResult("[来源]成品/半成品库位 或 [来源]原材料库位 或 [完工]线边库位 不能都为空")); } - [HttpPost("get-by-product")] + } + + [HttpPost("get-by-product")] public virtual async Task> GetByProductLineCodeAsync(string productLineCode) { var entityList = await _repository.GetListAsync(p => p.ProdLineCode == productLineCode).ConfigureAwait(false);