Koha/misc/cronjobs/notice_unprocessed_suggestions.pl
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

147 lines
4.1 KiB
Perl
Executable file

#!/usr/bin/perl
use Modern::Perl;
use Pod::Usage;
use Getopt::Long;
use Koha::Script -cron;
use C4::Budgets qw( GetBudget );
use C4::Suggestions qw( GetUnprocessedSuggestions );
use Koha::Libraries;
use Koha::Patrons;
my ( $help, $verbose, $confirm, @days );
GetOptions(
'h|help' => \$help,
'v|verbose' => \$verbose,
'days:s' => \@days,
'c|confirm' => \$confirm,
) || pod2usage( verbose => 2 );
if ($help) {
pod2usage( verbose => 2 );
}
unless (@days) {
pod2usage(q{At least one day parameter should be given});
exit;
}
unless ($confirm) {
say "Doing a dry run; no email will be sent.";
say "Run again with --confirm to send emails.";
$verbose = 1 unless $verbose;
}
for my $number_of_days (@days) {
say "Searching suggestions suggested $number_of_days days ago" if $verbose;
my $suggestions = C4::Suggestions::GetUnprocessedSuggestions($number_of_days);
say "No suggestion found" if $verbose and not @$suggestions;
for my $suggestion (@$suggestions) {
say "Suggestion $suggestion->{suggestionid} should be processed" if $verbose;
my $budget = C4::Budgets::GetBudget( $suggestion->{budgetid} );
my $patron = Koha::Patrons->find( $budget->{budget_owner_id} );
my $email_address = $patron->notice_email_address;
my $library = $patron->library;
my $admin_email_address = $library->branchemail
|| C4::Context->preference('KohaAdminEmailAddress');
if ($email_address) {
say "Patron " . $patron->borrowernumber . " is going to be notified" if $verbose;
my $letter = C4::Letters::GetPreparedLetter(
module => 'suggestions',
letter_code => 'TO_PROCESS',
branchcode => $patron->branchcode,
lang => $patron->lang,
tables => {
suggestions => $suggestion->{suggestionid},
branches => $patron->branchcode,
borrowers => $patron->borrowernumber,
},
);
if ( $confirm ) {
C4::Letters::EnqueueLetter(
{
letter => $letter,
borrowernumber => $patron->borrowernumber,
message_transport_type => 'email',
from_address => $admin_email_address,
}
);
}
} else {
say "Patron " . $patron->borrowernumber . " does not have an email address" if $verbose;
}
}
}
=head1 NAME
notice_unprocessed_suggestions.pl - Generate notification for unprocessed suggestions.
The budget owner will be notified.
The letter template 'TO_PROCESS' will be used.
=head1 SYNOPSIS
notice_unprocessed_suggestions.pl [-h|--help] [-v|--verbose] [-c|--confirm] [--days=NUMBER_OF_DAYS]
=head1 OPTIONS
=over
=item B<-h|--help>
Print a brief help message
=item B<-c|--confirm>
This flag must be provided in order for the script to actually
generate notices. If it is not supplied, the script will
only report on the patron it would have noticed.
=item B<--days>
This parameter is mandatory.
It must contain an integer representing the number of days elapsed since the last modification of suggestions to process.
=item B<-v|--verbose>
Verbose mode.
=back
=head1 AUTHOR
Jonathan Druart <jonathan.druart@biblibre.com>
=head1 COPYRIGHT
Copyright 2014 BibLibre
=head1 LICENSE
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>.
=cut