Bug 7317: Add missing 'use Encode' statement
[koha.git] / Koha / IssuingRules.pm
blobe3664df7535b85eef42d75b17a3315ca16496134
1 package Koha::IssuingRules;
3 # Copyright Vaara-kirjastot 2015
4 # Copyright Koha Development Team 2016
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 3 of the License, or (at your option) any later
11 # version.
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 use Modern::Perl;
23 use Koha::Database;
25 use Koha::IssuingRule;
27 use base qw(Koha::Objects);
29 =head1 NAME
31 Koha::IssuingRules - Koha IssuingRule Object set class
33 =head1 API
35 =head2 Class Methods
37 =cut
39 sub get_effective_issuing_rule {
40 my ( $self, $params ) = @_;
42 my $default = '*';
43 my $categorycode = $params->{categorycode};
44 my $itemtype = $params->{itemtype};
45 my $branchcode = $params->{branchcode};
47 my $search_categorycode = $default;
48 my $search_itemtype = $default;
49 my $search_branchcode = $default;
51 if ($categorycode) {
52 $search_categorycode = { 'in' => [ $categorycode, $default ] };
54 if ($itemtype) {
55 $search_itemtype = { 'in' => [ $itemtype, $default ] };
57 if ($branchcode) {
58 $search_branchcode = { 'in' => [ $branchcode, $default ] };
61 my $rule = $self->search({
62 categorycode => $search_categorycode,
63 itemtype => $search_itemtype,
64 branchcode => $search_branchcode,
65 }, {
66 order_by => {
67 -desc => ['branchcode', 'categorycode', 'itemtype']
69 rows => 1,
70 })->single;
71 return $rule;
74 =head3 type
76 =cut
78 sub _type {
79 return 'Issuingrule';
82 sub object_class {
83 return 'Koha::IssuingRule';