Lines 143-149
if ( $selected_accts ) {
Link Here
|
143 |
} |
143 |
} |
144 |
my @acc = split /,/, $selected_accts; |
144 |
my @acc = split /,/, $selected_accts; |
145 |
|
145 |
|
146 |
@selected_accountlines = koha::account::lines->search( |
146 |
@selected_accountlines = Koha::Account::Lines->search( |
147 |
{ |
147 |
{ |
148 |
borrowernumber => $borrowernumber, |
148 |
borrowernumber => $borrowernumber, |
149 |
amountoutstanding => { '<>' => 0 }, |
149 |
amountoutstanding => { '<>' => 0 }, |
150 |
- |
|
|