From 611a34bbeac64555f9b18b7aac0fd3e040e4b2f8 Mon Sep 17 00:00:00 2001 From: Cesar Velez Date: Tue, 6 Nov 2018 14:14:04 -0500 Subject: [PATCH] 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 --- Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() + ")"; }); }); } -- 2.43.2