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

(-)a/Koha/Account.pm (-3 / +2 lines)
Lines 247-253 sub pay { Link Here
247
    UpdateStats(
247
    UpdateStats(
248
        {
248
        {
249
            branch         => $library_id,
249
            branch         => $library_id,
250
            type           => $type,
250
            type           => lc($type),
251
            amount         => $amount,
251
            amount         => $amount,
252
            borrowernumber => $self->{patron_id},
252
            borrowernumber => $self->{patron_id},
253
        }
253
        }
Lines 403-409 sub add_credit { Link Here
403
                UpdateStats(
403
                UpdateStats(
404
                    {
404
                    {
405
                        branch         => $library_id,
405
                        branch         => $library_id,
406
                        type           => $credit_type,
406
                        type           => lc($credit_type),
407
                        amount         => $amount,
407
                        amount         => $amount,
408
                        borrowernumber => $self->{patron_id},
408
                        borrowernumber => $self->{patron_id},
409
                    }
409
                    }
410
- 

Return to bug 23805