[open-ils-commits] [GIT] Evergreen ILS branch rel_3_0 updated. 02d3d6c7c2bb797102feefe0ac4b2c781ea43210

Evergreen Git git at git.evergreen-ils.org
Wed May 23 14:22:16 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_0 has been updated
       via  02d3d6c7c2bb797102feefe0ac4b2c781ea43210 (commit)
      from  b45e85bdc2c47f20c8ee0f3613f7d7dd88bdc6fa (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 02d3d6c7c2bb797102feefe0ac4b2c781ea43210
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 6280cbc..80ec8ba 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
@@ -2249,7 +2249,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