[open-ils-commits] [GIT] Evergreen ILS branch rel_3_1 updated. 9c20846da988aaaf1d5d2a95d2ca222f504bfb66

Evergreen Git git at git.evergreen-ils.org
Thu May 24 12:45:37 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  9c20846da988aaaf1d5d2a95d2ca222f504bfb66 (commit)
      from  9d2f3777ce046f618ccaaccb3210bde55b41cd95 (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 9c20846da988aaaf1d5d2a95d2ca222f504bfb66
Author: Cesar Velez <cesar.velez at equinoxinitiative.org>
Date:   Thu Apr 19 17:25:59 2018 -0400

    LP#1765731 - restore CN suffix and preffix in Holds Pull List
    
    Overly gung-ho removal of "redundant" fields/columns in bug
    1728147 removed call number prefix and suffix as available columns
    in the hold pull list grid in the web staff client; this will
    restore them there.
    
    Signed-off-by: Cesar Velez <cesar.velez at equinoxinitiative.org>
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>
    Signed-off-by: Mike Rylander <mrylander at gmail.com>

diff --git a/Open-ILS/src/templates/staff/circ/holds/t_pull_list.tt2 b/Open-ILS/src/templates/staff/circ/holds/t_pull_list.tt2
index ff74cec..2da3195 100644
--- a/Open-ILS/src/templates/staff/circ/holds/t_pull_list.tt2
+++ b/Open-ILS/src/templates/staff/circ/holds/t_pull_list.tt2
@@ -62,17 +62,29 @@
   <!-- Render the colum using the sort-able call number sort key, but
        display the call number label, complete with prefix and suffix
        in the cell. -->
+
   <eg-grid-field name="call_number_sort_key" required
     path="current_copy.call_number.label_sortkey"
     label="[% l('Call Number') %]">
     <span>{{item.call_number_label}}</span>
   </eg-grid-field>
+
   <!-- need call_number_label here so that the grid query always
        fetches it; otherwise, the call number field above
        won't consistently display values -->
+
   <eg-grid-field name="call_number_label"
     path="call_number_label" required hidden
-    label="[% l('Call Number Label') %]"></eg-grid-field>
+    label="[% l('Call Number Label') %]">
+  </eg-grid-field>
+
+  <eg-grid-field name="cn_prefix" path="current_copy.call_number.prefix.label" hidden required
+    label="[% l('Call Number Prefix') %]">
+  </eg-grid-field>
+
+  <eg-grid-field name="cn_suffix" path="current_copy.call_number.suffix.label" hidden required
+    label="[% l('Call Number Suffix') %]">
+  </eg-grid-field>
 
   <eg-grid-field name="author" 
     path="current_copy.call_number.record.simple_record.author" 

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

Summary of changes:
 .../src/templates/staff/circ/holds/t_pull_list.tt2 |   14 +++++++++++++-
 1 files changed, 13 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list