From 0e18939aa90a34899cf347b5a4ed312f919fd681 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 13 Feb 2025 14:55:47 +0000 Subject: [PATCH] Bug 38924: Add get_patron_quotas method This commit adds the ability to return the guarantor's quota when searching for a patron's quota at checkout. This will only occur if the related syspref is enabled "UseGuaratorQuota" and will return in this order or priority: guarantor's quota with availability patrons's quota with availability guarantor's quota with no availability patron's quota with no availibility null --- Koha/Patron/Quotas.pm | 121 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 117 insertions(+), 4 deletions(-) diff --git a/Koha/Patron/Quotas.pm b/Koha/Patron/Quotas.pm index a3d423f2367..8f31767999e 100644 --- a/Koha/Patron/Quotas.pm +++ b/Koha/Patron/Quotas.pm @@ -1,17 +1,130 @@ +package Koha::Patron::Quotas; + +use Modern::Perl; +use Koha::Patron::Quota; +use Koha::Patrons; +use base qw(Koha::Objects); + +=head1 NAME + +Koha::Patron::Quotas - Koha Patron Quota Object set class + +=head1 API + +=head2 Class Methods + =head3 get_patron_quota -Returns the active quota for a given patron + my $quota = Koha::Patron::Quotas->get_patron_quota($patron_id); + +Searches for any applicable quota for the given patron. Returns: +- First available quota found for patron or their guarantor (if UseGuarantorQuota enabled) +- If no available quota found, returns the first found quota +- Returns undef if no quota found =cut sub get_patron_quota { + my ($self, $patron_id) = @_; + + my $patron_quota = undef; + my $first_found_quota = undef; + + # First check all guarantor quotas if enabled + if (C4::Context->preference('UseGuarantorQuota')) { + my $patron = Koha::Patrons->find($patron_id); + my @guarantors = $patron->guarantor_relationships->guarantors->as_list; + + foreach my $guarantor (@guarantors) { + my $guarantor_quota = $self->search( + { + patron_id => $guarantor->borrowernumber, + start_date => { '<=' => \'CURRENT_DATE' }, + end_date => { '>=' => \'CURRENT_DATE' } + } + )->single; + + if ($guarantor_quota) { + # Return immediately if guarantor quota has availability + if ($guarantor_quota->has_available_quota) { + return $guarantor_quota; + } + # Store first found quota in case we need it later + $first_found_quota ||= $guarantor_quota; + } + } + } + + # Check patron's own quota if no available guarantor quota was found + $patron_quota = $self->search( + { + patron_id => $patron_id, + start_date => { '<=' => \'CURRENT_DATE' }, + end_date => { '>=' => \'CURRENT_DATE' } + } + )->single; + + # Return patron quota if exists, otherwise first found guarantor quota + return $patron_quota || $first_found_quota; +} + +=head3 create_quota + +Creates a new quota record for a patron + +=cut + +sub create_quota { + my ( $self, $params ) = @_; + + return Koha::Patron::Quota->new($params)->store; +} + +=head3 search_by_patron + +Finds all quotas for a patron + +=cut + +sub search_by_patron { my ( $self, $patron_id ) = @_; + return $self->search( { patron_id => $patron_id } ); +} +=head3 get_active_quotas + +Returns multiple active quota records + +=cut + +sub get_active_quotas { + my ($self) = @_; return $self->search( { - patron_id => $patron_id, start_date => { '<=' => \'CURRENT_DATE' }, - end_date => { '>=' => \'CURRENT_DATE' }, + end_date => { '>=' => \'CURRENT_DATE' } } - )->single; + ); +} + +=head2 Internal methods + +=head3 _type + +=cut + +sub _type { + return 'PatronQuota'; +} + +=head3 object_class + +Returns the package name for patron quota objects + +=cut + +sub object_class { + return 'Koha::Patron::Quota'; } + +1; -- 2.48.1