From bcaaffa838c3276b8590863c826cb133dae03258 Mon Sep 17 00:00:00 2001 From: Shi Yao Wang Date: Wed, 26 Jul 2023 12:58:39 -0400 Subject: [PATCH] Bug 26994: List names in alphabetical order in Suggestion filter Display list of names in alphabetical order when using the Suggestion information filter in Suggestions management Test plan: 1. Add different purchase suggestions from various patron's names 2. Go to Acquisition > Suggestions 3. Click on the Suggestion information filters on the left-hand side 4. Use one of these drop-down menus: "Suggested by" or, "Managed by" or "Accepted by" --> notice the list of names in menus, names aren't displayed from A to Z 5. Apply patch and refresh page 6. Redo step 4 --> notice now it's sorted alphabetically Signed-off-by: Kelly Signed-off-by: Victor Grousset/tuxayo Signed-off-by: Tomas Cohen Arazi --- suggestion/suggestion.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/suggestion/suggestion.pl b/suggestion/suggestion.pl index 6ece2e12b6..93dc9734ef 100755 --- a/suggestion/suggestion.pl +++ b/suggestion/suggestion.pl @@ -529,6 +529,7 @@ foreach my $field ( qw(managedby acceptedby suggestedby budgetid) ) { } grep { $$_{'value'} } @$values_list; + @codes_list = sort { $a->{desc} cmp $b->{desc} } @codes_list; $hashlists{ lc($field) . "_loop" } = \@codes_list; } -- 2.39.2