From 7cc193c978da3bd4bfcc46410784846c30a47bd5 Mon Sep 17 00:00:00 2001 From: alex Date: Thu, 20 Jul 2023 09:53:20 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4Mes->Wms=20=E5=87=BA=E5=BA=93?= =?UTF-8?q?=E7=94=B3=E8=AF=B7=E6=8E=A5=E5=8F=A3=EF=BC=8Ccarry=5Fid?= =?UTF-8?q?=E4=B8=BA=E7=A9=BA=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WarehouseMgr/Tnb.WarehouseMgr/WmsOutStockService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/WarehouseMgr/Tnb.WarehouseMgr/WmsOutStockService.cs b/WarehouseMgr/Tnb.WarehouseMgr/WmsOutStockService.cs index 55a83527..3a7ff065 100644 --- a/WarehouseMgr/Tnb.WarehouseMgr/WmsOutStockService.cs +++ b/WarehouseMgr/Tnb.WarehouseMgr/WmsOutStockService.cs @@ -422,6 +422,7 @@ namespace Tnb.WarehouseMgr .Select(x => { WmsCarryMat carryMat = new(); + carryMat.carry_id = x.Key.carry_id; carryMat.need_qty = x.Sum(d => d.need_qty); return carryMat; })