Bugzilla – Attachment 171399 Details for
Bug 37881
Guarantor code broken
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37881: Editing patron with guarantor won't crash
Bug-37881-Editing-patron-with-guarantor-wont-crash.patch (text/plain), 1.46 KB, created by
Brendan Lawlor
on 2024-09-12 14:13:44 UTC
(
hide
)
Description:
Bug 37881: Editing patron with guarantor won't crash
Filename:
MIME Type:
Creator:
Brendan Lawlor
Created:
2024-09-12 14:13:44 UTC
Size:
1.46 KB
patch
obsolete
>From 34b8fa374387c45bb72437eff4c65f93fabdd206 Mon Sep 17 00:00:00 2001 >From: Baptiste Wojtkowski <baptiste.wojtkowski@biblibre.com> >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 <blawlor@clamsnet.org> >--- > members/memberentry.pl | 17 ++++++++++++----- > 1 file changed, 12 insertions(+), 5 deletions(-) > >diff --git a/members/memberentry.pl b/members/memberentry.pl >index 2fa5447e4d..5c561d3f76 100755 >--- a/members/memberentry.pl >+++ b/members/memberentry.pl >@@ -940,11 +940,18 @@ sub add_guarantors { > > 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.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 37881
:
171302
|
171303
|
171399
|
171400
|
171442
|
171443
|
171444