Koha::Checkouts::ReturnClaim - Koha ReturnClaim object class
my $return_claim = Koha::Checkout::ReturnClaim->new($args)->store;
Overloaded store method that validates the attributes and raises relevant exceptions as needed.
my $item = $claim->item;
Return the return claim item
$claim->resolve(
{
resolution => $resolution,
resolved_by => $patron_id,
[ resolved_on => $dt
new_lost_status => $status, ]
}
);
Resolve the claim.
This method returns the mapping for representing a Koha::Checkouts::ReturnClaim object on the API.
Kyle M Hall <kyle@bywatersolutions.com>