[open-ils-commits] [GIT] Evergreen ILS branch rel_3_5 updated. 515785ef611c5301184b1a22f7dd96db91f8bdd5

Evergreen Git git at git.evergreen-ils.org
Fri Aug 7 19:41:58 EDT 2020


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_5 has been updated
       via  515785ef611c5301184b1a22f7dd96db91f8bdd5 (commit)
      from  3403cc4a63516af0d08682465baa94189f9e89ca (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 515785ef611c5301184b1a22f7dd96db91f8bdd5
Author: Michele Morgan <mmorgan at noblenet.org>
Date:   Tue Aug 27 08:55:06 2019 -0400

    LP1811466 Add fields to holdings editor column pickers
    
    Adds item fields creator, editor and last edit date to the working and
    completed grids in the holdings editor.
    
    Signed-off-by: Michele Morgan <mmorgan at noblenet.org>
    Signed-off-by: Rogan Hamby <rogan.hamby at gmail.com>
    Signed-off-by: Jane Sandberg <sandbej at linnbenton.edu>

diff --git a/Open-ILS/src/templates/staff/cat/volcopy/t_edit.tt2 b/Open-ILS/src/templates/staff/cat/volcopy/t_edit.tt2
index c85ffbc4fd..668290c507 100644
--- a/Open-ILS/src/templates/staff/cat/volcopy/t_edit.tt2
+++ b/Open-ILS/src/templates/staff/cat/volcopy/t_edit.tt2
@@ -130,10 +130,13 @@
 
                           <eg-grid-field label="[% l('Barcode') %]"     path='barcode' visible></eg-grid-field>
                           <eg-grid-field label="[% l('Created') %]"     path="create_date" datatype="timestamp" visible></eg-grid-field>
+                          <eg-grid-field label="[% l('Creator') %]"     path="creator.usrname" visible></eg-grid-field>
                           <eg-grid-field label="[% l('Activated') %]"   path="active_date" visible></eg-grid-field>
-                          <eg-grid-field label="[% l('CN Prefix') %]" path="call_number.prefix.label" visible></eg-grid-field>
-                          <eg-grid-field label="[% l('Call Number') %]" path="call_number.label" visible></eg-grid-field>
-                          <eg-grid-field label="[% l('CN Suffix') %]" path="call_number.suffix.label" visible></eg-grid-field>
+                          <eg-grid-field label="[% l('Edited') %]"      path="edit_date" datatype="timestamp" visible></eg-grid-field>
+                          <eg-grid-field label="[% l('Editor') %]"      path="editor.usrname" visible></eg-grid-field>
+                          <eg-grid-field label="[% l('CN Prefix') %]"   path="call_number.prefix.label" hidden></eg-grid-field>
+                          <eg-grid-field label="[% l('Call Number') %]" path="call_number.label" hidden></eg-grid-field>
+                          <eg-grid-field label="[% l('CN Suffix') %]"   path="call_number.suffix.label" hidden></eg-grid-field>
                           <eg-grid-field label="[% l('Item ID') %]"     path="id" hidden></eg-grid-field>
 
                         </eg-grid>
@@ -163,7 +166,10 @@
 
                  <eg-grid-field label="[% l('Barcode') %]"     path='barcode' visible></eg-grid-field>
                  <eg-grid-field label="[% l('Created') %]"     path="create_date" datatype="timestamp" visible></eg-grid-field>
+                 <eg-grid-field label="[% l('Creator') %]"     path="creator.usrname" visible></eg-grid-field>
                  <eg-grid-field label="[% l('Activated') %]"   path="active_date" datatype="timestamp" visible></eg-grid-field>
+                 <eg-grid-field label="[% l('Edited') %]"      path="edit_date" datatype="timestamp" visible></eg-grid-field>
+                 <eg-grid-field label="[% l('Editor') %]"      path="editor.usrname" visible></eg-grid-field>
                  <eg-grid-field label="[% l('Call Number') %]" path="call_number.label" visible></eg-grid-field>
                  <eg-grid-field label="[% l('Circ Library') %]" flesher="orgById" path="circ_lib.name" visible></eg-grid-field>
                  <eg-grid-field label="[% l('Shelving Location') %]" flesher="locationById" path="location.name" visible></eg-grid-field>
diff --git a/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js b/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js
index 23a97a529a..501a9c1785 100644
--- a/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js
+++ b/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js
@@ -395,7 +395,7 @@ function(egCore , $q) {
     service.flesh = {   
         flesh : 3, 
         flesh_fields : {
-            acp : ['call_number','parts','stat_cat_entries', 'notes', 'tags'],
+            acp : ['call_number','parts','stat_cat_entries', 'notes', 'tags', 'creator', 'editor'],
             acn : ['label_class','prefix','suffix'],
             acptcm : ['tag']
         }

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

Summary of changes:
 Open-ILS/src/templates/staff/cat/volcopy/t_edit.tt2 | 12 +++++++++---
 Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js |  2 +-
 2 files changed, 10 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list