Lines 569-575
foreach my $biblioNum (@biblionumbers) {
Link Here
|
569 |
# items_any_available defined outside of the current loop, |
569 |
# items_any_available defined outside of the current loop, |
570 |
# so we avoiding loop inside IsAvailableForItemLevelRequest: |
570 |
# so we avoiding loop inside IsAvailableForItemLevelRequest: |
571 |
$policy_holdallowed &&= |
571 |
$policy_holdallowed &&= |
572 |
CanItemBeReserved( $patron, $tem )->{status} eq 'OK' && |
572 |
CanItemBeReserved( $patron, $item )->{status} eq 'OK' && |
573 |
IsAvailableForItemLevelRequest($item, $patron, undef, $items_any_available); |
573 |
IsAvailableForItemLevelRequest($item, $patron, undef, $items_any_available); |
574 |
|
574 |
|
575 |
if ($policy_holdallowed) { |
575 |
if ($policy_holdallowed) { |
576 |
- |
|
|