webstaff: alphabetize status and location dropdowns in copy-editor
authorGalen Charlton <gmc@esilibrary.com>
Thu, 21 Jan 2016 22:31:46 +0000 (17:31 -0500)
committerKathy Lussier <klussier@masslnc.org>
Tue, 2 Feb 2016 19:58:53 +0000 (14:58 -0500)
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Signed-off-by: Kathy Lussier <klussier@masslnc.org>
Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js

index 5dbccfa..9bdec0b 100644 (file)
@@ -126,7 +126,7 @@ function(egCore , $q) {
     service.get_locations = function(orgs) {
         return egCore.pcrud.search('acpl',
             {owning_lib : orgs},
-            null, {atomic : true}
+            {order_by : { acpl : 'name' }}, {atomic : true}
         );
     };
 
@@ -142,7 +142,7 @@ function(egCore , $q) {
         if (egCore.env.ccs)
             return $q.when(egCore.env.ccs.list);
 
-        return egCore.pcrud.retrieveAll('ccs', {}, {atomic : true}).then(
+        return egCore.pcrud.retrieveAll('ccs', {order_by : { ccs : 'name' }}, {atomic : true}).then(
             function(list) {
                 egCore.env.absorbList(list, 'ccs');
                 return list;