Lines 305-314
foreach my $biblionumber (@biblionumbers) {
Link Here
|
305 |
|
305 |
|
306 |
#All is OK and we can continue |
306 |
#All is OK and we can continue |
307 |
} |
307 |
} |
308 |
elsif ( $canReserve eq 'noReservesAllowed') { |
308 |
elsif ( $canReserve->{status} eq 'noReservesAllowed' || $canReserve->{status} eq 'notReservable' ) { |
309 |
$no_reserves_allowed = 1; |
309 |
$no_reserves_allowed = 1; |
310 |
} |
310 |
} |
311 |
elsif ( $canReserve eq 'tooManyReserves' ) { |
311 |
elsif ( $canReserve->{status} eq 'tooManyReserves' ) { |
312 |
$exceeded_maxreserves = 1; |
312 |
$exceeded_maxreserves = 1; |
313 |
$template->param( maxreserves => $canReserve->{limit} ); |
313 |
$template->param( maxreserves => $canReserve->{limit} ); |
314 |
} |
314 |
} |
315 |
- |
|
|