From: Josh Stompro Date: Wed, 21 Dec 2016 19:57:32 +0000 (-0600) Subject: LP#1650807 - Bug in rollover_phone_to_print.pl keeps failed call files from X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=refs%2Fheads%2Fuser%2Fstompro%2Flp1650807_rollover_phone;p=working%2FEvergreen.git LP#1650807 - Bug in rollover_phone_to_print.pl keeps failed call files from being moved. The list of new event ID's that the script created was being sent to the mediator, which couldn't do anything with them. The original event id's need to be sent to have those call files moved. Signed-off-by: Josh Stompro --- diff --git a/Open-ILS/src/support-scripts/rollover_phone_to_print.pl b/Open-ILS/src/support-scripts/rollover_phone_to_print.pl index 6956283fbe..c5da523f93 100755 --- a/Open-ILS/src/support-scripts/rollover_phone_to_print.pl +++ b/Open-ILS/src/support-scripts/rollover_phone_to_print.pl @@ -74,7 +74,7 @@ sub rollover_events_phone_to_print { $event->target )) { $logger->info("rollover created event $new_id from event " . $event->id); - push @$finished, $new_id; + push @$finished, $event->id; } }