From a94a102b12cf27e2a827811ae6c20415cf6d5877 Mon Sep 17 00:00:00 2001 From: Dan Wells Date: Tue, 20 Feb 2018 17:39:17 -0500 Subject: [PATCH] LP#1748986 Broaden billing interface labels In a few places we use the word "Paid", but there are quite a few things in that bucket (forgiveness, adjustments, etc.) which don't fit well under the term "Paid". Though we have some deep structural causes for this, we can take a baby step in the right direction by sprinkling the term "Credited" in a few key places. Also, correct an mislabeled "Balance" field. Signed-off-by: Dan Wells Signed-off-by: Kathy Lussier --- Open-ILS/src/templates/staff/circ/patron/t_bills.tt2 | 4 ++-- Open-ILS/src/templates/staff/circ/patron/t_xact_details.tt2 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Open-ILS/src/templates/staff/circ/patron/t_bills.tt2 b/Open-ILS/src/templates/staff/circ/patron/t_bills.tt2 index 835e1bf629..bdc6c276d8 100644 --- a/Open-ILS/src/templates/staff/circ/patron/t_bills.tt2 +++ b/Open-ILS/src/templates/staff/circ/patron/t_bills.tt2 @@ -15,7 +15,7 @@
{{patron().credit_forward_balance() | currency}}
-
[% l('Total Paid:') %]
+
[% l('Total Paid/Credited:') %]
{{summary.total_paid() | currency}}
[% l('Session Voided:') %]
{{session_voided | currency}}
@@ -34,7 +34,7 @@
{{pending_change() | currency}}
-
[% l('Paid for Selected:') %]
+
[% l('Paid/Credited for Selected:') %]
{{paid_selected() | currency}}
diff --git a/Open-ILS/src/templates/staff/circ/patron/t_xact_details.tt2 b/Open-ILS/src/templates/staff/circ/patron/t_xact_details.tt2 index c7c5d1bac7..0be1f7d90b 100644 --- a/Open-ILS/src/templates/staff/circ/patron/t_xact_details.tt2 +++ b/Open-ILS/src/templates/staff/circ/patron/t_xact_details.tt2 @@ -14,7 +14,7 @@
[% l('Type') %]
{{xact.summary().xact_type()}}
-
[% l('Total Paid') %]
+
[% l('Total Paid/Credited') %]
{{xact.summary().total_paid() | currency}}
[% l('Checked Out') %]
{{xact.circulation().xact_start() | date:$root.egDateAndTimeFormat}}
@@ -22,7 +22,7 @@
[% l('Start') %]
{{xact.xact_start() | date:$root.egDateAndTimeFormat}}
-
[% l('Total Billed') %]
+
[% l('Balance Due') %]
{{xact.summary().balance_owed() | currency}}
[% l('Due Date') %]
{{xact.circulation().due_date() | egDueDate:$root.egDateAndTimeFormat:xact.circulation().circ_lib():xact.circulation().duration()}}
-- 2.43.2