From cd78554c3da306ed8c866d971bee94457665f80c Mon Sep 17 00:00:00 2001 From: wangxinhui <wangxinhui@hnkhzn.com> Date: 星期六, 30 八月 2025 17:35:51 +0800 Subject: [PATCH] ERP一期接口 --- 项目代码/WMS/WMSServices/WIDESEA_StockService/ProStockViewService.cs | 45 ++++----------------------------------------- 1 files changed, 4 insertions(+), 41 deletions(-) diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_StockService/ProStockViewService.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_StockService/ProStockViewService.cs" index c9faeef..a98b78c 100644 --- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_StockService/ProStockViewService.cs" +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_StockService/ProStockViewService.cs" @@ -62,21 +62,6 @@ } } - { - SearchParameters? searchParameters = searchParametersList.FirstOrDefault(x => x.Name == nameof(Dt_ProStockInfoDetail.ProductVersion).FirstLetterToLower()); - if (searchParameters != null) - { - sugarQueryable1 = sugarQueryable1.Where(x => x.proStockInfoDetails.Any(v => v.ProductVersion.Contains(searchParameters.Value))); - } - } - { - SearchParameters? searchParameters = searchParametersList.FirstOrDefault(x => x.Name == nameof(Dt_ProStockInfoDetail.SpecifyVer).FirstLetterToLower()); - if (searchParameters != null) - { - sugarQueryable1 = sugarQueryable1.Where(x => x.proStockInfoDetails.Any(v => v.SpecifyVer.Contains(searchParameters.Value))); - } - } - } } @@ -112,7 +97,7 @@ ProStockId = b.Id, StockStatus = b.StockStatus, Details = b.proStockInfoDetails, - SumStocks=b.proStockInfoDetails.Sum(x=>x.StockPcsQty) + SumStocks=b.proStockInfoDetails.Sum(x=>x.StockQty) }); var pklist = sugarQueryable1.Where(b => b.LocationCode == "鎴愬搧寰呭彂璐у尯" || b.LocationCode == "鎴愬搧鍖呰鎷h揣鍖�").Select(b => new ProStockViewDTO @@ -130,7 +115,7 @@ ProStockId = b.Id, StockStatus = b.StockStatus, Details = b.proStockInfoDetails, - SumStocks = b.proStockInfoDetails.Sum(x => x.StockPcsQty) + SumStocks = b.proStockInfoDetails.Sum(x => x.StockQty) }); int totalCount = 0; @@ -142,13 +127,6 @@ stockViewDTOs.ForEach(x => { x.ProductCode = string.Join(",", x.Details.Select(x => x.ProductCode).Distinct()); - x.ProductVersion = string.Join(",", x.Details.Select(x => x.ProductVersion).Distinct()); - x.SpecifyVer = string.Join(",", x.Details.Select(x => x.SpecifyVer).Distinct()); - x.DateCode = x.Details.FirstOrDefault()?.DateCode ?? ""; - x.LotNumber = x.Details.FirstOrDefault()?.LotNumber ?? ""; - x.ERPOrder = x.Details.FirstOrDefault()?.ERPOrder ?? ""; - x.SaleOrder= x.Details.FirstOrDefault()?.SaleOrder ?? ""; - x.MoNumber = x.Details.FirstOrDefault()?.MoNumber ?? ""; } ); return new PageGridData<ProStockViewDTO>(totalCount + pktotalCount, stockViewDTOs.OrderByDescending(x=>x.CreateDate).ToList()); @@ -196,7 +174,7 @@ options.Order = "desc"; options.Sort = "proStockId"; List<ProStockViewDTO> stockViewDTOs = new List<ProStockViewDTO>(); - List<Dt_Warehouse> warehouses = _basicRepository.WarehouseRepository.QueryData(x => x.WarehouseType == WarehouseTypEnum.鎴愬搧.ToString()); + List<Dt_Warehouse> warehouses = _basicRepository.WarehouseRepository.QueryData(x => x.WarehouseId == WarehouseEnum.LLDCP.ObjToInt()); string where = string.Empty; ISugarQueryable<Dt_ProStockInfo> sugarQueryable1 = _dbBase.Queryable<Dt_ProStockInfo>().Includes(x => x.proStockInfoDetails); if (!string.IsNullOrEmpty(options.Wheres)) @@ -211,14 +189,6 @@ if (searchParameters != null) { sugarQueryable1 = sugarQueryable1.Where(x => x.proStockInfoDetails.Any(v => v.ProductCode.Contains(searchParameters.Value))); - } - } - - { - SearchParameters? searchParameters = searchParametersList.FirstOrDefault(x => x.Name == nameof(Dt_ProStockInfoDetail.ProductVersion).FirstLetterToLower()); - if (searchParameters != null) - { - sugarQueryable1 = sugarQueryable1.Where(x => x.proStockInfoDetails.Any(v => v.ProductVersion.Contains(searchParameters.Value))); } } @@ -257,7 +227,7 @@ ProStockId = b.Id, StockStatus = b.StockStatus, Details = b.proStockInfoDetails, - SumStocks = b.proStockInfoDetails.Sum(x => x.StockPcsQty), + SumStocks = b.proStockInfoDetails.Sum(x => x.StockQty), }); @@ -289,13 +259,6 @@ stockViewDTOs.ForEach(x => { x.ProductCode = string.Join(",", x.Details.Select(x => x.ProductCode).Distinct()); - x.ProductVersion = string.Join(",", x.Details.Select(x => x.ProductVersion).Distinct()); - x.SpecifyVer = string.Join(",", x.Details.Select(x => x.SpecifyVer).Distinct()); - x.DateCode = x.Details.FirstOrDefault()?.DateCode ?? ""; - x.LotNumber = x.Details.FirstOrDefault()?.LotNumber ?? ""; - x.ERPOrder = x.Details.FirstOrDefault()?.ERPOrder ?? ""; - x.SaleOrder = x.Details.FirstOrDefault()?.SaleOrder ?? ""; - x.MoNumber = x.Details.FirstOrDefault()?.MoNumber ?? ""; x.StockRemark = warehouses.FirstOrDefault(v => v.WarehouseId == x.WarehouseId).WarehouseName; } ); -- Gitblit v1.9.3