From: Bill Erickson Date: Fri, 1 Dec 2017 19:20:57 +0000 (-0500) Subject: LP#1735807 Webstaff holdings owning lib shortname X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=d97cc9b6ae5cf7599fddb1e48e9667626f0097a8;p=evergreen%2Fpines.git 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 Signed-off-by: Chris Sharp Signed-off-by: Jason Etheridge --- 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 3f4ec7d3af..bf27e5cf50 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()); }