From 37a08550e82997e00e0b97e7dfab3e910c6d6096 Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Fri, 4 Aug 2023 16:02:40 +0000 Subject: [PATCH] Bug 34431: Show both status and status_alias - if exists - in table column Signed-off-by: Stephen Graham --- .../intranet-tmpl/prog/js/ill-list-table.js | 20 +++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js b/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js index 9419b0fa5d..b9877e3eb3 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js +++ b/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js @@ -51,6 +51,19 @@ $(document).ready(function() { return ''; } + function display_request_status(row) { + let status = row._strings.status.str; + let status_alias = row._strings.status_av ? + row._strings.status_av.str ? + row._strings.status_av.str : + row._strings.status_av.code : + null; + + let status_label = status + (status_alias ? " "+status_alias+"" : ""); + + return status_label; + } + // At the moment, the only prefilter possible is borrowernumber // see ill/ill-requests.pl and members/ill-requests.pl let additional_prefilters = {}; @@ -294,12 +307,7 @@ $(document).ready(function() { "data": "status", "orderable": true, "render": function(data, type, row, meta) { - let status_label = row._strings.status_av ? - row._strings.status_av.str ? - row._strings.status_av.str : - row._strings.status_av.code : - row._strings.status.str - return escape_str(status_label); + return display_request_status(row); } }, { -- 2.30.2