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

(-)a/misc/cronjobs/reconcile_balances.pl (-2 / +2 lines)
Lines 81-87 cronlogaction(); Link Here
81
81
82
my @patron_ids = map { $_->borrowernumber } Koha::Account::Lines->search(
82
my @patron_ids = map { $_->borrowernumber } Koha::Account::Lines->search(
83
        {
83
        {
84
            amountoutstanding => { '<' => 0 }
84
            amountoutstanding => { '<' => 0 },
85
            borrowernumber => { '!=' => undef }
85
        },
86
        },
86
        {
87
        {
87
            columns  => [ qw/borrowernumber/ ],
88
            columns  => [ qw/borrowernumber/ ],
88
- 

Return to bug 24266