From 8d76a99d473952282ad3c15f5e3a8d555a5ab9a5 Mon Sep 17 00:00:00 2001 From: Baptiste Wojtkowski Date: Wed, 11 Sep 2024 11:54:38 +0200 Subject: [PATCH] Bug 37881: Editing patron with guarantor won't crash This patch fixes issue introduced by BZ32530 Test Plan (on main): 1 - Edit a patron 2 - Do not change anything and submit -> you get an error 3 - Apply both patches 4 - Repeat 1&2 -> everything works fine 5 - Try and delete the guarantor -> it will be deleted Signed-off-by: Brendan Lawlor Signed-off-by: Martin Renvoize Signed-off-by: Katrin Fischer --- members/memberentry.pl | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/members/memberentry.pl b/members/memberentry.pl index 2fa5447e4d..2227df425f 100755 --- a/members/memberentry.pl +++ b/members/memberentry.pl @@ -934,17 +934,26 @@ sub add_guarantors { my @new_guarantor_id = $input->multi_param('new_guarantor_id'); my @new_guarantor_relationship = $input->multi_param('new_guarantor_relationship'); - for ( my $i = 0 ; $i < scalar @new_guarantor_id; $i++ ) { + for ( my $i = 0 ; $i < scalar @new_guarantor_id ; $i++ ) { my $guarantor_id = $new_guarantor_id[$i]; my $relationship = $new_guarantor_relationship[$i]; next unless $guarantor_id; - $patron->add_guarantor( + my $existing_relationship_count = Koha::Patron::Relationships->search( { + guarantee_id => $patron->id, guarantor_id => $guarantor_id, - relationship => $relationship, } - ); + )->count; + + if ( $existing_relationship_count == 0 ) { + $patron->add_guarantor( + { + guarantor_id => $guarantor_id, + relationship => $relationship, + } + ); + } } } -- 2.39.5