|
@@ -128,7 +128,7 @@ public class ReportCalcService {
|
|
|
Row mainTmpRow = mainTmpSheet.createRow(j);
|
|
|
for (int k = tempRow.getFirstCellNum(); k < tempRow.getLastCellNum(); k++) {
|
|
|
int finalK = k;
|
|
|
- List<ReportCalculationModel> thisCellNumModel = thisSheetNumModel.stream().filter(e -> finalK == (e.getReportUnitCell())).toList();
|
|
|
+ List<ReportCalculationModel> thisCellNumModel = thisRowNumModel.stream().filter(e -> finalK == (e.getReportUnitCell())).toList();
|
|
|
Cell tempCell = tempRow.getCell(k);
|
|
|
Cell mainTmpCell = null;
|
|
|
if (tempCell != null) {
|