<<

NAME

Koha::Old:Checkout - Koha checkout object for returned items

API

Class methods

item

my $item = $checkout->item;

Return the checked out item

account_lines

my $account_lines = $checkout->account_lines;

Return the checked out account_lines

library

my $library = $checkout->library;

Return the library in which the transaction took place. Might return undef.

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

renewals

  my $renewals = $checkout->renewals;

Return a Koha::Checkouts::Renewals set attached to this checkout

anonymize

    $checkout->anonymize();

Anonymize the given Koha::Old::Checkout object.

to_api_mapping

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

Internal methods

_type

<<