From 2c99114d9fa622955fa9bb9bdd3791c53a9e48c5 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer Date: Mon, 19 Sep 2016 13:26:46 +1000 Subject: [PATCH] Improves wording on reconciliation report --- registrasion/reporting/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/registrasion/reporting/views.py b/registrasion/reporting/views.py index 9de2d34f..237330f7 100644 --- a/registrasion/reporting/views.py +++ b/registrasion/reporting/views.py @@ -99,7 +99,7 @@ def items_sold(): "(TOTAL)", "--", "--", total_income, ]) - return ListReport("Paid items", headings, data) + return ListReport("Items sold", headings, data) def sales_payment_summary(): @@ -147,7 +147,7 @@ def sales_payment_summary(): data.append(["Credit notes refunded", refunded_credit_notes]) data.append(["Unclaimed credit notes", unclaimed_credit_notes]) data.append([ - "Credit notes - claimed credit notes - unclaimed credit notes", + "Credit notes - (claimed credit notes + unclaimed credit notes)", all_credit_notes - claimed_credit_notes - refunded_credit_notes - unclaimed_credit_notes, ])