[open-ils-commits] [GIT] Evergreen ILS branch rel_3_1 updated. 34ac908c87995beaab2206ea8e21ced20b8a3ead
Evergreen Git
git at git.evergreen-ils.org
Wed May 23 14:22:09 EDT 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 34ac908c87995beaab2206ea8e21ced20b8a3ead (commit)
from efb4a6eb66731d478a33c98595a17b072a3f4d36 (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 34ac908c87995beaab2206ea8e21ced20b8a3ead
Author: Kyle Huckins <khuckins at catalyte.io>
Date: Tue May 1 18:28:36 2018 +0000
lp1759327 Populate Copy Templates Floating Dropdown
- Add update watcher and call itemSvc.get_floating_groups within
egVolTemplate directive to properly populate dropdown when accessing
volcopy editor from local administration.
Signed-off-by: Kyle Huckins <khuckins at catalyte.io>
Signed-off-by: Jeanette Lundgren <jlundgren at cwmars.org>
Signed-off-by: Jason Stephenson <jason at sigio.com>
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 eb8ac05..59ef059 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
@@ -2532,7 +2532,13 @@ function($scope , $q , $window , $routeParams , $location , $timeout , egCore ,
$scope.age_protect_list = list;
});
createSimpleUpdateWatcher('age_protect');
-
+
+ $scope.floating_list = [];
+ itemSvc.get_floating_groups().then(function(list){
+ $scope.floating_list = list;
+ });
+ createSimpleUpdateWatcher('floating');
+
createSimpleUpdateWatcher('circulate');
createSimpleUpdateWatcher('holdable');
createSimpleUpdateWatcher('fine_level');
-----------------------------------------------------------------------
Summary of changes:
.../web/js/ui/default/staff/cat/volcopy/app.js | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list