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 $patron = $checkout->patron
Return the patron for who the checkout has been done
Kyle M Hall <kyle@bywatersolutions.com>
Jonathan Druart <jonathan.druart@bugs.koha-community.org>