<<

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

library

my $library = $checkout->library;

Return the library in which the transaction took place

patron

my $patron = $checkout->patron

Return the patron for who the checkout has been done

issuer

my $issuer = $checkout->issuer

Return the patron by whom the checkout was done

to_api_mapping

This method returns the mapping for representing a Koha::Checkout object on the API.

claim_returned

my $return_claim = $checkout->claim_returned();

Internal methods

_type

AUTHOR

Kyle M Hall <kyle@bywatersolutions.com>

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

<<