[open-ils-commits] [GIT] Evergreen ILS branch master updated. 3c34e5c4d3a97a2a5cf14b0f19954a6fc4c37d40

Evergreen Git git at git.evergreen-ils.org
Wed Aug 22 13:43:03 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, master has been updated
       via  3c34e5c4d3a97a2a5cf14b0f19954a6fc4c37d40 (commit)
      from  7eff66d2fac8630505a07148fe3777256baa6764 (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 3c34e5c4d3a97a2a5cf14b0f19954a6fc4c37d40
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>
    Signed-off-by: Chris Sharp <csharp at georgialibraries.org>

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 e1bcf2a..c836690 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
@@ -364,7 +364,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