自动化立体仓库 - WMS系统
#
luxiaotao1123
2023-02-14 40065db48672852d0c27ade2dd4ed57ea1023c72
src/main/java/com/zy/asrs/utils/Utils.java
@@ -199,6 +199,27 @@
    }
    public static Integer getInnermostRow(String locNo){
        int row = getRow(locNo);
        switch (row) {
            case 1:
            case 2:
            case 3:
            case 4:
                return 1;
            case 5:
            case 6:
            case 7:
            case 8:
            case 9:
            case 10:
            case 11:
                return 11;
            default:
                throw new RuntimeException("库位解析异常");
        }
    }
    public static List<Integer> getGroupLoc(Integer row){
        if (CommonService.FIRST_GROUP_ROW_LIST.contains(row)) {
            return CommonService.FIRST_GROUP_ROW_LIST;