Koha::Checkout - Koha Checkout object class
my $is_overdue = $checkout->is_overdue( [ $reference_dt ] );
Return 1 if the checkout is overdue.
A reference date can be passed, in this case it will be used, otherwise today will be the reference date.
my $item = $checkout->item;
Return the checked out item
my $library = $checkout->library;
Return the library in which the transaction took place
my $patron = $checkout->patron
Return the patron for who the checkout has been done
my $issuer = $checkout->issuer
Return the patron by whom the checkout was done
This method returns the mapping for representing a Koha::Checkout object on the API.
my $return_claim = $checkout->claim_returned();
Kyle M Hall <kyle@bywatersolutions.com>
Jonathan Druart <jonathan.druart@bugs.koha-community.org>