From dcfaf6fd9e7b2627ee86015a0833d0fb70e46be9 Mon Sep 17 00:00:00 2001 From: Jacob O'Mara Date: Tue, 4 Feb 2025 16:55:38 +0000 Subject: [PATCH] Bug 38924: Hook quota check and allocation into renewals This adds the checks for quotas and allocates a usage for a renewal of a book, should a quota exist for this patron --- C4/Circulation.pm | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index 3fea13473c7..8f53423e700 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -3267,7 +3267,13 @@ sub CanBookBeRenewed { { return ( 0, 'booked' ) unless ( $booking->patron_id == $patron->borrowernumber ); } + } + # CHECK FOR QUOTAS + if ( my $quota = Koha::Patron::Quotas->get_patron_quota($patron->borrowernumber) ) { + unless ( $quota->has_available_quota ) { + return ( 0, "QUOTA_EXCEEDED" ); + } } if ( $auto_renew eq 'auto_too_soon' ) { @@ -3382,6 +3388,15 @@ sub AddRenewal { my $circ_library = Koha::Libraries->find( _GetCircControlBranch( $item_object, $patron ) ); + # Check quotas and record usage if needed + if ( my $quota = Koha::Patron::Quotas->get_patron_quota($patron->borrowernumber) ) { + # Update patron's used quota value + $quota->add_usage({ + patron_id => $patron->patron_id, + issue_id => $issue->issue_id, + }); + } + my $schema = Koha::Database->schema; $schema->txn_do( sub { -- 2.48.1