自动化立体仓库 - WMS系统
LSH
2023-08-28 3c09a80b4d01b8ea19ec48e2852ff9092d8153c4
src/main/java/com/zy/asrs/utils/Utils.java
@@ -871,4 +871,32 @@
        System.out.println(groupLoc);
    }
    public static Double getIoPri(String locNo){
        switch (Utils.getRow(locNo)){
            case 3:
            case 4:
            case 11:
            case 12:
            case 18:
            case 19:
                return 21.0;
            case 2:
            case 5:
            case 10:
            case 13:
            case 17:
            case 20:
                return 19.0;
            case 1:
            case 6:
            case 9:
            case 14:
            case 16:
            case 21:
                return 17.0;
            default:
                return 15.0;
        }
    }
}