Lines 69-75
use Koha::Patron::Quota;
Link Here
|
69 |
use Koha::Patron::Quota::Usage; |
69 |
use Koha::Patron::Quota::Usage; |
70 |
use Koha::Patron::Quota::Usages; |
70 |
use Koha::Patron::Quota::Usages; |
71 |
|
71 |
|
72 |
use Carp qw( carp ); |
72 |
use Carp qw( carp ); |
73 |
use List::MoreUtils qw( any ); |
73 |
use List::MoreUtils qw( any ); |
74 |
use Scalar::Util qw( looks_like_number blessed ); |
74 |
use Scalar::Util qw( looks_like_number blessed ); |
75 |
use Date::Calc qw( Date_to_Days ); |
75 |
use Date::Calc qw( Date_to_Days ); |
Lines 1356-1381
sub CanBookBeIssued {
Link Here
|
1356 |
} |
1356 |
} |
1357 |
|
1357 |
|
1358 |
# CHECK FOR QUOTAS |
1358 |
# CHECK FOR QUOTAS |
1359 |
if ( my $quotas = $patron->all_quotas->filter_by_active ) { |
1359 |
if ( C4::Context->preference('EnableCirculationQuotas') ) { |
1360 |
if ( $quotas->count > 1 ) { |
1360 |
if ( my $quotas = $patron->all_quotas->filter_by_active ) { |
1361 |
|
1361 |
if ( $quotas->count > 1 ) { |
1362 |
# Multiple available quotas found - need confirmation from user |
1362 |
|
1363 |
$needsconfirmation{QUOTA_SELECT} = $quotas; |
1363 |
# Multiple available quotas found - need confirmation from user |
1364 |
} elsif ( $quotas->count == 1 ) { |
1364 |
$needsconfirmation{QUOTA_SELECT} = $quotas; |
1365 |
my $quota = $quotas->next; |
1365 |
} elsif ( $quotas->count == 1 ) { |
1366 |
if ( !$quota->has_available_quota ) { |
1366 |
my $quota = $quotas->next; |
1367 |
if ( C4::Context->preference("AllowQuotaOverride") ) { |
1367 |
if ( !$quota->has_available_quota ) { |
1368 |
$needsconfirmation{QUOTA_EXCEEDED} = { |
1368 |
if ( C4::Context->preference("AllowQuotaOverride") ) { |
1369 |
available => $quota->available_quota, |
1369 |
$needsconfirmation{QUOTA_EXCEEDED} = { |
1370 |
total => $quota->allocation, |
1370 |
available => $quota->available_quota, |
1371 |
used => $quota->used, |
1371 |
total => $quota->allocation, |
1372 |
}; |
1372 |
used => $quota->used, |
1373 |
} else { |
1373 |
}; |
1374 |
$issuingimpossible{QUOTA_EXCEEDED} = { |
1374 |
} else { |
1375 |
available => $quota->available_quota, |
1375 |
$issuingimpossible{QUOTA_EXCEEDED} = { |
1376 |
total => $quota->allocation, |
1376 |
available => $quota->available_quota, |
1377 |
used => $quota->used, |
1377 |
total => $quota->allocation, |
1378 |
}; |
1378 |
used => $quota->used, |
|
|
1379 |
}; |
1380 |
} |
1379 |
} |
1381 |
} |
1380 |
} |
1382 |
} |
1381 |
} |
1383 |
} |
Lines 1933-1951
sub AddIssue {
Link Here
|
1933 |
if C4::Context->preference('RealTimeHoldsQueue'); |
1935 |
if C4::Context->preference('RealTimeHoldsQueue'); |
1934 |
|
1936 |
|
1935 |
# Check quotas and record usage if needed |
1937 |
# Check quotas and record usage if needed |
1936 |
my $quota; |
1938 |
if ( C4::Context->preference('EnableCirculationQuotas') ) { |
1937 |
if ($selected_quota_id) { |
1939 |
my $quota; |
1938 |
$quota = Koha::Patron::Quotas->find($selected_quota_id); |
1940 |
if ($selected_quota_id) { |
1939 |
} else { |
1941 |
$quota = Koha::Patron::Quotas->find($selected_quota_id); |
1940 |
$quota = $patron->all_quotas->filter_by_active->single; |
1942 |
} else { |
1941 |
} |
1943 |
$quota = $patron->all_quotas->filter_by_active->single; |
|
|
1944 |
} |
1945 |
|
1946 |
if ($quota) { |
1942 |
|
1947 |
|
1943 |
if ($quota) { |
1948 |
# Update patron's used quota value |
1944 |
# Update patron's used quota value |
1949 |
$quota->add_usage( |
1945 |
$quota->add_usage({ |
1950 |
{ |
1946 |
patron_id => $patron->patron_id, |
1951 |
patron_id => $patron->borrowernumber, |
1947 |
issue_id => $issue->issue_id, |
1952 |
issue_id => $issue->issue_id, |
1948 |
}); |
1953 |
} |
|
|
1954 |
); |
1955 |
} |
1949 |
} |
1956 |
} |
1950 |
} |
1957 |
} |
1951 |
} |
1958 |
} |
Lines 3284-3301
sub CanBookBeRenewed {
Link Here
|
3284 |
} |
3291 |
} |
3285 |
} |
3292 |
} |
3286 |
|
3293 |
|
3287 |
# # CHECK FOR QUOTAS |
3294 |
# # CHECK FOR QUOTAS |
3288 |
if ( my $quota_usage = Koha::Patron::Quota::Usages->find( { issue_id => $issue->issue_id } ) ) { |
3295 |
if ( C4::Context->preference('EnableCirculationQuotas') ) { |
|
|
3296 |
if ( my $quota_usage = Koha::Patron::Quota::Usages->find( { issue_id => $issue->issue_id } ) ) { |
3289 |
|
3297 |
|
3290 |
# Get current actives quota for the patron |
3298 |
# Get current actives quota for the patron |
3291 |
if ( my $active_quotas = $patron->all_quotas->filter_by_active ) { |
3299 |
if ( my $active_quotas = $patron->all_quotas->filter_by_active ) { |
3292 |
my $all_exceeded = 1; |
3300 |
my $all_exceeded = 1; |
3293 |
while ( my $active_quota = $active_quotas->next ) { |
3301 |
while ( my $active_quota = $active_quotas->next ) { |
3294 |
if ( $active_quota->has_available_quota ) { |
3302 |
if ( $active_quota->has_available_quota ) { |
3295 |
$all_exceeded = 0; |
3303 |
$all_exceeded = 0; |
|
|
3304 |
} |
3296 |
} |
3305 |
} |
|
|
3306 |
return ( 0, "QUOTA_EXCEEDED" ) if $all_exceeded; |
3297 |
} |
3307 |
} |
3298 |
return ( 0, "QUOTA_EXCEEDED" ) if $all_exceeded; |
|
|
3299 |
} |
3308 |
} |
3300 |
} |
3309 |
} |
3301 |
|
3310 |
|
Lines 3412-3425
sub AddRenewal {
Link Here
|
3412 |
my $circ_library = Koha::Libraries->find( _GetCircControlBranch( $item_object, $patron ) ); |
3421 |
my $circ_library = Koha::Libraries->find( _GetCircControlBranch( $item_object, $patron ) ); |
3413 |
|
3422 |
|
3414 |
# Check quotas and record usage if needed |
3423 |
# Check quotas and record usage if needed |
3415 |
if (my $quota_usage = Koha::Patron::Quota::Usages->find({ issue_id => $issue->issue_id })) { |
3424 |
if ( C4::Context->preference('EnableCirculationQuotas') ) { |
3416 |
# Get current active quota for the patron |
3425 |
if ( my $quota_usage = Koha::Patron::Quota::Usages->find( { issue_id => $issue->issue_id } ) ) { |
3417 |
if (my $active_quota = Koha::Patron::Quotas->find($quota_usage->patron_quota_id)) { |
3426 |
|
3418 |
# Update patron's used quota value |
3427 |
# Get current active quota for the patron |
3419 |
$active_quota->add_usage({ |
3428 |
if ( my $active_quota = Koha::Patron::Quotas->find( $quota_usage->patron_quota_id ) ) { |
3420 |
patron_id => $patron->borrowernumber, |
3429 |
|
3421 |
issue_id => $issue->issue_id, |
3430 |
# Update patron's used quota value |
3422 |
}); |
3431 |
$active_quota->add_usage( |
|
|
3432 |
{ |
3433 |
patron_id => $patron->borrowernumber, |
3434 |
issue_id => $issue->issue_id, |
3435 |
} |
3436 |
); |
3437 |
} |
3423 |
} |
3438 |
} |
3424 |
} |
3439 |
} |
3425 |
|
3440 |
|