From 6a3caf0b17f3861826abd76c943e6f3dce4d2921 Mon Sep 17 00:00:00 2001 From: Lisette Scheer Date: Fri, 27 Sep 2024 18:01:38 +0000 Subject: [PATCH] Bug 36020: (follow-up) Add TT support to recall notices --- C4/Letters.pm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/C4/Letters.pm b/C4/Letters.pm index 7bdbfc9bf2..8a0f89f387 100644 --- a/C4/Letters.pm +++ b/C4/Letters.pm @@ -1904,6 +1904,12 @@ sub _get_tt_params { plural => 'train_items', pk => 'train_item_id' }, + recalls => { + module => 'Koha::Recalls', + singular => 'recall', + plural => 'recalls', + pk => 'recall_id' + }, }; my $dbh = C4::Context->dbh; -- 2.39.5