Lines 1356-1380
sub CanBookBeIssued {
Link Here
|
1356 |
} |
1356 |
} |
1357 |
|
1357 |
|
1358 |
# CHECK FOR QUOTAS |
1358 |
# CHECK FOR QUOTAS |
1359 |
if ( my $quota = Koha::Patron::Quotas->get_patron_quota($patron->borrowernumber) ) { |
1359 |
if ( my $quotas = $patron->all_quotas->filter_by_active ) { |
1360 |
if (ref($quota) eq 'ARRAY') { |
1360 |
if ( $quotas->count > 1 ) { |
|
|
1361 |
|
1361 |
# Multiple available quotas found - need confirmation from user |
1362 |
# Multiple available quotas found - need confirmation from user |
1362 |
$needsconfirmation{QUOTA_SELECT} = $quota; |
1363 |
$needsconfirmation{QUOTA_SELECT} = $quotas; |
1363 |
} |
1364 |
} elsif ( $quotas->count == 1 ) { |
1364 |
elsif (!$quota->has_available_quota) { |
1365 |
my $quota = $quotas->next; |
1365 |
if ( C4::Context->preference("AllowQuotaOverride") ) { |
1366 |
if ( !$quota->has_available_quota ) { |
1366 |
$needsconfirmation{QUOTA_EXCEEDED} = { |
1367 |
if ( C4::Context->preference("AllowQuotaOverride") ) { |
1367 |
available => $quota->available_quota, |
1368 |
$needsconfirmation{QUOTA_EXCEEDED} = { |
1368 |
total => $quota->allocation, |
1369 |
available => $quota->available_quota, |
1369 |
used => $quota->used, |
1370 |
total => $quota->allocation, |
1370 |
}; |
1371 |
used => $quota->used, |
1371 |
} |
1372 |
}; |
1372 |
else { |
1373 |
} else { |
1373 |
$issuingimpossible{QUOTA_EXCEEDED} = { |
1374 |
$issuingimpossible{QUOTA_EXCEEDED} = { |
1374 |
available => $quota->available_quota, |
1375 |
available => $quota->available_quota, |
1375 |
total => $quota->allocation, |
1376 |
total => $quota->allocation, |
1376 |
used => $quota->used, |
1377 |
used => $quota->used, |
1377 |
}; |
1378 |
}; |
|
|
1379 |
} |
1378 |
} |
1380 |
} |
1379 |
} |
1381 |
} |
1380 |
} |
1382 |
} |
Lines 1935-1941
sub AddIssue {
Link Here
|
1935 |
if ($selected_quota_id) { |
1937 |
if ($selected_quota_id) { |
1936 |
$quota = Koha::Patron::Quotas->find($selected_quota_id); |
1938 |
$quota = Koha::Patron::Quotas->find($selected_quota_id); |
1937 |
} else { |
1939 |
} else { |
1938 |
$quota = Koha::Patron::Quotas->get_patron_quota($patron->borrowernumber); |
1940 |
$quota = $patron->all_quotas->filter_by_active->single; |
1939 |
} |
1941 |
} |
1940 |
|
1942 |
|
1941 |
if ($quota) { |
1943 |
if ($quota) { |
Lines 3283-3296
sub CanBookBeRenewed {
Link Here
|
3283 |
} |
3285 |
} |
3284 |
|
3286 |
|
3285 |
# # CHECK FOR QUOTAS |
3287 |
# # CHECK FOR QUOTAS |
3286 |
if (my $quota_usage = Koha::Patron::Quota::Usages->find({ issue_id => $issue->issue_id })) { |
3288 |
if ( my $quota_usage = Koha::Patron::Quota::Usages->find( { issue_id => $issue->issue_id } ) ) { |
3287 |
|
3289 |
|
3288 |
# Get current active quota for the patron |
3290 |
# Get current actives quota for the patron |
3289 |
if (my $active_quota = Koha::Patron::Quotas->get_active_quota($quota_usage->patron_id)) { |
3291 |
if ( my $active_quotas = $patron->all_quotas->filter_by_active ) { |
3290 |
|
3292 |
my $all_exceeded = 1; |
3291 |
if (!$active_quota->has_available_quota) { |
3293 |
while ( my $active_quota = $active_quotas->next ) { |
3292 |
return (0, "QUOTA_EXCEEDED"); |
3294 |
if ( $active_quota->has_available_quota ) { |
|
|
3295 |
$all_exceeded = 0; |
3296 |
} |
3293 |
} |
3297 |
} |
|
|
3298 |
return ( 0, "QUOTA_EXCEEDED" ) if $all_exceeded; |
3294 |
} |
3299 |
} |
3295 |
} |
3300 |
} |
3296 |
|
3301 |
|
Lines 3409-3420
sub AddRenewal {
Link Here
|
3409 |
# Check quotas and record usage if needed |
3414 |
# Check quotas and record usage if needed |
3410 |
if (my $quota_usage = Koha::Patron::Quota::Usages->find({ issue_id => $issue->issue_id })) { |
3415 |
if (my $quota_usage = Koha::Patron::Quota::Usages->find({ issue_id => $issue->issue_id })) { |
3411 |
# Get current active quota for the patron |
3416 |
# Get current active quota for the patron |
3412 |
if (my $active_quota = Koha::Patron::Quotas->get_active_quota($quota_usage->patron_id)) { |
3417 |
if (my $active_quota = Koha::Patron::Quotas->find($quota_usage->patron_quota_id)) { |
3413 |
# Update patron's used quota value |
3418 |
# Update patron's used quota value |
3414 |
$active_quota->add_usage({ |
3419 |
$active_quota->add_usage({ |
3415 |
patron_id => $patron->patron_id, |
3420 |
patron_id => $patron->borrowernumber, |
3416 |
issue_id => $issue->issue_id, |
3421 |
issue_id => $issue->issue_id, |
3417 |
}); |
3422 |
}); |
3418 |
} |
3423 |
} |
3419 |
} |
3424 |
} |
3420 |
|
3425 |
|