Bug 12556: reserves/request.pl: Reuse code from Koha::Hold
[koha.git] / Koha / Old / Checkout.pm
blob7b62111f0cd6b1d67864ac5a1141eb210c88eeb7
1 package Koha::Old::Checkout;
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18 use Modern::Perl;
20 use Koha::Database;
21 use Koha::Libraries;
23 use base qw(Koha::Object);
25 =head1 NAME
27 Koha::Old:Checkout - Koha checkout object for returned items
29 =head1 API
31 =head2 Class methods
33 =head3 item
35 my $item = $checkout->item;
37 Return the checked out item
39 =cut
41 sub item {
42 my ( $self ) = @_;
43 my $item_rs = $self->_result->item;
44 return Koha::Item->_new_from_dbic( $item_rs );
47 =head3 library
49 my $library = $checkout->library;
51 Return the library in which the transaction took place. Might return I<undef>.
53 =cut
55 sub library {
56 my ( $self ) = @_;
57 my $library_rs = $self->_result->library;
58 return unless $library_rs;
59 return Koha::Library->_new_from_dbic( $library_rs );
62 =head3 patron
64 my $patron = $checkout->patron
66 Return the patron for who the checkout has been done
68 =cut
70 sub patron {
71 my ( $self ) = @_;
72 my $patron_rs = $self->_result->borrower;
73 return unless $patron_rs;
74 return Koha::Patron->_new_from_dbic( $patron_rs );
77 =head3 to_api_mapping
79 This method returns the mapping for representing a Koha::Old::Checkout object
80 on the API.
82 =cut
84 sub to_api_mapping {
85 return {
86 issue_id => 'checkout_id',
87 borrowernumber => 'patron_id',
88 itemnumber => 'item_id',
89 date_due => 'due_date',
90 branchcode => 'library_id',
91 returndate => 'checkin_date',
92 lastreneweddate => 'last_renewed_date',
93 issuedate => 'checkout_date',
94 notedate => 'note_date',
98 =head2 Internal methods
100 =head3 _type
102 =cut
104 sub _type {
105 return 'OldIssue';