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

(-)a/Koha/Account.pm (-1 / +5 lines)
Lines 164-169 sub pay { Link Here
164
        $fine->amountoutstanding( $old_amountoutstanding - $amount_to_pay );
164
        $fine->amountoutstanding( $old_amountoutstanding - $amount_to_pay );
165
        $fine->store();
165
        $fine->store();
166
166
167
        if ( $fine->itemnumber && $fine->accounttype && ( $fine->accounttype eq 'Rep' || $fine->accounttype eq 'L' ) )
168
        {
169
            C4::Circulation::ReturnLostItem( $self->{patron_id}, $fine->itemnumber );
170
        }
171
167
        my $account_offset = Koha::Account::Offset->new(
172
        my $account_offset = Koha::Account::Offset->new(
168
            {
173
            {
169
                debit_id => $fine->id,
174
                debit_id => $fine->id,
170
- 

Return to bug 21014