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

(-)a/members/summary-print.pl (-2 / +1 lines)
Lines 49-55 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', log Link Here
49
49
50
my $total = $patron->account->balance;
50
my $total = $patron->account->balance;
51
my $accts = Koha::Account::Lines->search(
51
my $accts = Koha::Account::Lines->search(
52
    { borrowernumber => $patron->borrowernumber },
52
    { borrowernumber => $patron->borrowernumber, amountoutstanding => { '!=' => 0 } },
53
    { order_by       => { -desc => 'accountlines_id' } }
53
    { order_by       => { -desc => 'accountlines_id' } }
54
);
54
);
55
55
56
- 

Return to bug 20656