Bug 20101: Cronjob automatic_item_modification_by_age.pl does not log run in action...
authorKyle M Hall <kyle@bywatetsolutions.com>
Tue, 30 Jan 2018 16:10:07 +0000 (11:10 -0500)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Fri, 17 Apr 2020 08:17:52 +0000 (09:17 +0100)
C4::Log::cronlogaction() was never implemented in automatic_item_modification_by_age.pl.

Test Plan:
1) Apply this patch
2) Enable CronjobLog
3) Run automatic_item_modification_by_age.pl succesfully
4) Note the run is noted in the action logs

Signed-off-by: Mark Tompsett <mtompset@hotmail.com>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

misc/cronjobs/automatic_item_modification_by_age.pl

index 364f61f..e944ac8 100755 (executable)
@@ -9,6 +9,7 @@ use JSON;
 use Koha::Script -cron;
 use C4::Context;
 use C4::Items;
+use C4::Log;
 
 # Getting options
 my ( $verbose, $help, $confirm );
@@ -27,6 +28,8 @@ my $rules = eval { JSON::from_json( $syspref_content ) };
 pod2usage({ -message => "Unable to load the configuration : $@", -exitval => 1 })
     if $@;
 
+cronlogaction();
+
 my $report = C4::Items::ToggleNewStatus( { rules => $rules, report_only => not $confirm } );
 
 if ( $verbose ) {