From f8a0f14c79a177abef5558293761f712b8ac14e0 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Thu, 6 Nov 2025 21:43:47 +0000 Subject: [PATCH] Bug 41212: Sort debit_types for manual invoice by description To test: 1. Add some debit types that can be manually invoiced. 2. Go to members/maninvoice.pl?borrowernumber=X where X is your borrowernumber 3. In the type dropdown see that the entries are sorted by code not description. 4. APPLY patch and restart_all 5. Try again, now it should sort by code. --- members/maninvoice.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/members/maninvoice.pl b/members/maninvoice.pl index 6f54c56d98a..1e898b728cb 100755 --- a/members/maninvoice.pl +++ b/members/maninvoice.pl @@ -203,7 +203,7 @@ if ( $op eq 'cud-add' ) { my $debit_types = Koha::Account::DebitTypes->search_with_library_limits( { can_be_invoiced => 1, archived => 0 }, - {}, $library_id + { order_by => { -asc => 'description' } }, $library_id ); $template->param( -- 2.39.5