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

(-)a/C4/Circulation.pm (-1 / +10 lines)
Lines 3217-3222 sub AddRenewal { Link Here
3217
            DelUniqueDebarment({ borrowernumber => $borrowernumber, type => 'OVERDUES' });
3217
            DelUniqueDebarment({ borrowernumber => $borrowernumber, type => 'OVERDUES' });
3218
        }
3218
        }
3219
3219
3220
        # Add renewal record
3221
        my $renewal = Koha::Checkouts::Renewal->new(
3222
            {
3223
                issue_id   => $issue->issue_id,
3224
                renewer_id => C4::Context->userenv->{'number'},
3225
                seen       => $seen,
3226
                interface  => C4::Context->interface
3227
            }
3228
        )->store();
3229
3220
        # Add the renewal to stats
3230
        # Add the renewal to stats
3221
        C4::Stats::UpdateStats(
3231
        C4::Stats::UpdateStats(
3222
            {
3232
            {
3223
- 

Return to bug 30275