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

(-)a/C4/Circulation.pm (-1 / +10 lines)
Lines 3025-3030 sub AddRenewal { Link Here
3025
            DelUniqueDebarment({ borrowernumber => $borrowernumber, type => 'OVERDUES' });
3025
            DelUniqueDebarment({ borrowernumber => $borrowernumber, type => 'OVERDUES' });
3026
        }
3026
        }
3027
3027
3028
        # Add renewal record
3029
        my $renewal = Koha::Checkouts::Renewal->new(
3030
            {
3031
                issue_id   => $issue->issue_id,
3032
                renewed_by => C4::Context->userenv->{'number'},
3033
                seen       => $seen,
3034
                interface  => C4::Context->interface
3035
            }
3036
        )->store();
3037
3028
        # Add the renewal to stats
3038
        # Add the renewal to stats
3029
        C4::Stats::UpdateStats(
3039
        C4::Stats::UpdateStats(
3030
            {
3040
            {
3031
- 

Return to bug 30275