From: Mike Rylander Date: Fri, 11 Sep 2015 15:24:26 +0000 (-0400) Subject: LP#1485374: Use server timezone when exporting circ history X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=fd48ef8b37391f8f9c997333fbf84d0484c38a0f;p=working%2FEvergreen.git LP#1485374: Use server timezone when exporting circ history As with current open circs, we will use the server timezone for exporting circulation data in CSV format. Signed-off-by: Mike Rylander --- 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 6af275f11b..c49000a659 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm @@ -2582,7 +2582,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}} @$ids]}, {substream =>1}), + $e->search_action_circulation({id => [map {$_->{id}} @$ids]}, {substream =>1, no_tz => 1}), $self->editor->requestor->home_ou );