Bugzilla – Attachment 178593 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: Add get_patron_quotas method
Bug-38924-Add-getpatronquotas-method.patch (text/plain), 4.06 KB, created by
Martin Renvoize (ashimema)
on 2025-02-24 16:29:41 UTC
(
hide
)
Description:
Bug 38924: Add get_patron_quotas method
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2025-02-24 16:29:41 UTC
Size:
4.06 KB
patch
obsolete
>From 0e18939aa90a34899cf347b5a4ed312f919fd681 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >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
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