Bugzilla – Attachment 178595 Details for
Bug 38924
Introduce an organization level loan 'Quota' system for Koha
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38924: Hook quota check and allocation into renewals
Bug-38924-Hook-quota-check-and-allocation-into-ren.patch (text/plain), 1.52 KB, created by
Martin Renvoize (ashimema)
on 2025-02-24 16:29:46 UTC
(
hide
)
Description:
Bug 38924: Hook quota check and allocation into renewals
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2025-02-24 16:29:46 UTC
Size:
1.52 KB
patch
obsolete
>From dcfaf6fd9e7b2627ee86015a0833d0fb70e46be9 Mon Sep 17 00:00:00 2001 >From: Jacob O'Mara <jacobomara901@gmail.com> >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
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 38924
:
178582
|
178583
|
178584
|
178585
|
178586
|
178587
|
178588
|
178589
|
178590
|
178591
|
178592
|
178593
|
178594
| 178595 |
178596
|
178597
|
178598
|
178599
|
178600
|
178601
|
178602
|
178603
|
178604
|
178605
|
178606
|
178607
|
178608