From 58c306f6558748c5adeba05200ab947793ebee52 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. --- Koha/Old/Checkout.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Koha/Old/Checkout.pm b/Koha/Old/Checkout.pm index 2967a78afe..0093ae0d1b 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.40.0