Koha/Koha/RefundLostItemFeeRules.pm
Jonathan Druart 7d8b96803f
Bug 24545: Fix license statements
Bug 9978 should have fixed them all, but some were missing.
We want all the license statements part of Koha to be identical, and
using the GPLv3 statement.

Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
2020-02-24 13:31:26 +00:00

179 lines
3.8 KiB
Perl

package Koha::RefundLostItemFeeRules;
# Copyright Theke Solutions 2016
#
# This file is part of Koha.
#
# Koha is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# Koha is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Koha; if not, see <http://www.gnu.org/licenses>.
use Modern::Perl;
use Koha::Database;
use Koha::Exceptions;
use Koha::CirculationRule;
use base qw(Koha::CirculationRules);
=head1 NAME
Koha::RefundLostItemFeeRules - Koha RefundLostItemFeeRules object set class
=head1 API
=head2 Class Methods
=cut
=head3 _type
=cut
sub _type {
return 'CirculationRule';
}
=head3 object_class
=cut
sub object_class {
return 'Koha::CirculationRule';
}
=head3 should_refund
Koha::RefundLostItemFeeRules->should_refund()
Returns a boolean telling if the fee needs to be refund given the
passed params, and the current rules/sysprefs configuration.
=cut
sub should_refund {
my $self = shift;
my $params = shift;
return $self->_effective_branch_rule( $self->_choose_branch( $params ) );
}
=head3 _effective_branch_rule
Koha::RefundLostItemFeeRules->_effective_branch_rule
Given a branch, returns a boolean representing the resulting rule.
It tries the branch-specific first. Then falls back to the defined default.
=cut
sub _effective_branch_rule {
my $self = shift;
my $branch = shift;
my $specific_rule = $self->search(
{
branchcode => $branch,
categorycode => undef,
itemtype => undef,
rule_name => 'refund',
}
)->next();
return ( defined $specific_rule )
? $specific_rule->rule_value
: $self->_default_rule;
}
=head3 _choose_branch
my $branch = Koha::RefundLostItemFeeRules->_choose_branch({
current_branch => 'current_branch_code',
item_home_branch => 'item_home_branch',
item_holding_branch => 'item_holding_branch'
});
Helper function that determines the branch to be used to apply the rule.
=cut
sub _choose_branch {
my $self = shift;
my $param = shift;
my $behaviour = C4::Context->preference( 'RefundLostOnReturnControl' ) // 'CheckinLibrary';
my $param_mapping = {
CheckinLibrary => 'current_branch',
ItemHomeBranch => 'item_home_branch',
ItemHoldingBranch => 'item_holding_branch'
};
my $branch = $param->{ $param_mapping->{ $behaviour } };
if ( !defined $branch ) {
Koha::Exceptions::MissingParameter->throw(
"$behaviour requires the " .
$param_mapping->{ $behaviour } .
" param"
);
}
return $branch;
}
=head3 Koha::RefundLostItemFeeRules->find();
Inherit from Koha::Objects->find(), but forces rule_name => 'refund'
=cut
sub find {
my ( $self, @pars ) = @_;
if ( ref($pars[0]) eq 'HASH' ) {
$pars[0]->{rule_name} = 'refund';
}
return $self->SUPER::find(@pars);
}
=head3 _default_rule (internal)
This function returns the default rule defined for refunding lost
item fees on return. It defaults to 1 if no rule is defined.
=cut
sub _default_rule {
my $self = shift;
my $default_rule = $self->search(
{
branchcode => undef,
categorycode => undef,
itemtype => undef,
rule_name => 'refund',
}
)->next();
return (defined $default_rule)
? $default_rule->rule_value
: 1;
}
1;