[open-ils-commits] [GIT] Evergreen ILS branch master updated. fe30a5ea50a78b17e46bbab632e4fd11ca9abf85

Evergreen Git git at git.evergreen-ils.org
Mon Dec 18 00:17:06 EST 2017


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, master has been updated
       via  fe30a5ea50a78b17e46bbab632e4fd11ca9abf85 (commit)
      from  74dc248e2333240df39abdbdc9e28b7c98259cd0 (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 fe30a5ea50a78b17e46bbab632e4fd11ca9abf85
Author: Bill Erickson <berickxx at gmail.com>
Date:   Fri Dec 1 14:20:57 2017 -0500

    LP#1735807 Webstaff holdings owning lib shortname
    
    Display org unit shortnames in the web staff bib record Holdings View
    -> Owning Library column, since displaying the full names requires
    significant horizontal space.
    
    Signed-off-by: Bill Erickson <berickxx at gmail.com>
    Signed-off-by: Chris Sharp <csharp at georgialibraries.org>
    Signed-off-by: Jason Etheridge <jason at EquinoxInitiative.org>

diff --git a/Open-ILS/web/js/ui/default/staff/cat/services/holdings.js b/Open-ILS/web/js/ui/default/staff/cat/services/holdings.js
index 1d97a49..f0e0185 100644
--- a/Open-ILS/web/js/ui/default/staff/cat/services/holdings.js
+++ b/Open-ILS/web/js/ui/default/staff/cat/services/holdings.js
@@ -253,7 +253,7 @@ function(egCore , $q) {
 
                 var owner_name_list = [];
                 while (owner.parent_ou()) { // we're going to skip the top of the tree...
-                    owner_name_list.unshift(owner.name());
+                    owner_name_list.unshift(owner.shortname());
                     owner = egCore.org.get(owner.parent_ou());
                 }
 

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

Summary of changes:
 .../js/ui/default/staff/cat/services/holdings.js   |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list