Show
Ignore:
Timestamp:
01/23/08 11:30:52 (9 months ago)
Author:
erickson
Message:

added org name sorting to org list retrieval

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/Open-ILS/src/extras/org_tree_js.pl

    r7970 r8481  
    2525# fetch the org_unit's and org_unit_type's 
    2626my $e = OpenILS::Utils::CStoreEditor->new; 
    27 my $tree = $e->retrieve_all_actor_org_unit; 
    2827my $types = $e->retrieve_all_actor_org_unit_type; 
     28my $tree = $e->request( 
     29    'open-ils.cstore.direct.actor.org_unit.search.atomic', 
     30    {id => {"!=" => undef}}, 
     31    {order_by => {aou => 'name'}} 
     32); 
    2933 
    3034