Lines 400-406
sub MapItemsToHoldRequests {
Link Here
|
400 |
C4::Context->preference('LocalHoldsPriorityItemControl'); |
400 |
C4::Context->preference('LocalHoldsPriorityItemControl'); |
401 |
|
401 |
|
402 |
foreach my $request (@$hold_requests) { |
402 |
foreach my $request (@$hold_requests) { |
403 |
next if (defined($request->{itemnumber})); #skip item level holds in local priority checking |
|
|
404 |
last if $num_items_remaining == 0; |
403 |
last if $num_items_remaining == 0; |
405 |
|
404 |
|
406 |
my $local_hold_match; |
405 |
my $local_hold_match; |
407 |
- |
|
|