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; |