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

(-)a/members/printinvoice.pl (-3 / +4 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->{itemnumber} ? $accountline_object->item : "" ;
60
$accountline->{item} = $accountline_object->item || "" ;
61
$accountline->{'issue'} = $accountline->{issue_id} ? $accountline_object->issue : "" ;
61
$accountline->{issue} = $accountline_object->issue || "";
62
#$accountline->{'item'} = $accountline->{itemnumber} ? $accountline_object->item : "" ;
63
#$accountline->{'issue'} = $accountline->{issue_id} ? $accountline_object->issue : "" ;
62
64
63
my $totalcredit;
65
my $totalcredit;
64
if ( $total <= 0 ) {
66
if ( $total <= 0 ) {
65
- 

Return to bug 19489