Koha::ILL::Request::HistoryCheck - Koha ILL HistoryCheck
Object-oriented class that provides the ILL request type disclaimer
This class provides the ability to verify if it should render type disclaimer and handle the template params accordingly
my $show_history_check =
Koha::ILL::Request::HistoryCheck->show_history_check($params);
Given $params, return true if history check should be shown
my $history_check_template_params =
Koha::ILL::Request::TypeDisclaimer->history_check_template_params(
$params);
Given $params, return true if history check should be rendered
$history_check->after_request_created($params, $request);
Actions that need to be done after the request has been created
my $matching_requests = $self->_find_matching_requests();
Returns a list of matching requests (match is done by doi, isbn, pubmedid)
Pedro Amorim <pedro.amorim@ptfs-europe.com>