8 use C4
::Budgets
qw( GetBudget );
9 use C4
::Suggestions
qw( GetUnprocessedSuggestions );
13 my ( $help, $verbose, $confirm, @days );
16 'v|verbose' => \
$verbose,
18 'c|confirm' => \
$confirm,
19 ) || pod2usage
( verbose
=> 2 );
22 pod2usage
( verbose
=> 2 );
26 pod2usage
(q{At least one day parameter should be given});
31 say "Doing a dry run; no email will be sent.";
32 say "Run again with --confirm to send emails.";
33 $verbose = 1 unless $verbose;
36 for my $number_of_days (@days) {
37 say "Searching suggestions suggested $number_of_days days ago" if $verbose;
39 my $suggestions = C4
::Suggestions
::GetUnprocessedSuggestions
($number_of_days);
41 say "No suggestion found" if $verbose and not @
$suggestions;
43 for my $suggestion (@
$suggestions) {
45 say "Suggestion $suggestion->{suggestionid} should be processed" if $verbose;
47 my $budget = C4
::Budgets
::GetBudget
( $suggestion->{budgetid
} );
48 my $patron = Koha
::Patrons
->find( $budget->{budget_owner_id
} );
49 my $email_address = $patron->notice_email_address;
50 my $library = $patron->library;
51 my $admin_email_address = $library->branchemail
52 || C4
::Context
->preference('KohaAdminEmailAddress');
55 say "Patron " . $patron->borrowernumber . " is going to be notified" if $verbose;
56 my $letter = C4
::Letters
::GetPreparedLetter
(
57 module
=> 'suggestions',
58 letter_code
=> 'TO_PROCESS',
59 branchcode
=> $patron->branchcode,
60 lang
=> $patron->lang,
62 suggestions
=> $suggestion->{suggestionid
},
63 branches
=> $patron->branchcode,
64 borrowers
=> $patron->borrowernumber,
68 C4
::Letters
::EnqueueLetter
(
71 borrowernumber
=> $patron->borrowernumber,
72 message_transport_type
=> 'email',
73 from_address
=> $admin_email_address,
78 say "Patron " . $patron->borrowernumber . " does not have an email address" if $verbose;
86 notice_unprocessed_suggestions.pl - Generate notification for unprocessed suggestions.
88 The budget owner will be notified.
90 The letter template 'TO_PROCESS' will be used.
94 notice_unprocessed_suggestions.pl [-h|--help] [-v|--verbose] [-c|--confirm] [--days=NUMBER_OF_DAYS]
102 Print a brief help message
104 =item B<-c|--confirm>
106 This flag must be provided in order for the script to actually
107 generate notices. If it is not supplied, the script will
108 only report on the patron it would have noticed.
112 This parameter is mandatory.
113 It must contain an integer representing the number of days elapsed since the last modification of suggestions to process.
115 =item B<-v|--verbose>
123 Jonathan Druart <jonathan.druart@biblibre.com>
127 Copyright 2014 BibLibre
131 This file is part of Koha.
133 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
134 Foundation; either version 3 of the License, or (at your option) any later version.
136 You should have received a copy of the GNU General Public License along
137 with Koha; if not, write to the Free Software Foundation, Inc.,
138 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.