From 3fb67f0ac28b33889aba7ff62df8595151b296e0 Mon Sep 17 00:00:00 2001 From: Bernard Scaife Date: Mon, 17 Mar 2025 18:07:02 +0000 Subject: [PATCH] Bug 32604: Correct boundary calculation for birthdate Add 1 to upperagelimit to make it calculate birthday boundaries correctly for patrons_to_update_category search To test: 1. Add upper age limit as 18 for child patron category. 2. Create a child patron whose age is 18. 3. Save. => Patron is saved successfully. 4. Run cronjob update_patrons_category.pl with verbose option. perl update_patrons_category.pl --too_old --from CHILD --to ADULT -v => Note that patron is reported as updated (or would have updated) as an adult patron. 5. Apply patch 6. Re-run steps 1 to 5 and note we no long update the 18 year olds. Signed-off-by: Martin Renvoize --- Koha/Patrons.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Koha/Patrons.pm b/Koha/Patrons.pm index 0f1dcaf8122..94809b5bb4b 100644 --- a/Koha/Patrons.pm +++ b/Koha/Patrons.pm @@ -384,7 +384,8 @@ sub search_patrons_to_update_category { $search_params->{dateofbirth}{'>'} = $dtf->format_datetime($date_after); } if ( $cat_from->upperagelimit && $params->{too_old} ) { - my $date_before = dt_from_string()->subtract( years => $cat_from->upperagelimit ); + # Must be `upperagelimit + 1` years old (e.g., if limit is 17, query for 18+) + my $date_before = dt_from_string()->subtract( years => $cat_from->upperagelimit + 1 ); $search_params->{dateofbirth}{'<'} = $dtf->format_datetime($date_before); } } -- 2.48.1