Bugzilla – Attachment 180419 Details for
Bug 39532
Script debar_patrons_with_fines.pl creates repeat restrictions, uses wrong restriction type
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39532: Script debar_patrons_with_fines.pl creates repeat restrictions, uses wrong restriction type
Bug-39532-Script-debarpatronswithfinespl-creates-r.patch (text/plain), 2.35 KB, created by
Kyle M Hall (khall)
on 2025-04-02 15:58:03 UTC
(
hide
)
Description:
Bug 39532: Script debar_patrons_with_fines.pl creates repeat restrictions, uses wrong restriction type
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2025-04-02 15:58:03 UTC
Size:
2.35 KB
patch
obsolete
>From 216d0918962b9309444e33b8acb0415589df3f73 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Wed, 2 Apr 2025 11:47:32 -0400 >Subject: [PATCH] Bug 39532: Script debar_patrons_with_fines.pl creates repeat > restrictions, uses wrong restriction type > >The cronjob debar_patrons_with_fines.pl is meant to add a restriction based on a fines threshold. > >The problem is that the script adds a MANUAL restriction, which makes no sense. MANUAL restrictions are meant to be manually created, never automatic as this script does. >In addition, they are repeatable, not unique. Every time this script runs, it will add an additional restriction. > >There is already a restriction type meant for this type of use case: SUSPENSION >We should change this script to create SUSPENSION restrictions instead of MANUAL restrictions. > >In summary, this script should use the unique restriction type SUSPENSION to prevent multiple additional restrictions from being created on each run. > >Test Plan: >1) Set up a patron with fines >2) Run misc/cronjobs/debar_patrons_with_fines.pl -c -m "Test message" >3) Note the restriction is created >4) Run misc/cronjobs/debar_patrons_with_fines.pl -c -m "Test message" again >5) Note another restriction is created >6) Delete the restrictions >7) Apply this patch >8) Run misc/cronjobs/debar_patrons_with_fines.pl -c -m "Test message" >9) Note the restriction is created >10) Run misc/cronjobs/debar_patrons_with_fines.pl -c -m "Test message" again >11) Note another restriction is *not* created! >--- > misc/cronjobs/debar_patrons_with_fines.pl | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/misc/cronjobs/debar_patrons_with_fines.pl b/misc/cronjobs/debar_patrons_with_fines.pl >index e85f1f77ed2..4f30a47a78b 100755 >--- a/misc/cronjobs/debar_patrons_with_fines.pl >+++ b/misc/cronjobs/debar_patrons_with_fines.pl >@@ -106,11 +106,11 @@ while ( my $patron = $patrons->next ) { > > # Don't crash, but keep debarring as long as you can! > eval { >- Koha::Patron::Debarments::AddDebarment( >+ Koha::Patron::Debarments::AddUniqueDebarment( > { > borrowernumber => $patron->id, > expiration => $expiration, >- type => 'MANUAL', >+ type => 'SUSPENSION', > comment => $message, > } > ); >-- >2.39.5 (Apple Git-154)
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 39532
:
180419
|
180493