<<

NAME

Koha::Checkout - Koha Checkout object class

API

Class Methods

is_overdue

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.

item

my $item = $checkout->item;

Return the checked out item

patron

my $patron = $checkout->patron

Return the patron for who the checkout has been done

type

AUTHOR

Kyle M Hall <kyle@bywatersolutions.com>

Jonathan Druart <jonathan.druart@bugs.koha-community.org>

<<