Bug 25501: Supress warnings on installing translation
[koha.git] / Koha / Holds.pm
blob604953d4c9751da5fea2d520ad21aa50ceef9457
1 package Koha::Holds;
3 # Copyright ByWater Solutions 2014
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 Carp;
24 use Koha::Database;
26 use Koha::Hold;
28 use base qw(Koha::Objects);
30 =head1 NAME
32 Koha::Holds - Koha Hold object set class
34 =head1 API
36 =head2 Class Methods
38 =cut
40 =head3 waiting
42 returns a set of holds that are waiting from an existing set
44 =cut
46 sub waiting {
47 my ( $self ) = @_;
49 return $self->search( { found => 'W' } );
52 =head3 unfilled
54 returns a set of holds that are unfilled from an existing set
56 =cut
58 sub unfilled {
59 my ( $self ) = @_;
61 return $self->search( { found => undef } );
64 =head3 forced_hold_level
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.
70 This method should be used with Hold sets where all
71 Hold objects share the same patron and record.
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.
81 =cut
83 sub forced_hold_level {
84 my ($self) = @_;
86 my $item_level_count = $self->search( { itemnumber => { '!=' => undef } } )->count();
87 return 'item' if $item_level_count > 0;
89 my $record_level_count = $self->search( { itemnumber => undef } )->count();
90 return 'record' if $record_level_count > 0;
92 return;
95 =head3 type
97 =cut
99 sub _type {
100 return 'Reserve';
103 =head3 object_class
105 =cut
107 sub object_class {
108 return 'Koha::Hold';
111 =head1 AUTHOR
113 Kyle M Hall <kyle@bywatersolutions.com>
115 =cut