From db7eb617fcf6c5e21c040071084adda9b065dc10 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Thu, 8 Feb 2024 10:42:53 +0000 Subject: [PATCH] Bug 36030: acqui/basket: Do not place hold on deleted biblio Trivial fix. Test plan: Find a deleted biblio record in ACQ (in active orders part) and verify that there is no Place hold option on that row. Signed-off-by: Marcel de Rooy Signed-off-by: Emily Lamancusa --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt index c697a9650b..a5df205df7 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt @@ -708,7 +708,7 @@ [% books_loo.suppliers_report | html %] [% END %] - [% IF ( CAN_user_reserveforothers_place_holds ) %] + [% IF ( books_loo.biblionumber && CAN_user_reserveforothers_place_holds ) %] Place hold -- 2.34.1