Bugzilla – Attachment 178603 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 quota accessor to Koha::Checkout and use on checkouts page
Bug-38924-Add-quota-accessor-to-KohaCheckout-and-u.patch (text/plain), 1.70 KB, created by
Martin Renvoize (ashimema)
on 2025-02-24 16:30:07 UTC
(
hide
)
Description:
Bug 38924: Add quota accessor to Koha::Checkout and use on checkouts page
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2025-02-24 16:30:07 UTC
Size:
1.70 KB
patch
obsolete
>From 3c240f5ac7989daaffb3f68216b76bc4a68c3052 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Fri, 7 Feb 2025 12:12:24 +0000 >Subject: [PATCH] Bug 38924: Add quota accessor to Koha::Checkout and use on > checkouts page > >--- > Koha/Checkout.pm | 21 +++++++++++++++++++++ > Koha/Patron/Quotas.pm | 12 ++++++++++++ > 2 files changed, 33 insertions(+) > >diff --git a/Koha/Checkout.pm b/Koha/Checkout.pm >index 31ec7a5d1a4..c107be7d7a8 100644 >--- a/Koha/Checkout.pm >+++ b/Koha/Checkout.pm >@@ -165,6 +165,27 @@ sub renewals { > return Koha::Checkouts::Renewals->_new_from_dbic($renewals_rs); > } > >+=head3 quota >+ >+my $quota = $checkout->quota; >+ >+Return the checked out quota >+ >+=cut >+ >+sub quota { >+ my ($self) = @_; >+ my $usage_rs = $self->_result->quota_usages->search( >+ {}, >+ { >+ rows => 1, >+ order_by => { '-desc' => 'creation_date' } >+ } >+ )->single; >+ return unless $usage_rs; >+ return Koha::Patron::Quota->_new_from_dbic( $usage_rs->patron_quota ); >+} >+ > =head3 attempt_auto_renew > > my ($success, $error, $updated) = $checkout->auto_renew({ confirm => 1 }); >diff --git a/Koha/Patron/Quotas.pm b/Koha/Patron/Quotas.pm >index fc55f26da23..4d9c39f1957 100644 >--- a/Koha/Patron/Quotas.pm >+++ b/Koha/Patron/Quotas.pm >@@ -2,6 +2,8 @@ package Koha::Patron::Quotas; > > use base qw(Koha::Objects); > use Modern::Perl; >+use base qw(Koha::Objects); >+ > use Koha::Patron::Quota; > use Koha::Patrons; > >@@ -65,4 +67,14 @@ sub object_class { > return 'Koha::Patron::Quota'; > } > >+=head3 koha_object_class >+ >+Returns the package name for patron quota objects >+ >+=cut >+ >+sub koha_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