From 4f6e6cf13aeec941e1b522465bbefc660ce51286 Mon Sep 17 00:00:00 2001 From: Tiffany Little Date: Tue, 22 Oct 2019 14:51:59 -0400 Subject: [PATCH] Adds create event to Vandelay.pm. --- Open-ILS/src/perlmods/lib/OpenILS/Application/Vandelay.pm | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Vandelay.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Vandelay.pm index f34c8aeaee..cf5c70b075 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Vandelay.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Vandelay.pm @@ -1373,6 +1373,17 @@ sub import_record_list_impl { $conn->respond({total => $$report_args{total}, progress => $$report_args{progress}}); return undef; + + for my $rec (@$rec_list) { + $U->create_events_for_hook( + 'vandelay.session_tracker'.$type.'complete', + $rec, + $e->requestor->home_ou, + undef, + undef, + 1 + ); + } } -- 2.11.0