Koha::ArticleRequest - Koha Article Request Object class
$article_request->request;
Marks the article as requested. Send a notification if appropriate.
$article_request->set_pending;
Marks the article as pending. Send a notification if appropriate.
$article_request->process;
Marks the article as in process. Send a notification if appropriate.
$article_request->complete;
Marks the article as completed. Send a notification if appropriate.
$article_request->cancel;
Marks the article as cancelled. Send a notification if appropriate.
Returns the Koha::Biblio object for this article request
my $debit = $article_request->debit;
Returns the related Koha::Account::Line object for this article request
Returns the Koha::Item object for this article request
Returns the Koha::Patron object for this article request
Returns the Koha::Patron object for this article request
Returns the Koha::Library object for this article request
Override the default store behavior so that new opac requests will have notifications sent.
$self->notify();
internal method to be called when changing an article request status. If a letter exists for the new status, it enqueues it.
Kyle M Hall <kyle@bywatersolutions.com>