Lines 283-289
if ( $pending_checkouts->count ) { # Useless test
Link Here
|
283 |
|
283 |
|
284 |
my $biblio_object = Koha::Biblios->find($issue->{biblionumber}); |
284 |
my $biblio_object = Koha::Biblios->find($issue->{biblionumber}); |
285 |
$issue->{biblio_object} = $biblio_object; |
285 |
$issue->{biblio_object} = $biblio_object; |
286 |
my $library_object = Koha::Libraries->find($issue->{branchcode}); |
286 |
my $library_object = Koha::Libraries->find( $issue->{branchcode} ); |
287 |
$issue->{branchname} = $library_object->branchname; |
287 |
$issue->{branchname} = $library_object->branchname; |
288 |
push @issuedat, $issue; |
288 |
push @issuedat, $issue; |
289 |
$count++; |
289 |
$count++; |
290 |
- |
|
|