src/main/java/com/zy/asrs/controller/LocMastController.java
@@ -170,12 +170,16 @@ initBay = 2; } int userConfigRow = -1; int userConfirmBay = -1; try { userConfirmBay = (int) Double.parseDouble(value); String[] split = value.split("-"); userConfigRow = Integer.parseInt(split[0]); userConfirmBay = Integer.parseInt(split[1]); }catch (Exception e){} if (userConfirmBay != -1) { initRow = userConfigRow; initBay = userConfirmBay; } @@ -219,6 +223,7 @@ } redisUtil.del(RedisKeyType.LOC_MAP_BASE.key); redisUtil.del(RedisKeyType.LOC_MAST_MAP_LIST.key); return R.ok(); }