report dashboard

This commit is contained in:
efrilm
2025-11-03 16:24:11 +07:00
parent 069c2296de
commit b4a9cf31fc
30 changed files with 5779 additions and 5 deletions
+2 -2
View File
@@ -12,9 +12,9 @@ class ReportState with _$ReportState {
factory ReportState.initial() => ReportState(
title: 'Ringkasan Laporan Penjualan',
startDate: DateTime.now(),
startDate: DateTime.now().subtract(const Duration(days: 30)),
endDate: DateTime.now(),
rangeDateFormatted:
'${DateTime.now().toFormattedDate()} - ${DateTime.now().toFormattedDate()}',
'${DateTime.now().subtract(const Duration(days: 30)).toFormattedDate()} - ${DateTime.now().toFormattedDate()}',
);
}