[open-ils-commits] [GIT] Evergreen ILS branch rel_3_3 updated. 1039a8fbda8dc7d57a68d358f319cc7bc411e873
Evergreen Git
git at git.evergreen-ils.org
Fri Dec 27 16:09:35 EST 2019
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".
The branch, rel_3_3 has been updated
via 1039a8fbda8dc7d57a68d358f319cc7bc411e873 (commit)
from a26178284e31fd2f3023e9c6e0dc935b39e14ad0 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 1039a8fbda8dc7d57a68d358f319cc7bc411e873
Author: Dan Briem <dbriem at wlsmail.org>
Date: Thu Aug 8 23:45:40 2019 -0400
LP#1780283 Checking One Bill Checks Them All
Under Patron->Bills->History if Bill # isn't visible for the Transactions
grid or Payment ID isn't visible for Payments grid, rows can't be selected
individually. This adds the required attribute to those field directives.
1. Under a patron account with multiple bills, go to Bills->History
2. Remove Bill # from the Transactions grid
3. Try to select an individual row (note all rows are selected)
4. Apply patch and repeat steps 1-3 (note rows are selected individually)
Signed-off-by: Dan Briem <dbriem at wlsmail.org>
Signed-off-by: Josh Stompro <stompro at stompro.org>
Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>
diff --git a/Open-ILS/src/templates/staff/circ/patron/t_bill_history_payments.tt2 b/Open-ILS/src/templates/staff/circ/patron/t_bill_history_payments.tt2
index bbea99843a..5c31297d9b 100644
--- a/Open-ILS/src/templates/staff/circ/patron/t_bill_history_payments.tt2
+++ b/Open-ILS/src/templates/staff/circ/patron/t_bill_history_payments.tt2
@@ -11,7 +11,7 @@
label="[% l('Full Details') %]" handler="showFullDetails"></eg-grid-action>
<eg-grid-field path="amount" label="[% l('Amount') %]"></eg-grid-field>
- <eg-grid-field path="id" label="[% l('Payment ID') %]"></eg-grid-field>
+ <eg-grid-field path="id" label="[% l('Payment ID') %]" required></eg-grid-field>
<eg-grid-field path="payment_ts" label="[% l('Payment Time') %]" datatype="timestamp"></eg-grid-field>
<eg-grid-field path="note" label="[% l('Note') %]"></eg-grid-field>
<eg-grid-field path="voided" label="[% l('Voided') %]"></eg-grid-field>
diff --git a/Open-ILS/src/templates/staff/circ/patron/t_bill_history_xacts.tt2 b/Open-ILS/src/templates/staff/circ/patron/t_bill_history_xacts.tt2
index b429440805..4be0ef08b6 100644
--- a/Open-ILS/src/templates/staff/circ/patron/t_bill_history_xacts.tt2
+++ b/Open-ILS/src/templates/staff/circ/patron/t_bill_history_xacts.tt2
@@ -16,7 +16,7 @@
label="[% l('Print Bills') %]" handler="printBills"></eg-grid-action>
<eg-grid-field path="summary.balance_owed"></eg-grid-field>
- <eg-grid-field path="id" label="[% l('Bill #') %]"></eg-grid-field>
+ <eg-grid-field path="id" label="[% l('Bill #') %]" required></eg-grid-field>
<eg-grid-field path="xact_finish" label="[% l('Finish') %]" datatype="timestamp"></eg-grid-field>
<eg-grid-field path="xact_start" label="[% l('Start') %]" datatype="timestamp"></eg-grid-field>
<eg-grid-field path="summary.total_owed" label="[% l('Total Billed') %]"></eg-grid-field>
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/src/templates/staff/circ/patron/t_bill_history_payments.tt2 | 2 +-
Open-ILS/src/templates/staff/circ/patron/t_bill_history_xacts.tt2 | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list