Add base amount column for invoices in reports #5622

This commit is contained in:
Hillel Coren 2021-01-17 16:16:55 +02:00
parent cb0a431091
commit 7c763fdf61
1 changed files with 2 additions and 2 deletions

View File

@ -1122,7 +1122,7 @@ class ReportResult {
) )
]; ];
print('## Total Columns: ${totalColumns.length}'); //print('## Total Columns: ${totalColumns.length}');
return totalColumns; return totalColumns;
} }
@ -1239,7 +1239,7 @@ class ReportResult {
} }
}); });
print('## Total Rows: ${cells.length}'); //print('## Total Rows: ${cells.length}');
rows.add(DataRow(cells: cells)); rows.add(DataRow(cells: cells));
}); });