3 # Copyright ByWater Solutions 2014
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 use Koha
::IssuingRules
;
28 use Koha
::Item
::Transfer
;
32 use base
qw(Koha::Object);
36 Koha::Item - Koha Item object class
44 =head3 effective_itemtype
46 Returns the itemtype for the item based on whether item level itemtypes are set or not.
50 sub effective_itemtype
{
53 return $self->_result()->effective_itemtype();
63 $self->{_home_branch
} ||= Koha
::Libraries
->find( $self->homebranch() );
65 return $self->{_home_branch
};
75 $self->{_holding_branch
} ||= Koha
::Libraries
->find( $self->holdingbranch() );
77 return $self->{_holding_branch
};
82 my $transfer = $item->get_transfer;
84 Return the transfer if the item is in transit or undef
90 my $transfer_rs = $self->_result->branchtransfers->search({ datearrived
=> undef })->first;
91 return unless $transfer_rs;
92 return Koha
::Item
::Transfer
->_new_from_dbic( $transfer_rs );
95 =head3 last_returned_by
97 Gets and sets the last borrower to return an item.
99 Accepts and returns Koha::Patron objects
101 $item->last_returned_by( $borrowernumber );
103 $last_returned_by = $item->last_returned_by();
107 sub last_returned_by
{
108 my ( $self, $borrower ) = @_;
110 my $items_last_returned_by_rs = Koha
::Database
->new()->schema()->resultset('ItemsLastBorrower');
113 return $items_last_returned_by_rs->update_or_create(
114 { borrowernumber
=> $borrower->borrowernumber, itemnumber
=> $self->id } );
117 unless ( $self->{_last_returned_by
} ) {
118 my $result = $items_last_returned_by_rs->single( { itemnumber
=> $self->id } );
120 $self->{_last_returned_by
} = Koha
::Patrons
->find( $result->get_column('borrowernumber') );
124 return $self->{_last_returned_by
};
128 =head3 can_article_request
130 my $bool = $item->can_article_request( $borrower )
132 Returns true if item can be specifically requested
134 $borrower must be a Koha::Patron object
138 sub can_article_request
{
139 my ( $self, $borrower ) = @_;
141 my $rule = $self->article_request_type($borrower);
143 return 1 if $rule && $rule ne 'no' && $rule ne 'bib_only';
147 =head3 article_request_type
149 my $type = $item->article_request_type( $borrower )
151 returns 'yes', 'no', 'bib_only', or 'item_only'
153 $borrower must be a Koha::Patron object
157 sub article_request_type
{
158 my ( $self, $borrower ) = @_;
160 my $branch_control = C4
::Context
->preference('HomeOrHoldingBranch');
162 $branch_control eq 'homebranch' ?
$self->homebranch
163 : $branch_control eq 'holdingbranch' ?
$self->holdingbranch
165 my $borrowertype = $borrower->categorycode;
166 my $itemtype = $self->effective_itemtype();
167 my $issuing_rule = Koha
::IssuingRules
->get_effective_issuing_rule({ categorycode
=> $borrowertype, itemtype
=> $itemtype, branchcode
=> $branchcode });
169 return q{} unless $issuing_rule;
170 return $issuing_rule->article_requests || q{}
183 Kyle M Hall <kyle@bywatersolutions.com>