From: Cesar Velez Date: Tue, 6 Nov 2018 19:14:04 +0000 (-0500) Subject: LP#1746769 - add item tag owner OU to label in volcopy editor X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ed6a1d3635bdb4311de6b71007dc06898692def5;p=Evergreen.git LP#1746769 - add item tag owner OU to label in volcopy editor Adding the owner to differentiate item tags with same label that are owned by different OU. Signed-off by: Cesar Velez Signed-off-by: Jason Etheridge --- 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 406c0c0dfc..20c825746e 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 @@ -2149,7 +2149,7 @@ function($scope , $q , $window , $routeParams , $location , $timeout , egCore , { order_by : { 'acpt' : ['label'] } }, { atomic: true } ).then(function(list) { return list.map(function(item) { - return item.label(); + return item.label() + " (" + egCore.org.get(item.owner()).shortname() + ")"; }); }); }