From d1a7193c5bcc0c491c2d5c97cbcef2be34ef6bcd 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 Content-Type: text/plain; charset=utf-8 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 Signed-off-by: Marcel de Rooy --- Koha/Old/Checkout.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Koha/Old/Checkout.pm b/Koha/Old/Checkout.pm index bcb8257ffa..b2187ef650 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.39.5