|
@@ -2659,6 +2659,9 @@ public class MeterTreeContractServiceImpl extends BaseServiceImpl<MeterTreeContr
|
|
|
rowIterator.next();
|
|
|
while (rowIterator.hasNext()) {
|
|
|
Row currentRow = rowIterator.next();
|
|
|
+ if (StringUtils.isBlank(currentRow.getCell(0, Row.MissingCellPolicy.CREATE_NULL_AS_BLANK).getStringCellValue())){
|
|
|
+ break;
|
|
|
+ }
|
|
|
Map<String, String> rowMap = new LinkedHashMap<>();
|
|
|
for (int columnIndex = 0; columnIndex < columnCount; columnIndex++) {
|
|
|
Cell currentCell = currentRow.getCell(columnIndex, Row.MissingCellPolicy.CREATE_NULL_AS_BLANK);
|