https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20760 --- Comment #8 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- (In reply to M. Tompsett from comment #7)
Comment on attachment 75779 [details] [review] [ALTERNATIVE PATCH] Bug 20760: Fill authorised values in svc framework
Review of attachment 75779 [details] [review]: -----------------------------------------------------------------
::: svc/cataloguing/framework @@ +53,5 @@
}
+my $avs = C4::Koha::GetAuthorisedValues(); +for my $av ( @$avs ) { + push @{ $authorised_values->{$av->{category}} }, { value => $av->{authorised_value}, lib => $av->{lib} };
The other version had order_by lib. This uses order by category first. Perhaps add a sort?
I do not see the point, read again the 3 lines you are quoting ;) -- You are receiving this mail because: You are watching all bug changes.