From 7e7d83cee352eea6244901d1c46f1748a5820fee Mon Sep 17 00:00:00 2001 From: zhaowc <526854230@qq.com> Date: 星期三, 28 八月 2024 08:16:53 +0800 Subject: [PATCH] Merge branch 'zwc' --- Wms/WMS.BLL/BllAsnServer/PalletBindServer.cs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Wms/WMS.BLL/BllAsnServer/PalletBindServer.cs b/Wms/WMS.BLL/BllAsnServer/PalletBindServer.cs index 7eaf41a..33efe0f 100644 --- a/Wms/WMS.BLL/BllAsnServer/PalletBindServer.cs +++ b/Wms/WMS.BLL/BllAsnServer/PalletBindServer.cs @@ -637,7 +637,7 @@ .LeftJoin<SysUserInfor>((a, b, c) => a.CreateUser == c.Id) .LeftJoin<SysUserInfor>((a, b, c, d) => a.UpdateUser == d.Id) .LeftJoin<SysStorageLocat>((a, b, c, d, e) => a.LocatNo == e.LocatNo) - .LeftJoin<SysStorageArea>((a, b, c, d, e,f) => e.AreaNo == f.AreaNo) + .LeftJoin<SysWareHouse>((a, b, c, d, e,f) => e.WareHouseNo == f.WareHouseNo) //.LeftJoin<BllBoxInfo>((a, b, c, d, e, f) => a.Id == e.BindNo) .Select((a, b, c, d,e,f) => new PalletBindDto() { @@ -651,7 +651,7 @@ LocatNo = a.LocatNo, RoadwayNo = a.RoadwayNo, WareHouseNo = a.WareHouseNo, - WareHouseName = f.AreaName, + WareHouseName = a.WareHouseNo+"-"+f.WareHouseName, Qty = a.Qty, FullQty = a.FullQty, SamplingQty = a.SamplingQty, -- Gitblit v1.8.0