Skip to content

Commit

Permalink
Fix for report export
Browse files Browse the repository at this point in the history
  • Loading branch information
hillelcoren committed Feb 21, 2024
1 parent 3cc1c0b commit 12f68cd
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lib/ui/settings/import_export.dart
Original file line number Diff line number Diff line change
Expand Up @@ -325,11 +325,9 @@ class _ImportExportState extends State<ImportExport> {
// Workaround for mismatch in report
// names in export vs schedules
if (ExportType.ar_detailed == _exportType) {
url =
'$url/reports/aged_receivable_detailed_report';
url = '$url/reports/ar_detail_report';
} else if (ExportType.ar_summary == _exportType) {
url =
'$url/reports/aged_receivable_summary_report';
url = '$url/reports/ar_summary_report';
} else if (ExportType.client_balance ==
_exportType) {
url = '$url/reports/client_balance_report';
Expand Down

0 comments on commit 12f68cd

Please sign in to comment.