Bug 39532 - Script debar_patrons_with_fines.pl creates repeat restrictions, uses wrong restriction type
Summary: Script debar_patrons_with_fines.pl creates repeat restrictions, uses wrong re...
Status: Signed Off
Alias: None
Product: Koha
Classification: Unclassified
Component: Command-line Utilities (show other bugs)
Version: unspecified
Hardware: All All
: P5 - low normal
Assignee: Kyle M Hall (khall)
QA Contact: Testopia
URL:
Keywords:
Depends on: 15157
Blocks:
  Show dependency treegraph
 
Reported: 2025-04-02 15:46 UTC by Kyle M Hall (khall)
Modified: 2025-04-03 11:57 UTC (History)
2 users (show)

See Also:
Change sponsored?: ---
Patch complexity: Small patch
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:
Circulation function:


Attachments
Bug 39532: Script debar_patrons_with_fines.pl creates repeat restrictions, uses wrong restriction type (2.35 KB, patch)
2025-04-02 15:58 UTC, Kyle M Hall (khall)
Details | Diff | Splinter Review
Bug 39532: Script debar_patrons_with_fines.pl creates repeat restrictions, uses wrong restriction type (2.38 KB, patch)
2025-04-03 11:57 UTC, Magnus Enger
Details | Diff | Splinter Review

Note You need to log in before you can comment on or make changes to this bug.
Description Kyle M Hall (khall) 2025-04-02 15:46:56 UTC
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.
Comment 1 Kyle M Hall (khall) 2025-04-02 15:58:03 UTC Comment hidden (obsolete)
Comment 2 Magnus Enger 2025-04-03 11:57:31 UTC
Created attachment 180493 [details] [review]
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!

Signed-off-by: Magnus Enger <magnus@libriotech.no>