Bug 23846: Add a check to the data inconsistencies script
[koha.git] / Koha / Holds.pm
1 package Koha::Holds;
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::Database;
25
26 use Koha::Hold;
27
28 use base qw(Koha::Objects);
29
30 =head1 NAME
31
32 Koha::Holds - Koha Hold object set class
33
34 =head1 API
35
36 =head2 Class Methods
37
38 =cut
39
40 =head3 waiting
41
42 returns a set of holds that are waiting from an existing set
43
44 =cut
45
46 sub waiting {
47     my ( $self ) = @_;
48
49     return $self->search( { found => 'W' } );
50 }
51
52 =head3 unfilled
53
54 returns a set of holds that are unfilled from an existing set
55
56 =cut
57
58 sub unfilled {
59     my ( $self ) = @_;
60
61     return $self->search( { found => undef } );
62 }
63
64 =head3 forced_hold_level
65
66 If a patron has multiple holds for a single record,
67 those holds must be either all record level holds,
68 or they must all be item level holds.
69
70 This method should be used with Hold sets where all
71 Hold objects share the same patron and record.
72
73 This method will return 'item' if the patron has
74 at least one item level hold. It will return 'record'
75 if the patron has holds but none are item level,
76 Finally, if the patron has no holds, it will return
77 undef which indicates the patron may select either
78 record or item level holds, barring any other rules
79 that would prevent one or the other.
80
81 =cut
82
83 sub forced_hold_level {
84     my ($self) = @_;
85
86     my $item_level_count = $self->search( { itemnumber => { '!=' => undef } } )->count();
87     return 'item' if $item_level_count > 0;
88
89     my $record_level_count = $self->search( { itemnumber => undef } )->count();
90     return 'record' if $record_level_count > 0;
91
92     return;
93 }
94
95 =head3 type
96
97 =cut
98
99 sub _type {
100     return 'Reserve';
101 }
102
103 =head3 object_class
104
105 =cut
106
107 sub object_class {
108     return 'Koha::Hold';
109 }
110
111 =head1 AUTHOR
112
113 Kyle M Hall <kyle@bywatersolutions.com>
114
115 =cut
116
117 1;