View | Details | Raw Unified | Return to bug 38924
Collapse All | Expand All

(-)a/C4/Circulation.pm (-1 / +34 lines)
Lines 64-70 use Koha::Exceptions::Checkout; Link Here
64
use Koha::Plugins;
64
use Koha::Plugins;
65
use Koha::Recalls;
65
use Koha::Recalls;
66
use Koha::Library::Hours;
66
use Koha::Library::Hours;
67
use Carp            qw( carp );
67
use Koha::Patron::Quotas;
68
use Koha::Patron::Quota;
69
use Koha::Patron::Quota::Usage;
70
71
use Carp qw( carp );
68
use List::MoreUtils qw( any );
72
use List::MoreUtils qw( any );
69
use Scalar::Util    qw( looks_like_number blessed );
73
use Scalar::Util    qw( looks_like_number blessed );
70
use Date::Calc      qw( Date_to_Days );
74
use Date::Calc      qw( Date_to_Days );
Lines 1350-1355 sub CanBookBeIssued { Link Here
1350
        }
1354
        }
1351
    }
1355
    }
1352
1356
1357
    # CHECK FOR QUOTAS
1358
    if ( my $quota = Koha::Patron::Quotas->get_patron_quota($patron->borrowernumber) ) {
1359
        unless ( $quota->has_available_quota ) {
1360
            if ( C4::Context->preference("AllowQuotaOverride") ) {
1361
                $needsconfirmation{QUOTA_EXCEEDED} = {
1362
                    available => $quota->available_quota,
1363
                    total => $quota->allocation,
1364
                    used => $quota->used,
1365
                };
1366
            }
1367
            else {
1368
                $issuingimpossible{QUOTA_EXCEEDED} = {
1369
                    available => $quota->available_quota,
1370
                    total => $quota->allocation, 
1371
                    used => $quota->used,
1372
                };
1373
            }
1374
        }
1375
    }
1376
1353
    return ( \%issuingimpossible, \%needsconfirmation, \%alerts, \%messages, );
1377
    return ( \%issuingimpossible, \%needsconfirmation, \%alerts, \%messages, );
1354
}
1378
}
1355
1379
Lines 1899-1904 sub AddIssue { Link Here
1899
            Koha::BackgroundJob::BatchUpdateBiblioHoldsQueue->new->enqueue(
1923
            Koha::BackgroundJob::BatchUpdateBiblioHoldsQueue->new->enqueue(
1900
                { biblio_ids => [ $item_object->biblionumber ] } )
1924
                { biblio_ids => [ $item_object->biblionumber ] } )
1901
                if C4::Context->preference('RealTimeHoldsQueue');
1925
                if C4::Context->preference('RealTimeHoldsQueue');
1926
1927
            # Check quotas and record usage if needed
1928
            if ( my $quota = Koha::Patron::Quotas->get_patron_quota($patron->borrowernumber) ) {
1929
                # Update patron's used quota value
1930
                $quota->add_usage({
1931
                    patron_id => $patron->patron_id, 
1932
                    issue_id => $issue->issue_id,
1933
                });
1934
            }
1902
        }
1935
        }
1903
    }
1936
    }
1904
    return $issue;
1937
    return $issue;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-1 / +13 lines)
Lines 135-140 Link Here
135
                    </li>
135
                    </li>
136
                [% END %]
136
                [% END %]
137
137
138
                [%IF ( QUOTA_EXCEEDED ) %]
139
                    <li class="needsconfirm age_restriction">
140
                        Quota Exceeded [% QUOTA_EXCEEDED | html %].
141
                        [% IF CAN_user_circulate_force_checkout %]
142
                            Check out anyway?
143
                        [% END %]
144
                    </li>
145
                [% END %]
146
138
                [% IF ( DEBT ) %]
147
                [% IF ( DEBT ) %]
139
                    <li class="needsconfirm debt">The patron has a debt of [% DEBT | $Price %].</li>
148
                    <li class="needsconfirm debt">The patron has a debt of [% DEBT | $Price %].</li>
140
                [% END %]
149
                [% END %]
Lines 628-633 Link Here
628
                    <li>Age restriction [% AGE_RESTRICTION | html %].</li>
637
                    <li>Age restriction [% AGE_RESTRICTION | html %].</li>
629
                [% END %]
638
                [% END %]
630
639
640
                [%IF ( QUOTA_EXCEEDED ) %]
641
                    <li>Quota Exceeded [% QUOTA_EXCEEDED | html %].</li>
642
                [% END %]
643
631
                [% IF ( EXPIRED ) %]
644
                [% IF ( EXPIRED ) %]
632
                    <li>Patron's card is expired</li>
645
                    <li>Patron's card is expired</li>
633
                [% END %]
646
                [% END %]
634
- 

Return to bug 38924