From f2ea15d098f1ec449d622ddc2c88db757a17ed71 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 12 Jul 2024 10:23:22 +0100 Subject: [PATCH] Bug 37340: Restore sorting on 'Details' column in edifactmsgs This patch restores the sorting options on the 'Details' field in the edifact messages page. Signed-off-by: David Nind --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/edifactmsgs.tt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/edifactmsgs.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/edifactmsgs.tt index 5a55f8f039..ef645b7856 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/edifactmsgs.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/edifactmsgs.tt @@ -122,9 +122,10 @@ } }, { + "data": "type:basket_id", "title": _("Details"), - "searchable": false, - "orderable": false, + "searchable": true, + "orderable": true, "render": function(data, type, row, meta) { let rendered = ''; if ( row.type == 'QUOTE' || row.type == 'ORDERS' ) { -- 2.39.2