From 5aec74390d47f035cfac89f461f9da046a60b0f5 Mon Sep 17 00:00:00 2001 From: Suzanne Paterno Date: Tue, 9 Apr 2019 10:42:15 -0400 Subject: [PATCH] LP 1744386 & LP 1777184 - stat cats & stat cat entries not alphabetical Statistical categories will be alphabetized first by library and then byt category. The entires within each category will also be alphabetizes --- Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js b/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js index b600013c5f..9dbdb9e75f 100644 --- a/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js +++ b/Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js @@ -127,9 +127,10 @@ function(egCore , $q) { service.get_statcats = function(orgs) { return egCore.pcrud.search('asc', {owner : orgs}, - { flesh : 1, + { flesh : 2, flesh_fields : { - asc : ['owner','entries'] + asc : ['owner','entries'], + asce : ['value'] }, order_by : [{'class':'asc', 'field':'owner'},{'class':'asc', 'field':'name'},{'class':'asce', 'field':'value'} ] }, -- 2.11.0