[open-ils-commits] [GIT] Evergreen ILS branch master updated. 8ab553cf19a5cd1f0ec3260a3054d23a93cc7aef

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, master has been updated
       via  8ab553cf19a5cd1f0ec3260a3054d23a93cc7aef (commit)
      from  a3206c00ab89b4798be6d765a0f4612f21355f80 (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 8ab553cf19a5cd1f0ec3260a3054d23a93cc7aef
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