修改打印一级标签生成支码BUG,修改数量判断及包装等级判断错误问题
1个文件已修改
6 ■■■■ 已修改文件
Wms/WMS.BLL/BllAsnServer/BllBoxInfoServer.cs 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Wms/WMS.BLL/BllAsnServer/BllBoxInfoServer.cs
@@ -605,7 +605,7 @@
                    zNum = Convert.ToInt32(pack.L1Num);
                }
                if (packLevel <= 1)//包装等级小于1,按照1级标签打印
                if (packLevel < 1)//包装等级小于1,按照1级标签打印
                {
                    throw new Exception("包装信息有误,小于一级");
                }
@@ -614,9 +614,9 @@
                var modelList = new List<BllBoxInfo>();
                var addLotNo = "";
                if (arriveQty < 0)
                if (arriveQty <= 0)
                {
                    throw new Exception("到货数量不能小于0!");
                    throw new Exception("到货数量不能小于等于0!");
                }
                Db.BeginTran();
                if (packLevel == 1)