<<

NAME

Koha::Checkouts::ReturnClaim - Koha ReturnClaim object class

API

Class methods

store

    my $return_claim = Koha::Checkout::ReturnClaim->new($args)->store;

Overloaded store method that validates the attributes and raises relevant exceptions as needed.

checkout

old_checkout

patron

item

  my $item = $claim->item;

Return the return claim item

resolve

    $claim->resolve(
        {
            resolution      => $resolution,
            resolved_by     => $patron_id,
          [ resolved_on     => $dt
            new_lost_status => $status, ]
        }
    );

Resolve the claim.

to_api_mapping

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

Internal methods

_type

AUTHOR

Kyle M Hall <kyle@bywatersolutions.com>

<<