Bugzilla – Attachment 178599 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 quotas available on circuation screen
Bug-38924-Add-quotas-available-on-circuation-scree.patch (text/plain), 3.72 KB, created by
Martin Renvoize (ashimema)
on 2025-02-24 16:29:57 UTC
(
hide
)
Description:
Bug 38924: Add quotas available on circuation screen
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2025-02-24 16:29:57 UTC
Size:
3.72 KB
patch
obsolete
>From b91b0f74fa7d654d60e855a32e13f20da212cc36 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Mon, 10 Feb 2025 10:50:27 +0000 >Subject: [PATCH] Bug 38924: Add quotas available on circuation screen > >--- > circ/circulation.pl | 18 +++++++++++------- > .../prog/en/includes/patron_messages.inc | 14 ++++++++++++++ > 2 files changed, 25 insertions(+), 7 deletions(-) > >diff --git a/circ/circulation.pl b/circ/circulation.pl >index 1403c2cb95b..5fb9e63236a 100755 >--- a/circ/circulation.pl >+++ b/circ/circulation.pl >@@ -48,6 +48,7 @@ use Koha::CsvProfiles; > use Koha::Patrons; > use Koha::DateUtils qw( dt_from_string ); > use Koha::Patron::Restriction::Types; >+use Koha::Patron::Quotas; > use Koha::Plugins; > use Koha::Database; > use Koha::BiblioFrameworks; >@@ -183,13 +184,13 @@ my $restoreduedatespec = $query->param('restoreduedatespec') || $duedatespec || > if ( $restoreduedatespec && $restoreduedatespec eq "highholds_empty" ) { > undef $restoreduedatespec; > } >-my $issueconfirmed = $query->param('issueconfirmed'); >-my $cancelreserve = $query->param('cancelreserve'); >-my $cancel_recall = $query->param('cancel_recall'); >+my $issueconfirmed = $query->param('issueconfirmed'); >+my $cancelreserve = $query->param('cancelreserve'); >+my $cancel_recall = $query->param('cancel_recall'); > my $selected_quota_id = $query->param('selected_quota_id'); >-my $recall_id = $query->param('recall_id'); >-my $debt_confirmed = $query->param('debt_confirmed') || 0; # Don't show the debt error dialog twice >-my $charges = $query->param('charges') || q{}; >+my $recall_id = $query->param('recall_id'); >+my $debt_confirmed = $query->param('debt_confirmed') || 0; # Don't show the debt error dialog twice >+my $charges = $query->param('charges') || q{}; > > # Check if stickyduedate is turned off > if (@$barcodes) { >@@ -321,6 +322,9 @@ if ($patron) { > $template->param( limited_category => 1 ); > } > >+ # Add quota details >+ my $quotas = $patron->all_quotas; >+ $template->param( quotas => $quotas ); > } > > # >@@ -544,7 +548,7 @@ if ( @$barcodes && $op eq 'cud-checkout' ) { > undef, undef, > { > onsite_checkout => $onsite_checkout, auto_renew => $session->param('auto_renew'), >- switch_onsite_checkout => $switch_onsite_checkout, cancel_recall => $cancel_recall, >+ switch_onsite_checkout => $switch_onsite_checkout, cancel_recall => $cancel_recall, > recall_id => $recall_id, selected_quota_id => $selected_quota_id, > } > ); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/patron_messages.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/patron_messages.inc >index 39a9c0ecc6d..e911a88595d 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/patron_messages.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/patron_messages.inc >@@ -167,6 +167,20 @@ > </ul> > [% END # /F ( has_modifications || warndeparture... %] > >+[% IF quotas %] >+ <div id="quota" class="circmessage"> >+ <h4>Quota details</h4> >+ <ul> >+ [% FOREACH quota IN quotas %] >+ <li >+ >[% IF quota.patron_id != issue.borrowernumber %][% INCLUDE 'patron-title.inc' patron = quota.patron no_cardnumber = 1 %] -[% END %][% quota.description | html %] : [% quota.used | html %] / >+ [% quota.allocation | html %]</li >+ > >+ [% END %] >+ </ul> >+ </div> >+[% END %] >+ > [% IF waiting_recalls.count %] > <div id="recallswaiting" class="circmessage"> > [% SET waiting_here = 0 %] >-- >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