[open-ils-commits] [GIT] Evergreen ILS branch rel_3_2 updated. 23e4c9d8aac12899d00e0b4e5a9c08e55d6cf83c

Evergreen Git git at git.evergreen-ils.org
Tue May 7 12:12:18 EDT 2019


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  23e4c9d8aac12899d00e0b4e5a9c08e55d6cf83c (commit)
      from  f5102116eba263fd0d9501929a23fe96a3be0542 (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 23e4c9d8aac12899d00e0b4e5a9c08e55d6cf83c
Author: Jason Boyer <jboyer at library.in.gov>
Date:   Mon Dec 3 08:11:29 2018 -0500

    LP1806394: Placing Holds in Item Buckets
    
    A missing return prevents a list of item ids from
    being built so no holds can be placed from item
    buckets. This branch returns the return to its
    proper place.
    
    To test
    -------
    [1] Add some items to an item bucket, ensuring that they are
        all holdable.
    [2] From the item bucket interface, select the items and choose
        the Request Selected Items action.
    [3] Confirm placing the requests.
    [4] Note that the requests are not actually created.
    [5] Apply the patch and repeat steps #1-#4. This time, the requests
        should be placed.
    
    Signed-off-by: Jason Boyer <jboyer at library.in.gov>
    Signed-off-by: Rogan Hamby <rogan.hamby at gmail.com>
    Signed-off-by: Millissa Macomber <millissam at burlingtonwa.gov>
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

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 f39346ef35..70eb084fd4 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
@@ -611,7 +611,7 @@ function($scope,  $q , $routeParams , $timeout , $window , $uibModal , bucketSvc
     $scope.requestItems = function() {
         var copy_list = $scope.gridControls.selectedItems().map(
             function (i) {
-                i.id;
+                return i.id;
             }
         );
 

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/web/js/ui/default/staff/cat/bucket/copy/app.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list