From 0138ea45c6003aa39853fafdc35b725c57ded4dc Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 21 Mar 2023 14:08:05 +0000 Subject: [PATCH] Bug 33284: Set renewer_id appropriately for anonymize settings This patch adds a trigger into the anonymize function of Koha::Old::Checkout such that we pass along the anonymize action to the renewals record. Signed-off-by: Andrew Fuerste-Henry --- Koha/Old/Checkout.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Koha/Old/Checkout.pm b/Koha/Old/Checkout.pm index 2967a78afe4..0093ae0d1b6 100644 --- a/Koha/Old/Checkout.pm +++ b/Koha/Old/Checkout.pm @@ -136,6 +136,9 @@ sub anonymize { Koha::Exceptions::SysPref::NotSet->throw( syspref => 'AnonymousPatron' ) unless $anonymous_id; + my $self_renewals = $self->renewals->search( { renewer_id => $self->borrowernumber } ); + $self_renewals->update( { renewer_id => $anonymous_id } ); + return $self->update( { borrowernumber => $anonymous_id } ); } -- 2.45.2