|
Line 0
Link Here
|
|
|
1 |
#!/usr/bin/perl |
| 2 |
|
| 3 |
# Copyright 2020 Aleisha Amohia <aleisha@catalyst.net.nz> |
| 4 |
# |
| 5 |
# This file is part of Koha. |
| 6 |
# |
| 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. |
| 11 |
# |
| 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. |
| 16 |
# |
| 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>. |
| 19 |
|
| 20 |
BEGIN { |
| 21 |
# find Koha's Perl modules |
| 22 |
# test carefully before changing this |
| 23 |
use FindBin; |
| 24 |
eval { require "$FindBin::Bin/../kohalib.pl" }; |
| 25 |
} |
| 26 |
|
| 27 |
# set overdue recalls as overdue. This includes: |
| 28 |
# - recalls that have been requested and not fulfilled and have passed their expiration date |
| 29 |
# - recalls that have been awaiting pickup for longer than the specified recall_shelf_time circulation rule, or the RecallMaxPickUpDelay if circ rule is unset |
| 30 |
|
| 31 |
use Koha::Script -cron; |
| 32 |
use Koha::DateUtils; |
| 33 |
use Koha::Recalls; |
| 34 |
use C4::Log; |
| 35 |
|
| 36 |
cronlogaction(); |
| 37 |
|
| 38 |
my @recalls = Koha::Recalls->search({ old => undef }); |
| 39 |
foreach my $recall (@recalls) { |
| 40 |
if ( ( $recall->requested or $recall->overdue ) and $recall->expirationdate and dt_from_string( $recall->expirationdate ) < dt_from_string() ){ |
| 41 |
$recall->set_expired({ interface => 'COMMANDLINE' }); |
| 42 |
} |
| 43 |
if ( $recall->is_waiting ) { |
| 44 |
my $recall_shelf_time = Koha::CirculationRules->get_effective_rule({ |
| 45 |
categorycode => $recall->patron->categorycode, |
| 46 |
itemtype => $recall->item->effective_itemtype, |
| 47 |
branchcode => $recall->branchcode, |
| 48 |
rule_name => 'recall_shelf_time', |
| 49 |
}); |
| 50 |
my $waitingdate = dt_from_string( $recall->waitingdate ); |
| 51 |
my $now = dt_from_string(); |
| 52 |
my $days_waiting = $now->subtract_datetime( $waitingdate ); |
| 53 |
if ( defined $recall_shelf_time and $recall_shelf_time->rule_value > 0 ) { |
| 54 |
if ( $days_waiting->days > $recall_shelf_time->rule_value ) { |
| 55 |
$recall->set_expired({ interface => 'COMMANDLINE' }); |
| 56 |
} |
| 57 |
} else { |
| 58 |
if ( $days_waiting->days > C4::Context->preference('RecallMaxPickUpDelay') ) { |
| 59 |
$recall->set_expired({ interface => 'COMMANDLINE' }); |
| 60 |
} |
| 61 |
} |
| 62 |
} |
| 63 |
} |