[open-ils-commits] [GIT] Evergreen ILS branch rel_3_1 updated. ed6a1d3635bdb4311de6b71007dc06898692def5
Evergreen Git
git at git.evergreen-ils.org
Wed Nov 28 14:16:09 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_1 has been updated
via ed6a1d3635bdb4311de6b71007dc06898692def5 (commit)
from f9a1dddf6a8ce02dbdb621513cb502ea53f044cc (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 ed6a1d3635bdb4311de6b71007dc06898692def5
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