bklLiudl
2024-03-14 a7cd7313b07c7bf4c6ed5ad79d15fdf3223d2eee
功能测试
2个文件已修改
5 ■■■■■ 已修改文件
Wms/WMS.BLL/BllAsnServer/PalletBindServer.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Wms/WMS.BLL/SysServer/StorageLocatServer.cs 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Wms/WMS.BLL/BllAsnServer/PalletBindServer.cs
@@ -637,7 +637,7 @@
                
                //判断当前托盘是否存在绑定信息
                if (bind.LocatNo != null)
                if (!string.IsNullOrWhiteSpace(bind.LocatNo))
                {
                    //分割已绑储位与新储位
                    //已绑储位
Wms/WMS.BLL/SysServer/StorageLocatServer.cs
@@ -701,7 +701,8 @@
                else if (storageLocat.Status == "2")
                {
                    //托盘绑定信息
                    List<BllPalletBind> palletBindList = Db.Queryable<BllPalletBind>().Where(w => w.LocatNo == locatNo && w.IsDel == "0").ToList();
                    List<BllPalletBind> palletBindList = Db.Queryable<BllPalletBind>()
                        .Where(w => w.LocatNo == locatNo && w.IsDel == "0" && w.Status == "1").ToList();
                    if (palletBindList == null || palletBindList.Count <= 0)
                    {
                        throw new Exception("未找到对应的托盘绑定信息");