Koha::Item - Koha Item object class
Returns the itemtype for the item based on whether item level itemtypes are set or not.
my $transfer = $item->get_transfer;
Return the transfer if the item is in transit or undef
Gets and sets the last borrower to return an item.
Accepts and returns Koha::Patron objects
$item->last_returned_by( $borrowernumber );
$last_returned_by = $item->last_returned_by();
Kyle M Hall <kyle@bywatersolutions.com>