View | Details | Raw Unified | Return to bug 19489
Collapse All | Expand All

(-)a/members/printinvoice.pl (-3 / +2 lines)
Lines 57-64 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', log Link Here
57
my $total = $patron->account->balance;
57
my $total = $patron->account->balance;
58
my $accountline_object = Koha::Account::Lines->find($accountlines_id);
58
my $accountline_object = Koha::Account::Lines->find($accountlines_id);
59
my $accountline = $accountline_object->unblessed;
59
my $accountline = $accountline_object->unblessed;
60
$accountline->{'item'} = $accountline_object->item;
60
$accountline->{'item'} = $accountline->{itemnumber} ? $accountline_object->item : "" ;
61
$accountline->{'issue'} = $accountline_object->issue;
61
$accountline->{'issue'} = $accountline->{issue_id} ? $accountline_object->issue : "" ;
62
62
63
my $totalcredit;
63
my $totalcredit;
64
if ( $total <= 0 ) {
64
if ( $total <= 0 ) {
65
- 

Return to bug 19489