Bug 24593: Rewrite marc21_default_matching_rules to YAML
[koha.git] / Koha / Checkouts / ReturnClaim.pm
blob92ab38f08db8e377a5e04a0781f6a70be253a648
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>.
20 use Modern::Perl;
22 use base qw(Koha::Object);
24 use Koha::Checkouts;
25 use Koha::Exceptions::Checkouts::ReturnClaims;
26 use Koha::Old::Checkouts;
27 use Koha::Patrons;
29 =head1 NAME
31 Koha::Checkouts::ReturnClaim - Koha ReturnClaim object class
33 =head1 API
35 =head2 Class methods
37 =cut
39 =head3 store
41 my $return_claim = Koha::Checkout::ReturnClaim->new($args)->store;
43 Overloaded I<store> method that validates the attributes and raises relevant
44 exceptions as needed.
46 =cut
48 sub store {
49 my ( $self ) = @_;
51 unless ( $self->created_by ) {
52 Koha::Exceptions::Checkouts::ReturnClaims::NoCreatedBy->throw();
55 return $self->SUPER::store;
58 =head3 checkout
60 =cut
62 sub checkout {
63 my ($self) = @_;
65 my $checkout = Koha::Checkouts->find( $self->issue_id )
66 || Koha::Old::Checkouts->find( $self->issue_id );
68 return $checkout;
71 =head3 patron
73 =cut
75 sub patron {
76 my ( $self ) = @_;
78 my $borrower = $self->_result->borrowernumber;
79 return Koha::Patron->_new_from_dbic( $borrower ) if $borrower;
82 =head3 to_api_mapping
84 This method returns the mapping for representing a Koha::Checkouts::ReturnClaim object
85 on the API.
87 =cut
89 sub to_api_mapping {
90 return {
91 id => 'claim_id',
92 itemnumber => 'item_id',
93 borrowernumber => 'patron_id',
97 =head2 Internal methods
99 =head3 _type
101 =cut
103 sub _type {
104 return 'ReturnClaim';
107 =head1 AUTHOR
109 Kyle M Hall <kyle@bywatersolutions.com>
111 =cut