Lines 569-576
foreach my $biblionumber (@biblionumbers) {
Link Here
|
569 |
$item->{available} = 1; |
569 |
$item->{available} = 1; |
570 |
$num_available++; |
570 |
$num_available++; |
571 |
if($branchitemrule->{'hold_fulfillment_policy'} eq 'any' ) { |
571 |
if($branchitemrule->{'hold_fulfillment_policy'} eq 'any' ) { |
572 |
$item->{pickup_locations} = 'Any library'; |
572 |
$item->{any_pickup_location} = 1; |
573 |
$item->{pickup_locations_code} = 'all'; |
|
|
574 |
} else { |
573 |
} else { |
575 |
my $arr_locations = Koha::Items->find($itemnumber) |
574 |
my $arr_locations = Koha::Items->find($itemnumber) |
576 |
->pickup_locations( { patron => $patron } )->as_list(); |
575 |
->pickup_locations( { patron => $patron } )->as_list(); |
577 |
- |
|
|