#
zjj
2025-04-08 e347197963ccc724e57842d5ce9259f79c68fdb8
src/main/java/com/zy/asrs/utils/Utils.java
@@ -88,7 +88,7 @@
    public static String getShallowLoc(SlaveProperties slaveProperties, String deepLoc) {
        int row = getRow(deepLoc);
        int remainder = (int) Arith.remainder(row, slaveProperties.getGroupCount());
        int shallowRow = remainder == 1 ? (row - 1) : (row + 1);
        int shallowRow = remainder == 1 ? (row + 1) : (row - 1);
        return zerofill(String.valueOf(shallowRow), 2) + deepLoc.substring(2);
    }