| | |
| | | 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; |
| | | if (row==9 || row==15){ |
| | | shallowRow=row+1; |
| | | }else if (row==12 || row==18){ |
| | | shallowRow=row-1; |
| | | }else { |
| | | throw new RuntimeException(row + "不是深库位,系统繁忙"); |
| | | } |
| | | return zerofill(String.valueOf(shallowRow), 2) + deepLoc.substring(2); |
| | | } |
| | | |
| | |
| | | int row = getRow(shallowLoc); |
| | | int remainder = (int) Arith.remainder(row, slaveProperties.getGroupCount()); |
| | | int targetRow; |
| | | if (remainder == 2) { |
| | | if (row == 10 || row == 16) { |
| | | targetRow = row - 1; |
| | | } else if (remainder == 3) { |
| | | } else if (row == 11 || row == 17) { |
| | | targetRow = row + 1; |
| | | } else { |
| | | throw new RuntimeException(shallowLoc + "不是浅库位,系统繁忙"); |