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@equinoxinitiative.org>
Signed-off-by: Bill Erickson <berickxx@gmail.com>
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();