Bugzilla – Attachment 179361 Details for
Bug 39331
Guarantor relationships not removed when changing patron category from memberentry.pl
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39331: If patron category cant be guarantee do not continue with add_guarantors
Bug-39331-If-patron-category-cant-be-guarantee-do-.patch (text/plain), 1.81 KB, created by
Lucas Gass (lukeg)
on 2025-03-14 22:37:13 UTC
(
hide
)
Description:
Bug 39331: If patron category cant be guarantee do not continue with add_guarantors
Filename:
MIME Type:
Creator:
Lucas Gass (lukeg)
Created:
2025-03-14 22:37:13 UTC
Size:
1.81 KB
patch
obsolete
>From 2428b04a4853a50602fa832069195fc9ae225e4e Mon Sep 17 00:00:00 2001 >From: Lucas Gass <lucas@bywatersolutions.com> >Date: Fri, 14 Mar 2025 22:28:37 +0000 >Subject: [PATCH] Bug 39331: If patron category cant be guarantee do not > continue with add_guarantors > >To test: >1 - Remove age limits from a Child and Adult category in Administration->Patron categories. Ensure Child category can be guarantor and Adult cannot >2 - The above step is to avoid any age checks and form resubmission which removes the guarantor fields >3 - Find/create a child patron >4 - Add a guarantee from the Adult category to the child >5 - Check the DB: > SELECT * FROM borrower_relationships WHERE guarantee_id={borrowernumber of child}; >6 - Note the id colum >7 - Edit the child patron to Adult category >8 - Repeat 5 >9 - Note the relationship still exists and the id is incremented >10 - Oof! >11 - APPLY PATCH, restart_all >12 - Try again steps 3 - 8 >13 - The relationship should not be re-added >14 - Try with more than 1 guarantor on the record, confirming all are deleted >15 - Try adding some guarantor to patron types that should be able to, they relationship should work. >16 - Try changing some patrons to categories that do allow guarantors, making sure the relationship does stay. >--- > members/memberentry.pl | 4 ++++ > 1 file changed, 4 insertions(+) > >diff --git a/members/memberentry.pl b/members/memberentry.pl >index 0794a9cff34..5846b3b1c60 100755 >--- a/members/memberentry.pl >+++ b/members/memberentry.pl >@@ -995,6 +995,10 @@ sub patron_attributes_form { > sub add_guarantors { > my ( $patron, $input ) = @_; > >+ unless ( $patron->category->can_be_guarantee ) { >+ return; >+ } >+ > my @new_guarantor_id = $input->multi_param('new_guarantor_id'); > my @new_guarantor_relationship = $input->multi_param('new_guarantor_relationship'); > >-- >2.39.5
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 39331
:
179360
|
179361
|
179369
|
179578