diff --git a/lib/ui/invoice/view/invoice_view_overview.dart b/lib/ui/invoice/view/invoice_view_overview.dart index 60fdb90e3..4a6c0a40e 100644 --- a/lib/ui/invoice/view/invoice_view_overview.dart +++ b/lib/ui/invoice/view/invoice_view_overview.dart @@ -273,7 +273,8 @@ class InvoiceOverview extends StatelessWidget { invoice.customSurcharge4)); } - widgets.add(surchargeRow(localization.total, invoice.calculateTotal)); + widgets.add(surchargeRow(localization.total, + invoice.partial != 0 ? invoice.partial : invoice.calculateTotal)); return ListView( children: widgets,