[open-ils-commits] [GIT] Evergreen ILS branch rel_3_3 updated. bab02762d4beb66f818dda67271821f28e629735

Evergreen Git git at git.evergreen-ils.org
Mon Oct 21 13:40:29 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_3 has been updated
       via  bab02762d4beb66f818dda67271821f28e629735 (commit)
      from  dca8175365b11a2e53d8adf06505d4f7598827bd (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 bab02762d4beb66f818dda67271821f28e629735
Author: Jeff Godin <jgodin at tadl.org>
Date:   Tue Apr 2 12:49:18 2019 -0400

    LP#1749970 Fix paging of pending patrons
    
    Fix paging of pending patrons by passing a count and offset to the
    backend API call.
    
    Signed-off-by: Jeff Godin <jgodin at tadl.org>
    Signed-off-by: Terran McCanna <tmccanna at georgialibraries.org>
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

diff --git a/Open-ILS/web/js/ui/default/staff/circ/patron/pending.js b/Open-ILS/web/js/ui/default/staff/circ/patron/pending.js
index 59b1556f02..7cbe6865d8 100644
--- a/Open-ILS/web/js/ui/default/staff/circ/patron/pending.js
+++ b/Open-ILS/web/js/ui/default/staff/circ/patron/pending.js
@@ -90,7 +90,8 @@ function($scope , $q , $routeParams , $window , $location , egCore , egGridDataP
         egCore.net.request(
             'open-ils.actor',
             'open-ils.actor.user.stage.retrieve.by_org',
-            egCore.auth.token(), $scope.context_org.id()
+            egCore.auth.token(), $scope.context_org.id(),
+            count, offset
 
         ).then(
             deferred.resolve, null, 

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

Summary of changes:
 Open-ILS/web/js/ui/default/staff/circ/patron/pending.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list