Fix for group/ungroup reports

This commit is contained in:
Hillel Coren 2023-12-18 13:32:01 +02:00
parent a1b9498ce2
commit ce9f0fa014
1 changed files with 2 additions and 2 deletions

View File

@ -1387,8 +1387,8 @@ class ReportResult {
} }
if (column == groupBy) { if (column == groupBy) {
String filter = group; String filter = group;
String customStartDate = ''; String? customStartDate;
String customEndDate = ''; String? customEndDate;
if (getReportColumnType(column, context) == if (getReportColumnType(column, context) ==
ReportColumnType.dateTime || ReportColumnType.dateTime ||
getReportColumnType(column, context) == ReportColumnType.date) { getReportColumnType(column, context) == ReportColumnType.date) {