@@ -, +, @@ $ kshell k$ prove t/db_dependent/Koha/Plugins/Holds_hooks.t --- C4/Reserves.pm | 7 +++++++ 1 file changed, 7 insertions(+) --- a/C4/Reserves.pm +++ a/C4/Reserves.pm @@ -306,6 +306,13 @@ sub AddReserve { } Koha::Plugins->call('after_hold_create', $hold); + Koha::Plugins->call( + 'after_hold_action', + { + action => 'place', + payload => { hold => $hold->get_from_storage } + } + ); return $reserve_id; } --