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

(-)a/Koha/Account.pm (-3 / +2 lines)
Lines 279-285 sub pay { Link Here
279
        $o->store();
279
        $o->store();
280
    }
280
    }
281
281
282
    UpdateStats(
282
    C4::Stats::UpdateStats(
283
        {
283
        {
284
            branch         => $library_id,
284
            branch         => $library_id,
285
            type           => lc($type),
285
            type           => lc($type),
Lines 435-441 sub add_credit { Link Here
435
                    }
435
                    }
436
                )->store();
436
                )->store();
437
437
438
                UpdateStats(
438
                C4::Stats::UpdateStats(
439
                    {
439
                    {
440
                        branch         => $library_id,
440
                        branch         => $library_id,
441
                        type           => lc($credit_type),
441
                        type           => lc($credit_type),
442
- 

Return to bug 24151