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

(-)a/C4/Circulation.pm (-1 / +10 lines)
Lines 3189-3194 sub AddRenewal { Link Here
3189
            DelUniqueDebarment({ borrowernumber => $borrowernumber, type => 'OVERDUES' });
3189
            DelUniqueDebarment({ borrowernumber => $borrowernumber, type => 'OVERDUES' });
3190
        }
3190
        }
3191
3191
3192
        # Add renewal record
3193
        my $renewal = Koha::Checkouts::Renewal->new(
3194
            {
3195
                issue_id   => $issue->issue_id,
3196
                renewer_id => C4::Context->userenv->{'number'},
3197
                seen       => $seen,
3198
                interface  => C4::Context->interface
3199
            }
3200
        )->store();
3201
3192
        # Add the renewal to stats
3202
        # Add the renewal to stats
3193
        C4::Stats::UpdateStats(
3203
        C4::Stats::UpdateStats(
3194
            {
3204
            {
3195
- 

Return to bug 30275