Bug 13851: Replace waiting holds logic in circulation.pl with Koha Objects
[koha.git] / Koha / Hold.pm
1 package Koha::Hold;
2
3 # Copyright ByWater Solutions 2014
4 #
5 # This file is part of Koha.
6 #
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
10 # version.
11 #
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.
15 #
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.
19
20 use Modern::Perl;
21
22 use Carp;
23
24 use Koha::Branches;
25 use Koha::Biblios;
26 use Koha::Items;
27
28 use base qw(Koha::Object);
29
30 =head1 NAME
31
32 Koha::Hold - Koha Hold object class
33
34 =head1 API
35
36 =head2 Class Methods
37
38 =cut
39
40 =head3 biblio
41
42 Returns the related Koha::Biblio object for this hold
43
44 =cut
45
46 sub biblio {
47     my ($self) = @_;
48
49     $self->{_biblio} ||= Koha::Biblios->find( $self->biblionumber() );
50
51     return $self->{_biblio};
52 }
53
54 =head3 item
55
56 Returns the related Koha::Item object for this Hold
57
58 =cut
59
60 sub item {
61     my ($self) = @_;
62
63     $self->{_item} ||= Koha::Items->find( $self->itemnumber() );
64
65     return $self->{_item};
66 }
67
68 =head3 branch
69
70 Returns the related Koha::Branch object for this Hold
71
72 =cut
73
74 sub branch {
75     my ($self) = @_;
76
77     $self->{_branch} ||= Koha::Branches->find( $self->branchcode() );
78
79     return $self->{_branch};
80 }
81
82 =head3 type
83
84 =cut
85
86 sub type {
87     return 'Reserve';
88 }
89
90 =head1 AUTHOR
91
92 Kyle M Hall <kyle@bywatersolutions.com>
93
94 =cut
95
96 1;