Bug 15109 - Regression in patron search results ordering
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 13 Nov 2015 09:17:49 +0000 (09:17 +0000)
committerLiz Rea <wizzyrea@gmail.com>
Fri, 11 Dec 2015 01:15:33 +0000 (14:15 +1300)
In Koha 3.16 or earlier, before the introduction of the ajax datatable
for patron searching, the search results were ordered by name. In
master, the results are currently ordered by cardnumber, which is not
very useful.

Test Plan:
1) Do a "browse by last name" or a patron search
2) Note the results are sorted by card number
3) Apply this patch
4) Reload the page, start a new search
5) Note the results are sorted by name

Signed-off-by: Nicole Engard <nengard@bywatersolutions.com>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
(cherry picked from commit cc65a5fed2afd27b2a45af49d6fe08d54fef7de9)
Signed-off-by: Frédéric Demians <f.demians@tamil.fr>
(cherry picked from commit 1524cb1119db421bd67a22e461cb53bdadd75ec7)
Signed-off-by: Liz Rea <wizzyrea@gmail.com>

koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt

index c7ddaba..1c7e550 100644 (file)
@@ -217,9 +217,9 @@ $(document).ready(function() {
         'bFilter': false,
         'bAutoWidth': false,
         [% IF CAN_user_tools_manage_patron_lists %]
-            'aaSorting': [[1, 'asc']],
+            'aaSorting': [[2, 'asc']],
         [% ELSE %]
-            'aaSorting': [[0, 'asc']],
+            'aaSorting': [[1, 'asc']],
         [% END %]
         "aLengthMenu": [aLengthMenu, aLengthMenuLabel],
         'sPaginationType': 'full_numbers',