1 package Koha
::Checkouts
::ReturnClaim
;
3 # Copyright ByWater Solutions 2019
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22 use base
qw(Koha::Object);
25 use Koha
::Exceptions
::Checkouts
::ReturnClaims
;
26 use Koha
::Old
::Checkouts
;
31 Koha::Checkouts::ReturnClaim - Koha ReturnClaim object class
41 my $return_claim = Koha::Checkout::ReturnClaim->new($args)->store;
43 Overloaded I<store> method that validates the attributes and raises relevant
51 unless ( $self->created_by ) {
52 Koha
::Exceptions
::Checkouts
::ReturnClaims
::NoCreatedBy
->throw();
55 return $self->SUPER::store
;
65 my $checkout = Koha
::Checkouts
->find( $self->issue_id )
66 || Koha
::Old
::Checkouts
->find( $self->issue_id );
78 my $borrower = $self->_result->borrowernumber;
79 return Koha
::Patron
->_new_from_dbic( $borrower ) if $borrower;
84 This method returns the mapping for representing a Koha::Checkouts::ReturnClaim object
92 itemnumber
=> 'item_id',
93 borrowernumber
=> 'patron_id',
97 =head2 Internal methods
104 return 'ReturnClaim';
109 Kyle M Hall <kyle@bywatersolutions.com>