From f1054fd9a7804509e866696ada30980d95621b85 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 2 Jun 2023 09:49:35 +0200 Subject: [PATCH] Bug 33568: Prevent 500 when filtering by item type (FIXMEs) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit See FIXMEs added by this patch Signed-off-by: Owen Leonard Signed-off-by: Laurence Rault Signed-off-by: Emily Lamancusa Signed-off-by: Tomás Cohen Arazi Signed-off-by: Katrin Fischer --- .../en/includes/html_helpers/tables/items/catalogue_detail.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc index c3d1092930..488227df2d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc @@ -282,7 +282,8 @@ [% END %] [% IF ( item_level_itypes ) %] { - data: "me.itype:biblioitem.itemtype", + data: "me.item_type_id", // FIXME Cannot filter by biblioitem.itemtype + // FIXME Cannot filter on item type description className: "itype", searchable: true, orderable: true, -- 2.39.5