|
Lines 71-77
if ( $op eq 'list' ) {
Link Here
|
| 71 |
my @locations; |
71 |
my @locations; |
| 72 |
my @libraries; |
72 |
my @libraries; |
| 73 |
|
73 |
|
| 74 |
my @items = Koha::Items->search({ biblio_id => $recall->biblio_id }); |
74 |
my @items = Koha::Items->search({ biblio_id => $recall->biblio_id })->as_list; |
| 75 |
foreach my $item ( @items ) { |
75 |
foreach my $item ( @items ) { |
| 76 |
if ( $item->can_be_waiting_recall and !$item->checkout ) { |
76 |
if ( $item->can_be_waiting_recall and !$item->checkout ) { |
| 77 |
# if item can be pulled to fulfill recall, collect item data |
77 |
# if item can be pulled to fulfill recall, collect item data |
| 78 |
- |
|
|