From: erickson Date: Thu, 21 Aug 2008 15:10:58 +0000 (+0000) Subject: added a method to return the org unit closed dates X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e34bb82beb361ad286ee59cd5451b0f637de717b;p=Evergreen.git added a method to return the org unit closed dates git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_2_3@10396 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm b/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm index f1f65fd0fe..24784e4c77 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm @@ -3051,5 +3051,24 @@ sub create_user_opt_in_at_org { } +__PACKAGE__->register_method ( + method => 'retrieve_org_hours', + api_name => 'open-ils.actor.org_unit.hours_of_operation.retrieve', + signature => q/ + Returns the hours of operation for a specified org unit + @param authtoken The login session key + @param org_id The org_unit ID + / +); + +sub retrieve_org_hours { + my($self, $conn, $auth, $org_id) = @_; + my $e = new_editor(authtoken => $auth); + return $e->die_event unless $e->checkauth; + $org_id ||= $e->requestor->ws_ou; + return $e->retrieve_actor_org_unit_hours_of_operation($org_id); +} + + 1;