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

(-)a/members/pay.pl (-2 / +1 lines)
Lines 133-139 output_html_with_http_headers $input, $cookie, $template->output; Link Here
133
sub add_accounts_to_template {
133
sub add_accounts_to_template {
134
134
135
    my ( $total, undef, undef ) = GetMemberAccountRecords($borrowernumber);
135
    my ( $total, undef, undef ) = GetMemberAccountRecords($borrowernumber);
136
    my $account_lines = Koha::Account::Lines->search({ borrowernumber => $borrowernumber, }, { order_by => ['accounttype'] });
136
    my $account_lines = Koha::Account::Lines->search({ borrowernumber => $borrowernumber, amountoutstanding => { '!=' => 0 } }, { order_by => ['accounttype'] });
137
    my @accounts;
137
    my @accounts;
138
    while ( my $account_line = $account_lines->next ) {
138
    while ( my $account_line = $account_lines->next ) {
139
        $account_line = $account_line->unblessed;
139
        $account_line = $account_line->unblessed;
140
- 

Return to bug 10021