From: Bill Erickson Date: Tue, 23 Feb 2016 15:42:27 +0000 (-0500) Subject: LP#1527342 Patron checkout history CSV export repair X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e9b0fb0f56a8f811c66db2ec055aec5b3b578aa5;p=working%2FEvergreen.git LP#1527342 Patron checkout history CSV export repair When exporting circ history as CSV, export history objects, not (unrelated) circ objects. Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm index b3c15bf611..ec0badac79 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm @@ -2681,9 +2681,7 @@ sub load_myopac_circ_history_export { $self->ctx->{csv} = $U->fire_object_event( undef, - 'circ.format.history.csv', - $e->search_action_circulation( - {id => [map {$_->id} @$circs]}, {substream =>1}), + 'circ.format.history.csv', $circs, $self->editor->requestor->home_ou );