自动化立体仓库 - WMS系统
DELL
2024-06-26 e43b29a03ba1d6a5d022075daa8fc54c6f3b30c7
src/main/java/com/zy/common/service/CommonService.java
@@ -551,10 +551,19 @@
        return startupDto;
    }
    public StartupDto getLocNoBy304(String barcode) {
        int crnNo = 3;
    public StartupDto getLocNoBy304(String type) {
        int row;
        int devpNo = 304;
        int row = barcode.charAt(0) == '5' ? 7 : 6;
        int crnNo = 3;
        if (type.equals("1")) {
            row =  7;
        } else if (type.equals("2")) {
            row = 6;
        } else {
            throw new CoolException("304物料类别识别错误:" + type);
        }
        // 目标库位
        LocMast locMast = locMastMapper.queryLocByBarCode(row);
        if (locMast == null) {