Changeset 8481 for trunk/Open-ILS/src/extras/org_tree_js.pl
- Timestamp:
- 01/23/08 11:30:52 (9 months ago)
- Files:
-
- 1 modified
-
trunk/Open-ILS/src/extras/org_tree_js.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Open-ILS/src/extras/org_tree_js.pl
r7970 r8481 25 25 # fetch the org_unit's and org_unit_type's 26 26 my $e = OpenILS::Utils::CStoreEditor->new; 27 my $tree = $e->retrieve_all_actor_org_unit;28 27 my $types = $e->retrieve_all_actor_org_unit_type; 28 my $tree = $e->request( 29 'open-ils.cstore.direct.actor.org_unit.search.atomic', 30 {id => {"!=" => undef}}, 31 {order_by => {aou => 'name'}} 32 ); 29 33 30 34
