From 0fd132e3ac1eb423d2bc09dfe645d78c23ed6aeb Mon Sep 17 00:00:00 2001 From: Andrew Isherwood Date: Mon, 28 Jan 2019 16:37:07 +0000 Subject: [PATCH] Bug 20750: (follow-up) Fix dependency merge error During the dependency merge the embed of status_alias in the API call had got lost, resulting in the user defined statuses not displaying. This patch fixes that. --- koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt index ca732f0f30..7f12e7ce40 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt @@ -875,7 +875,7 @@ // Get our data from the API and process it prior to passing // it to datatables var ajax = $.ajax( - '/api/v1/illrequests?embed=metadata,patron,capabilities,library' + '/api/v1/illrequests?embed=metadata,patron,capabilities,library,status_alias' ).done(function() { var data = JSON.parse(ajax.responseText); // Make a copy, we'll be removing columns next and need -- 2.11.0