自动化立体仓库 - WMS系统
dubin
2025-12-19 b00eeab31bd13ba34a03301aa441b0751d6a93e4
src/main/java/com/zy/common/web/WcsController.java
@@ -68,7 +68,8 @@
            }
            int countLoc = locDetlService.selectCount(new EntityWrapper<LocDetl>().eq("zpallet", param.getBarcode()));
            int countWrk = wrkDetlService.selectCount(new EntityWrapper<WrkDetl>().eq("zpallet", param.getBarcode()));
            if (countLoc > 0 || countWrk > 0) {
            WrkMast wrkMast = wrkMastService.selectByBarcode(param.getBarcode());
            if (countLoc > 0 || (countWrk > 0 && wrkMast.getWrkSts() != 15)) {
                return R.error("工作档/库存条码数据已存在");
            }
        }