Koha::Item - Koha Item object class
Returns the itemtype for the item based on whether item level itemtypes are set or not.
my $biblio = $item->biblio;
Return the bibliographic record of this item
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();
my $bool = $item->can_article_request( $borrower )
Returns true if item can be specifically requested
$borrower must be a Koha::Patron object
my $type = $item->article_request_type( $borrower )
returns 'yes', 'no', 'bib_only', or 'item_only'
$borrower must be a Koha::Patron object
Kyle M Hall <kyle@bywatersolutions.com>