From ee57d6336c5dc7b81f5ddd5d6f454f12ffb71bb5 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 13 Feb 2025 13:09:49 +0000 Subject: [PATCH] Bug 38924: Display quota used at checkout Use the quota relation added to Koha::Checkout to display an info alert message that quota allocation has been used by the checkout that just took place --- .../intranet-tmpl/prog/en/modules/circ/circulation.tt | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt index 30d321b9b3a..d87293f8122 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -117,6 +117,11 @@
This is the anonymous patron, so circulation is disabled.
[% END %] + [% IF issue && issue.quota %] + [% SET quota = issue.quota %] +
Usage recorded against[% IF quota.patron_id != issue.borrowernumber %][% INCLUDE 'patron-title.inc' patron = quota.patron no_cardnumber = 1 %][% END %] [% quota.description | html %] quota.
+ [% END %] + [% IF ( NEEDSCONFIRMATION ) %]
[% IF CAN_user_circulate_force_checkout or ADDITIONAL_MATERIALS %] @@ -135,7 +140,7 @@ [% END %] - [%IF ( QUOTA_EXCEEDED ) %] + [% IF ( QUOTA_EXCEEDED ) %]
  • Quota Exceeded. Available: [% QUOTA_EXCEEDED.available | html %] / [% QUOTA_EXCEEDED.total | html %]. [% IF CAN_user_circulate_force_checkout %] @@ -656,7 +661,7 @@
  • Age restriction [% AGE_RESTRICTION | html %].
  • [% END %] - [%IF ( QUOTA_EXCEEDED ) %] + [% IF ( QUOTA_EXCEEDED ) %]
  • Quota Exceeded. Available: [% QUOTA_EXCEEDED.available | html %] / [% QUOTA_EXCEEDED.total | html %].
  • [% END %] -- 2.48.1