From 8193a4f5f70dbae83f5292aa6175476603653cd7 Mon Sep 17 00:00:00 2001 From: test <15284381150@163.com> Date: 星期日, 21 九月 2025 10:48:52 +0800 Subject: [PATCH] 添加临期预警过期时间,修改库存查询 --- Wms/WMS.BLL/DataServer/DataBoxInfoServer.cs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Wms/WMS.BLL/DataServer/DataBoxInfoServer.cs b/Wms/WMS.BLL/DataServer/DataBoxInfoServer.cs index 5456865..c564488 100644 --- a/Wms/WMS.BLL/DataServer/DataBoxInfoServer.cs +++ b/Wms/WMS.BLL/DataServer/DataBoxInfoServer.cs @@ -186,7 +186,7 @@ public List<AdventBoxInfoDto> GetEmergencyWarning(string skuNo, string skuName, string lotNo, string palletNo, string status, string inspectMark, string inspectStatus) { string str = @" select d.WareHouseName,d.WareHouseNo,e.RoadwayName,e.RoadwayNo,f.AreaName,f.AreaNo,c.LocatNo,a.PalletNo, - a.SkuNo,a.SkuName,SUM(a.Qty) as Qty,a.Standard,a.LotNo,a.SupplierLot,a.ProductionTime,a.Status + a.SkuNo,a.SkuName,SUM(a.Qty) as Qty,a.Standard,a.LotNo,a.SupplierLot,a.ProductionTime,a.Status,c.ExpirationTime from DataBoxInfo a left join SysMaterials b on a.SkuNo = b.SkuNo left join DataStockDetail c on a.StockDetailId = c.Id @@ -230,7 +230,7 @@ str += " and a.InspectStatus = @inspectstatus"; } //鎺掑簭 - str += @" group by d.WareHouseName,d.WareHouseNo,e.RoadwayName,e.RoadwayNo,f.AreaName,f.AreaNo,c.LocatNo,a.PalletNo,a.SkuNo,a.SkuName,a.Standard,a.LotNo,a.SupplierLot,a.ProductionTime,a.Status order by a.SkuNo,a.LotNo "; + str += @" group by d.WareHouseName,d.WareHouseNo,e.RoadwayName,e.RoadwayNo,f.AreaName,f.AreaNo,c.LocatNo,a.PalletNo,a.SkuNo,a.SkuName,a.Standard,a.LotNo,a.SupplierLot,a.ProductionTime,a.Status,c.ExpirationTime order by a.SkuNo,a.LotNo "; List<AdventBoxInfoDto> stockList = Db.Ado.SqlQuery<AdventBoxInfoDto>(str, new { skuno = skuNo, //鐗╂枡鍙� -- Gitblit v1.8.0