Commit 36261640ad4de5eb5c17275a1624a7a1a75af9fe

Authored by 肖超群
1 parent cb604d90

修复生成双伸位的问题

huaheng-wms-core/src/main/java/org/jeecg/modules/wms/config/location/service/impl/LocationServiceImpl.java
... ... @@ -312,7 +312,7 @@ public class LocationServiceImpl extends ServiceImpl<LocationMapper, Location> i
312 312 }
313 313 }
314 314 // 计算有多少列
315   - int rowSize = lastRow - firstRow;
  315 + int rowSize = lastRow - firstRow + 1;
316 316 if (rowSize == 4) {
317 317 for (Location location3 : locationList) {
318 318 for (int i = 0; i < rowSize; i++) {
... ...