[open-ils-commits] [GIT] Evergreen ILS branch rel_3_0 updated. 17459ea06f05d865e5e48ee76ff3cc62e241f37e

Evergreen Git git at git.evergreen-ils.org
Wed Aug 22 13:39:27 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  17459ea06f05d865e5e48ee76ff3cc62e241f37e (commit)
      from  dd6a8750e017db4e62d225237fd40042769632f9 (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 17459ea06f05d865e5e48ee76ff3cc62e241f37e
Author: Jason Boyer <jboyer at library.in.gov>
Date:   Wed Aug 22 09:07:55 2018 -0400

    LP1733590: Only Print Selected Items Out
    
    The list of selected items being passed to print_receipt
    was being ignored and the whole list of items currently
    checked out used instead. This patch uses the list
    presented so staff can only print those items that they
    want to, such as a small number of items renewed today,
    etc.
    
    Signed-off-by: Jason Boyer <jboyer at library.in.gov>

diff --git a/Open-ILS/web/js/ui/default/staff/circ/patron/items_out.js b/Open-ILS/web/js/ui/default/staff/circ/patron/items_out.js
index 3823a86..2a069f1 100644
--- a/Open-ILS/web/js/ui/default/staff/circ/patron/items_out.js
+++ b/Open-ILS/web/js/ui/default/staff/circ/patron/items_out.js
@@ -347,7 +347,7 @@ function($scope,  $q,  $routeParams,  $timeout,  egCore , egUser,  patronSvc , $
         var print_data = {circulations : []};
         var cusr = patronSvc.current;
 
-        angular.forEach(patronSvc.items_out, function(circ) {
+        angular.forEach(items, function(circ) {
             print_data.circulations.push({
                 circ : egCore.idl.toHash(circ),
                 copy : egCore.idl.toHash(circ.target_copy()),

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

Summary of changes:
 .../js/ui/default/staff/circ/patron/items_out.js   |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list