自动化立体仓库 - WMS系统
#
zjj
7 天以前 6ab07fef73e3f12ac25f41b71e9b83cb4227de10
src/main/java/com/zy/asrs/controller/LocDetlController.java
@@ -272,10 +272,13 @@
        Page<LocDetlAll> stockStatis = locDetlService.getStockStatisAll(toPage(curr, limit, param, LocDetlAll.class));
        for (LocDetlAll locDetlAll : stockStatis.getRecords()) {
            Double weight = locDetlAll.getWeight();
            Mat mat = matService.selectByMatnr(locDetlAll.getMatnr());
            if (mat != null) {
                locDetlAll.sync(mat);
            }
            locDetlAll.setWeight(weight);
        }
        return R.ok().add(stockStatis);
    }