From bab02762d4beb66f818dda67271821f28e629735 Mon Sep 17 00:00:00 2001 From: Jeff Godin Date: Tue, 2 Apr 2019 12:49:18 -0400 Subject: [PATCH] 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 Signed-off-by: Terran McCanna Signed-off-by: Galen Charlton --- Open-ILS/web/js/ui/default/staff/circ/patron/pending.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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, -- 2.43.2