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=120cbd0b85d94e32307c0a143049cd1008ab96cd;p=evergreen%2Ftadl.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 Signed-off-by: Kathy Lussier --- 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 );