Lines 106-112
while ( my $line = $accts->next ) {
Link Here
|
106 |
|
106 |
|
107 |
if ( $accountline->{itemnumber} ) { |
107 |
if ( $accountline->{itemnumber} ) { |
108 |
# Because we will not have access to the object from the template |
108 |
# Because we will not have access to the object from the template |
109 |
$accountline->{item} = { biblionumber => $line->item->biblionumber, }; |
109 |
$accountline->{item} = $line->item; |
110 |
} |
110 |
} |
111 |
push @accountlines, $accountline; |
111 |
push @accountlines, $accountline; |
112 |
} |
112 |
} |
113 |
- |
|
|