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

(-)a/C4/Circulation.pm (-8 / +9 lines)
Lines 2206-2219 sub AddReturn { Link Here
2206
        }
2206
        }
2207
    }
2207
    }
2208
2208
2209
    my $checkin = Koha::Old::Checkouts->find($issue->id);
2209
    if ( $issue ) {
2210
        my $checkin = Koha::Old::Checkouts->find($issue->id);
2210
2211
2211
    Koha::Plugins->call('after_circ_action', {
2212
        Koha::Plugins->call('after_circ_action', {
2212
        action  => 'checkin',
2213
            action  => 'checkin',
2213
        payload => {
2214
            payload => {
2214
            checkout=> $checkin
2215
                checkout=> $checkin
2215
        }
2216
            }
2216
    });
2217
        });
2218
    }
2217
2219
2218
    return ( $doreturn, $messages, $issue, ( $patron ? $patron->unblessed : {} ));
2220
    return ( $doreturn, $messages, $issue, ( $patron ? $patron->unblessed : {} ));
2219
}
2221
}
2220
- 

Return to bug 26108