[open-ils-commits] [GIT] Evergreen ILS branch rel_3_2 updated. 83c6883c3f1b33d6099c10f37b019348c203e29f
Evergreen Git
git at git.evergreen-ils.org
Wed Nov 28 09:21:04 EST 2018
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, rel_3_2 has been updated
via 83c6883c3f1b33d6099c10f37b019348c203e29f (commit)
from 55b259d47f4fa375c918e25a58d80d6b8831d539 (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 83c6883c3f1b33d6099c10f37b019348c203e29f
Author: Cesar Velez <cesar.velez at equinoxinitiative.org>
Date: Tue Nov 6 14:14:04 2018 -0500
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 <cesar.velez at equinoxinitiative.org>
Signed-off-by: Jason Etheridge <jason at EquinoxInitiative.org>
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 406c0c0..20c8257 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() + ")";
});
});
}
-----------------------------------------------------------------------
Summary of changes:
.../web/js/ui/default/staff/cat/volcopy/app.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list