From b807c713acdf63d6df410d8f4f913b8fe556aea9 Mon Sep 17 00:00:00 2001 From: Matthias Meusburger Date: Wed, 4 Dec 2024 10:13:07 +0000 Subject: [PATCH] Bug 38605: Fix Harvester.pm use of days parameter Dates were incorrectly handled during the first days of the month because of the use of non-zero-padded days values. (t/db_dependent/Koha/OAIHarvester.t failed) Signed-off-by: Jonathan Druart --- Koha/OAI/Client/Harvester.pm | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Koha/OAI/Client/Harvester.pm b/Koha/OAI/Client/Harvester.pm index ed83d3d36de..0b3d02467fd 100644 --- a/Koha/OAI/Client/Harvester.pm +++ b/Koha/OAI/Client/Harvester.pm @@ -46,11 +46,7 @@ use MARC::Record; use Modern::Perl; use DateTime; use DateTime::Format::Strptime; -use Try::Tiny qw( catch try ); -use Date::Calc qw( - Add_Delta_Days - Today -); +use Try::Tiny qw( catch try ); our $xslt_engine = Koha::XSLT::Base->new; @@ -129,9 +125,7 @@ sub init { if ($days) { # Change this to yyyy-mm-dd - my ( $nowyear, $nowmonth, $nowday ) = Today(); - my @date = Add_Delta_Days( $nowyear, $nowmonth, $nowday, -$days ); - my $dt_start = dt_from_string( $date[0] . '-' . $date[1] . '-' . $date[2] ); + my $dt_start = dt_from_string->subtract( days => $days ); $start_date = $dt_start->ymd(); $self->printlog("Harvesting from $start_date"); } -- 2.34.1