自动化立体仓库 - WMS系统
zyx
2024-03-25 7a2ce679e71f8ca970b48a65f08061412bbfe4a9
src/main/java/com/zy/asrs/entity/param/LocDetlAdjustParam.java
@@ -57,7 +57,7 @@
        for (LocDetlAdjust adjust : list) {
            boolean exit = false;
            for (LocDetlAdjust copy : copyList) {
                if (adjust.getMatnr().equals(copy.getMatnr()) && Cools.eq(adjust.getBatch(), copy.getBatch())) {
                if (adjust.getMatnr().equals(copy.getMatnr()) && Cools.eq(adjust.getBatch(), copy.getBatch()) && Cools.eq(adjust.getSuppCode(),copy.getSuppCode()) && Cools.eq(adjust.getThreeCode(),copy.getThreeCode()) && Cools.eq(adjust.getDeadTime(),copy.getDeadTime())) {
                    copy.setCount(copy.getCount() + adjust.getCount());
                    exit = true;
                    break;