From 7d695c8e27acad687be9527224f76c567df3b792 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 10 Feb 2025 15:42:18 +0100 Subject: [PATCH] Bug 35885: Sort vendors by name by default Signed-off-by: Magnus Enger To reproduce: - Set ERMModule = Enable - In the Acquisitions module I added 4 vendors, with names X, A, C, Y, in that order - Went to E-resource management > Agreements > New agreement - In the "Vendor" dropdown, the vendors are listed in the order they were entered: X, A, C, Y To test: - Applied the patch + restart_all + run "yarn js:build" in the cloned Koha repo inside KTD - Shift-reload the "New agreement" page - Vendors are in alphabetical order --- .../intranet-tmpl/prog/js/vue/fetch/acquisition-api-client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/fetch/acquisition-api-client.js b/koha-tmpl/intranet-tmpl/prog/js/vue/fetch/acquisition-api-client.js index 72f1a1d79c..154515fd3e 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/fetch/acquisition-api-client.js +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/fetch/acquisition-api-client.js @@ -13,7 +13,7 @@ export class AcquisitionAPIClient extends HttpClient { this.getAll({ endpoint: "vendors", query, - params, + params: { _order_by: "name", ...params }, headers: { "x-koha-embed": "aliases", }, -- 2.34.1