[open-ils-commits] [GIT] Evergreen ILS branch rel_3_1 updated. 394e5e2f5c041aabc598f8ba310c2e4eeed8d113

Evergreen Git git at git.evergreen-ils.org
Wed Sep 12 14:40:05 EDT 2018


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_1 has been updated
       via  394e5e2f5c041aabc598f8ba310c2e4eeed8d113 (commit)
      from  289037b3d3545453763e20c686e81306b3e81d2a (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 394e5e2f5c041aabc598f8ba310c2e4eeed8d113
Author: Cesar Velez <cesar.velez at equinoxinitiative.org>
Date:   Mon Aug 27 16:07:48 2018 -0400

    LP#1776917 - fix patron bill grid lacking bill ID
    
    Without the required attribute in the grid template
    declaration, the Bill# column *had* to be enabled for
    bill payments to work. This adds required attribute to
    the Bill #, so that it's fetched regardless of whether
    displayed or not, so posting payments work correctly.
    
    Signed-off by: Cesar Velez <cesar.velez at equinoxinitiative.org>
    Signed-off-by: John Amundson <jamundson at cwmars.org>
    Signed-off-by: Jason Stephenson <jason at sigio.com>

diff --git a/Open-ILS/src/templates/staff/circ/patron/t_bills_list.tt2 b/Open-ILS/src/templates/staff/circ/patron/t_bills_list.tt2
index c843bbb..6c3d2c1 100644
--- a/Open-ILS/src/templates/staff/circ/patron/t_bills_list.tt2
+++ b/Open-ILS/src/templates/staff/circ/patron/t_bills_list.tt2
@@ -51,7 +51,7 @@
     handler="showFullDetails"></eg-grid-action>
 
   <eg-grid-field label="[% l('Balance Owed') %]" path='summary.balance_owed'></eg-grid-field>
-  <eg-grid-field label="[% l('Bill #') %]" path='id'></eg-grid-field>
+  <eg-grid-field required label="[% l('Bill #') %]" path='id'></eg-grid-field>
   <eg-grid-field label="[% l('Start') %]" path='xact_start' datatype="timestamp"></eg-grid-field>
   <eg-grid-field label="[% l('Total Billed') %]" path='summary.total_owed'></eg-grid-field>
   <eg-grid-field label="[% l('Total Paid') %]" path='summary.total_paid'></eg-grid-field>

-----------------------------------------------------------------------

Summary of changes:
 .../templates/staff/circ/patron/t_bills_list.tt2   |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list