Browse Source
This script takes parameters: days - how many days waiting to concal an unfilled hold on or after library - (repeatable) branches to consider holidays - whether or not to count holidays (default is no) This patchset adds two methods and covers them with tests: Koha::Holds->unfilled(); To return holds where found = undef Koha::Hold->age( $use_calendar ); To return the number of days since a hold was placed (including or excluding holidays) To test: 1 - Place some holds with varying reservedates 2 - Run script with different parameters to verify options are respected (-v for verbosity will assist here) 3 - verify that script does nothing without days parameter Sponsored by: Siskiyou County Library (http://www.siskiyoulibrary.info/) Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Bug 16187 - Followup 1 - Correct use of original (bad) script name 2 - Explain options better 3 - Remove change from 'W' to 'w' Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> RM note: Squashed for readability Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>17.11.x
5 changed files with 205 additions and 3 deletions
@ -0,0 +1,152 @@ |
|||
#!/usr/bin/perl |
|||
|
|||
# |
|||
# 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; |
|||
|
|||
BEGIN { |
|||
# find Koha's Perl modules |
|||
# test carefully before changing this |
|||
use FindBin; |
|||
eval { require "$FindBin::Bin/../kohalib.pl" }; |
|||
} |
|||
|
|||
use Getopt::Long; |
|||
use Pod::Usage; |
|||
|
|||
use C4::Reserves; |
|||
use C4::Log; |
|||
use Koha::Holds; |
|||
use Koha::Calendar; |
|||
use Koha::DateUtils; |
|||
use Koha::Libraries; |
|||
|
|||
cronlogaction(); |
|||
|
|||
=head1 NAME |
|||
|
|||
cancel_unfilled_holds.pl |
|||
|
|||
=head1 SYNOPSIS |
|||
|
|||
cancel_unfilled_holds.pl |
|||
[-days][-library][-holidays] |
|||
|
|||
Options: |
|||
-help brief help |
|||
-days cancel holds placed this many days ago which have not been filled |
|||
-library [repeatable] limit to specified branch(es) |
|||
-holidays skip holidays when calculating days waiting |
|||
-v verbose |
|||
|
|||
head1 OPTIONS |
|||
|
|||
=over 8 |
|||
|
|||
=item B<-help> |
|||
|
|||
Print brief help and exit. |
|||
|
|||
=item B<-man> |
|||
|
|||
Print full documentation and exit. |
|||
|
|||
=item B<-days> |
|||
|
|||
Specify the number of days waiting since a hold that remains unfilled was placed. |
|||
E.g. a value of 730 would cancel holds placed 2 years ago or more that have never been filled |
|||
|
|||
=item B<-library> |
|||
|
|||
Repeatable option to specify which branchcode(s) to cancel holds for. |
|||
|
|||
=item B<-holidays> |
|||
|
|||
This switch specifies whether to count holidays as days waiting. Default is no. |
|||
|
|||
=back |
|||
|
|||
=cut |
|||
|
|||
my $help = 0; |
|||
my $days; |
|||
my @branchcodes; |
|||
my $use_calendar = 0; |
|||
my $verbose = 0; |
|||
my $confirm = 0; |
|||
|
|||
GetOptions( |
|||
'help|?' => \$help, |
|||
'days=s' => \$days, |
|||
'library=s' => \@branchcodes, |
|||
'holidays' => \$use_calendar, |
|||
'v' => \$verbose, |
|||
'confirm' => \$confirm, |
|||
) or pod2usage(1); |
|||
pod2usage(1) if $help; |
|||
|
|||
unless ( defined $days ) { |
|||
pod2usage( |
|||
{ |
|||
-exitval => 1, |
|||
-msg => |
|||
qq{\nError: You must specify a value for days waiting to cancel holds.\n}, |
|||
} |
|||
); |
|||
} |
|||
warn "Running in test mode, no actions will be taken" unless ($confirm); |
|||
|
|||
$verbose and warn "Looking for unfilled holds placed $days or more days ago\n"; |
|||
|
|||
unless ( scalar @branchcodes > 0 ) { |
|||
my $branches = Koha::Libraries->search->get_column('branchcode'); |
|||
while ( my $branch = $branches->next ) { |
|||
push @branchcodes, $branch->branchcode; |
|||
} |
|||
} |
|||
$verbose and warn "Running for branch(es): " . join( "|", @branchcodes ) . "\n"; |
|||
|
|||
foreach my $branch (@branchcodes) { |
|||
|
|||
my $holds = |
|||
Koha::Holds->search( { branchcode => $branch } )->unfilled(); |
|||
|
|||
while ( my $hold = $holds->next ) { |
|||
|
|||
my $age = $hold->age( $use_calendar ); |
|||
|
|||
$verbose |
|||
and warn "Hold #" |
|||
. $hold->reserve_id |
|||
. " has been unfilled for $age day(s)\n"; |
|||
|
|||
if ( $age >= $days ) { |
|||
my $action = $confirm ? "Cancelling " : "Would have cancelled "; |
|||
$verbose |
|||
and warn $action |
|||
. "reserve_id: " |
|||
. $hold->reserve_id |
|||
. " for borrower: " |
|||
. $hold->borrowernumber |
|||
. " on biblio: " |
|||
. $hold->biblionumber . "\n"; |
|||
CancelReserve( { reserve_id => $hold->reserve_id } ) if $confirm; |
|||
} |
|||
|
|||
} |
|||
|
|||
} |
Loading…
Reference in new issue