From bf5febb094770de14adc956f472f8ac6724e26dd 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=UTF-8 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 --- .../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 c3d1092930b..488227df2d0 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.34.1