From: Jason Boyer Date: Tue, 22 Oct 2019 13:18:29 +0000 (-0400) Subject: LP1825403: Do not Include Tag Owner in Tag X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=2a736f126a4a086ab5f294db928cb49a984d4c4a;p=working%2FEvergreen.git LP1825403: Do not Include Tag Owner in Tag Copy tags were accidentally having their owning location shortname included in the tag values, this patch allows the owner to be displayed but not included in the value used. Signed-off-by: Jason Boyer Signed-off-by: Mike Rylander --- diff --git a/Open-ILS/src/templates/staff/cat/bucket/copy/t_apply_tags.tt2 b/Open-ILS/src/templates/staff/cat/bucket/copy/t_apply_tags.tt2 index 64a689186c..dd2b064342 100644 --- a/Open-ILS/src/templates/staff/cat/bucket/copy/t_apply_tags.tt2 +++ b/Open-ILS/src/templates/staff/cat/bucket/copy/t_apply_tags.tt2 @@ -21,7 +21,7 @@
diff --git a/Open-ILS/src/templates/staff/cat/volcopy/t_copy_tags.tt2 b/Open-ILS/src/templates/staff/cat/volcopy/t_copy_tags.tt2 index 773f5db302..4257bf89fa 100644 --- a/Open-ILS/src/templates/staff/cat/volcopy/t_copy_tags.tt2 +++ b/Open-ILS/src/templates/staff/cat/volcopy/t_copy_tags.tt2 @@ -21,7 +21,7 @@
diff --git a/Open-ILS/web/js/ui/default/staff/cat/bucket/copy/app.js b/Open-ILS/web/js/ui/default/staff/cat/bucket/copy/app.js index 0335f3f9b2..202a4bfe4c 100644 --- a/Open-ILS/web/js/ui/default/staff/cat/bucket/copy/app.js +++ b/Open-ILS/web/js/ui/default/staff/cat/bucket/copy/app.js @@ -799,7 +799,7 @@ function($scope, $q , $routeParams , $timeout , $window , $uibModal , bucketSvc { order_by : { 'acpt' : ['label'] } }, { atomic: true } ).then(function(list) { return list.map(function(item) { - return item.label(); + return { value: item.label(), display: item.label() + " (" + egCore.org.get(item.owner()).shortname() + ")" }; }); }); } 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 192798df7c..cf2cb8c90c 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 @@ -2183,7 +2183,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() + " (" + egCore.org.get(item.owner()).shortname() + ")"; + return { value: item.label(), display: item.label() + " (" + egCore.org.get(item.owner()).shortname() + ")" }; }); }); }