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

Evergreen Git git at git.evergreen-ils.org
Mon Sep 25 17:43:25 EDT 2017


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  f64731e8aa5d796c65195b111e049b0916a795f6 (commit)
      from  5b88ceb8449e21ccfd3beacfa6aa9b9206302ace (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 f64731e8aa5d796c65195b111e049b0916a795f6
Author: Galen Charlton <gmc at equinoxinitiative.org>
Date:   Mon Sep 25 17:34:18 2017 -0400

    LP#1713764: fix 'Retrieve Patron' action from webstaff pull list
    
    This patch fixes a regression wherein the Retrieve Patron action
    didn't work on the pull list grid by ensuring that the user value
    would get fleshed.
    
    To test
    -------
    [1] Go to the pull list in the web staff client and attempt the
        'Retrieve Patron' action. Note that nothing happens.
    [2] Apply the patch and repeat step 1; this time, a new window
        should be opened with the patron record.
    
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>
    Signed-off-by: Bill Erickson <berickxx at gmail.com>

diff --git a/Open-ILS/web/js/ui/default/staff/circ/holds/app.js b/Open-ILS/web/js/ui/default/staff/circ/holds/app.js
index 98eee85..00389fe 100644
--- a/Open-ILS/web/js/ui/default/staff/circ/holds/app.js
+++ b/Open-ILS/web/js/ui/default/staff/circ/holds/app.js
@@ -301,7 +301,9 @@ function($scope , $q , $routeParams , $window , $location , egCore ,
         return egCore.net.request(
             'open-ils.circ',
             'open-ils.circ.hold.details.batch.retrieve.authoritative',
-            egCore.auth.token(), Object.keys(details_needed)
+            egCore.auth.token(), Object.keys(details_needed), {
+                include_usr : true
+            }
 
         ).then(null, null, function(hold_info) {
             egProgressDialog.increment();

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

Summary of changes:
 Open-ILS/web/js/ui/default/staff/circ/holds/app.js |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list