From: Suzanne Paterno Date: Tue, 9 Apr 2019 14:42:15 +0000 (-0400) Subject: LP 1744386 & LP 1777184 - stat cats & stat cat entries not alphabetical X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=8c1d4d806ae424f0d0f7c81a3c66f1a9ab8f6f31;p=evergreen%2Fpines.git 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 --- 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 d3b6c2014f..3a82e5476b 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'} ] },