Bug 20600: Add filtering of ILL requests in list
[koha.git] / misc / cronjobs / overdue_notices.pl
blob8c42335c2ccdadfac3f0d8bafc43fe1a8b1ec907
1 #!/usr/bin/perl
3 # Copyright 2008 Liblime
4 # Copyright 2010 BibLibre
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21 use Modern::Perl;
23 BEGIN {
25 # find Koha's Perl modules
26 # test carefully before changing this
27 use FindBin;
28 eval { require "$FindBin::Bin/../kohalib.pl" };
31 use Getopt::Long;
32 use Pod::Usage;
33 use Text::CSV_XS;
34 use DateTime;
35 use DateTime::Duration;
37 use C4::Context;
38 use C4::Letters;
39 use C4::Overdues qw(GetFine GetOverdueMessageTransportTypes parse_overdues_letter);
40 use C4::Log;
41 use Koha::Patron::Debarments qw(AddUniqueDebarment);
42 use Koha::DateUtils;
43 use Koha::Calendar;
44 use Koha::Libraries;
45 use Koha::Acquisition::Currencies;
46 use Koha::Patrons;
48 =head1 NAME
50 overdue_notices.pl - prepare messages to be sent to patrons for overdue items
52 =head1 SYNOPSIS
54 overdue_notices.pl
55 [ -n ][ -library <branchcode> ][ -library <branchcode> ... ]
56 [ -max <number of days> ][ -csv [<filename>] ][ -itemscontent <field list> ]
57 [ -email <email_type> ... ]
59 Options:
60 -help brief help message
61 -man full documentation
62 -v verbose
63 -n No email will be sent
64 -max <days> maximum days overdue to deal with
65 -library <branchname> only deal with overdues from this library (repeatable : several libraries can be given)
66 -csv <filename> populate CSV file
67 -html <directory> Output html to a file in the given directory
68 -text <directory> Output plain text to a file in the given directory
69 -itemscontent <list of fields> item information in templates
70 -borcat <categorycode> category code that must be included
71 -borcatout <categorycode> category code that must be excluded
72 -t only include triggered overdues
73 --test Run in test mode. No changes will be made on the DB.
74 -list-all list all overdues
75 -date <yyyy-mm-dd> emulate overdues run for this date
76 -email <email_type> type of email that will be used. Can be 'email', 'emailpro' or 'B_email'. Repeatable.
78 =head1 OPTIONS
80 =over 8
82 =item B<-help>
84 Print a brief help message and exits.
86 =item B<-man>
88 Prints the manual page and exits.
90 =item B<-v>
92 Verbose. Without this flag set, only fatal errors are reported.
94 =item B<-n>
96 Do not send any email. Overdue notices that would have been sent to
97 the patrons or to the admin are printed to standard out. CSV data (if
98 the -csv flag is set) is written to standard out or to any csv
99 filename given.
101 =item B<-max>
103 Items older than max days are assumed to be handled somewhere else,
104 probably the F<longoverdues.pl> script. They are therefore ignored by
105 this program. No notices are sent for them, and they are not added to
106 any CSV files. Defaults to 90 to match F<longoverdues.pl>.
108 =item B<-library>
110 select overdues for one specific library. Use the value in the
111 branches.branchcode table. This option can be repeated in order
112 to select overdues for a group of libraries.
114 =item B<-csv>
116 Produces CSV data. if -n (no mail) flag is set, then this CSV data is
117 sent to standard out or to a filename if provided. Otherwise, only
118 overdues that could not be emailed are sent in CSV format to the admin.
120 =item B<-html>
122 Produces html data. If patron does not have an email address or
123 -n (no mail) flag is set, an HTML file is generated in the specified
124 directory. This can be downloaded or further processed by library staff.
125 The file will be called notices-YYYY-MM-DD.html and placed in the directory
126 specified.
128 =item B<-text>
130 Produces plain text data. If patron does not have an email address or
131 -n (no mail) flag is set, a text file is generated in the specified
132 directory. This can be downloaded or further processed by library staff.
133 The file will be called notices-YYYY-MM-DD.txt and placed in the directory
134 specified.
136 =item B<-itemscontent>
138 comma separated list of fields that get substituted into templates in
139 places of the E<lt>E<lt>items.contentE<gt>E<gt> placeholder. This
140 defaults to due date,title,barcode,author
142 Other possible values come from fields in the biblios, items and
143 issues tables.
145 =item B<-borcat>
147 Repeatable field, that permits to select only some patron categories.
149 =item B<-borcatout>
151 Repeatable field, that permits to exclude some patron categories.
153 =item B<-t> | B<--triggered>
155 This option causes a notice to be generated if and only if
156 an item is overdue by the number of days defined in a notice trigger.
158 By default, a notice is sent each time the script runs, which is suitable for
159 less frequent run cron script, but requires syncing notice triggers with
160 the cron schedule to ensure proper behavior.
161 Add the --triggered option for daily cron, at the risk of no notice
162 being generated if the cron fails to run on time.
164 =item B<-test>
166 This option makes the script run in test mode.
168 In test mode, the script won't make any changes on the DB. This is useful
169 for debugging configuration.
171 =item B<-list-all>
173 Default items.content lists only those items that fall in the
174 range of the currently processing notice.
175 Choose list-all to include all overdue items in the list (limited by B<-max> setting).
177 =item B<-date>
179 use it in order to send overdues on a specific date and not Now. Format: YYYY-MM-DD.
181 =item B<-email>
183 Allows to specify which type of email will be used. Can be email, emailpro or B_email. Repeatable.
185 =back
187 =head1 DESCRIPTION
189 This script is designed to alert patrons and administrators of overdue
190 items.
192 =head2 Configuration
194 This script pays attention to the overdue notice configuration
195 performed in the "Overdue notice/status triggers" section of the
196 "Tools" area of the staff interface to Koha. There, you can choose
197 which letter templates are sent out after a configurable number of
198 days to patrons of each library. More information about the use of this
199 section of Koha is available in the Koha manual.
201 The templates used to craft the emails are defined in the "Tools:
202 Notices" section of the staff interface to Koha.
204 =head2 Outgoing emails
206 Typically, messages are prepared for each patron with overdue
207 items. Messages for whom there is no email address on file are
208 collected and sent as attachments in a single email to each library
209 administrator, or if that is not set, then to the email address in the
210 C<KohaAdminEmailAddress> system preference.
212 These emails are staged in the outgoing message queue, as are messages
213 produced by other features of Koha. This message queue must be
214 processed regularly by the
215 F<misc/cronjobs/process_message_queue.pl> program.
217 In the event that the C<-n> flag is passed to this program, no emails
218 are sent. Instead, messages are sent on standard output from this
219 program. They may be redirected to a file if desired.
221 =head2 Templates
223 Templates can contain variables enclosed in double angle brackets like
224 E<lt>E<lt>thisE<gt>E<gt>. Those variables will be replaced with values
225 specific to the overdue items or relevant patron. Available variables
226 are:
228 =over
230 =item E<lt>E<lt>bibE<gt>E<gt>
232 the name of the library
234 =item E<lt>E<lt>items.contentE<gt>E<gt>
236 one line for each item, each line containing a tab separated list of
237 title, author, barcode, issuedate
239 =item E<lt>E<lt>borrowers.*E<gt>E<gt>
241 any field from the borrowers table
243 =item E<lt>E<lt>branches.*E<gt>E<gt>
245 any field from the branches table
247 =back
249 =head2 CSV output
251 The C<-csv> command line option lets you specify a file to which
252 overdues data should be output in CSV format.
254 With the C<-n> flag set, data about all overdues is written to the
255 file. Without that flag, only information about overdues that were
256 unable to be sent directly to the patrons will be written. In other
257 words, this CSV file replaces the data that is typically sent to the
258 administrator email address.
260 =head1 USAGE EXAMPLES
262 C<overdue_notices.pl> - In this most basic usage, with no command line
263 arguments, all libraries are processed individually, and notices are
264 prepared for all patrons with overdue items for whom we have email
265 addresses. Messages for those patrons for whom we have no email
266 address are sent in a single attachment to the library administrator's
267 email address, or to the address in the KohaAdminEmailAddress system
268 preference.
270 C<overdue_notices.pl -n -csv /tmp/overdues.csv> - sends no email and
271 populates F</tmp/overdues.csv> with information about all overdue
272 items.
274 C<overdue_notices.pl -library MAIN max 14> - prepare notices of
275 overdues in the last 2 weeks for the MAIN library.
277 =head1 SEE ALSO
279 The F<misc/cronjobs/advance_notices.pl> program allows you to send
280 messages to patrons in advance of their items becoming due, or to
281 alert them of items that have just become due.
283 =cut
285 # These variables are set by command line options.
286 # They are initially set to default values.
287 my $dbh = C4::Context->dbh();
288 my $help = 0;
289 my $man = 0;
290 my $verbose = 0;
291 my $nomail = 0;
292 my $MAX = 90;
293 my $test_mode = 0;
294 my @branchcodes; # Branch(es) passed as parameter
295 my @emails_to_use; # Emails to use for messaging
296 my @emails; # Emails given in command-line parameters
297 my $csvfilename;
298 my $htmlfilename;
299 my $text_filename;
300 my $triggered = 0;
301 my $listall = 0;
302 my $itemscontent = join( ',', qw( date_due title barcode author itemnumber ) );
303 my @myborcat;
304 my @myborcatout;
305 my ( $date_input, $today );
307 GetOptions(
308 'help|?' => \$help,
309 'man' => \$man,
310 'v' => \$verbose,
311 'n' => \$nomail,
312 'max=s' => \$MAX,
313 'library=s' => \@branchcodes,
314 'csv:s' => \$csvfilename, # this optional argument gets '' if not supplied.
315 'html:s' => \$htmlfilename, # this optional argument gets '' if not supplied.
316 'text:s' => \$text_filename, # this optional argument gets '' if not supplied.
317 'itemscontent=s' => \$itemscontent,
318 'list-all' => \$listall,
319 't|triggered' => \$triggered,
320 'test' => \$test_mode,
321 'date=s' => \$date_input,
322 'borcat=s' => \@myborcat,
323 'borcatout=s' => \@myborcatout,
324 'email=s' => \@emails,
325 ) or pod2usage(2);
326 pod2usage(1) if $help;
327 pod2usage( -verbose => 2 ) if $man;
329 cronlogaction() unless $test_mode;
331 if ( defined $csvfilename && $csvfilename =~ /^-/ ) {
332 warn qq(using "$csvfilename" as filename, that seems odd);
335 my @overduebranches = C4::Overdues::GetBranchcodesWithOverdueRules(); # Branches with overdue rules
336 my @branches; # Branches passed as parameter with overdue rules
337 my $branchcount = scalar(@overduebranches);
339 my $overduebranch_word = scalar @overduebranches > 1 ? 'branches' : 'branch';
340 my $branchcodes_word = scalar @branchcodes > 1 ? 'branches' : 'branch';
342 my $PrintNoticesMaxLines = C4::Context->preference('PrintNoticesMaxLines');
344 if ($branchcount) {
345 $verbose and warn "Found $branchcount $overduebranch_word with first message enabled: " . join( ', ', map { "'$_'" } @overduebranches ), "\n";
346 } else {
347 die 'No branches with active overduerules';
350 if (@branchcodes) {
351 $verbose and warn "$branchcodes_word @branchcodes passed on parameter\n";
353 # Getting libraries which have overdue rules
354 my %seen = map { $_ => 1 } @branchcodes;
355 @branches = grep { $seen{$_} } @overduebranches;
358 if (@branches) {
360 my $branch_word = scalar @branches > 1 ? 'branches' : 'branch';
361 $verbose and warn "$branch_word @branches have overdue rules\n";
363 } else {
365 $verbose and warn "No active overduerules for $branchcodes_word '@branchcodes'\n";
366 ( scalar grep { '' eq $_ } @branches )
367 or die "No active overduerules for DEFAULT either!";
368 $verbose and warn "Falling back on default rules for @branchcodes\n";
369 @branches = ('');
372 my $date_to_run;
373 my $date;
374 if ( $date_input ){
375 eval {
376 $date_to_run = dt_from_string( $date_input, 'iso' );
378 die "$date_input is not a valid date, aborting! Use a date in format YYYY-MM-DD."
379 if $@ or not $date_to_run;
381 # It's certainly useless to escape $date_input
382 # dt_from_string should not return something if $date_input is not correctly set.
383 $date = $dbh->quote( $date_input );
385 else {
386 $date="NOW()";
387 $date_to_run = dt_from_string();
390 # these are the fields that will be substituted into <<item.content>>
391 my @item_content_fields = split( /,/, $itemscontent );
393 binmode( STDOUT, ':encoding(UTF-8)' );
396 our $csv; # the Text::CSV_XS object
397 our $csv_fh; # the filehandle to the CSV file.
398 if ( defined $csvfilename ) {
399 my $sep_char = C4::Context->preference('delimiter') || ';';
400 $sep_char = "\t" if ($sep_char eq 'tabulation');
401 $csv = Text::CSV_XS->new( { binary => 1 , sep_char => $sep_char } );
402 if ( $csvfilename eq '' ) {
403 $csv_fh = *STDOUT;
404 } else {
405 open $csv_fh, ">", $csvfilename or die "unable to open $csvfilename: $!";
407 if ( $csv->combine(qw(name surname address1 address2 zipcode city country email phone cardnumber itemcount itemsinfo branchname letternumber)) ) {
408 print $csv_fh $csv->string, "\n";
409 } else {
410 $verbose and warn 'combine failed on argument: ' . $csv->error_input;
414 @branches = @overduebranches unless @branches;
415 our $fh;
416 if ( defined $htmlfilename ) {
417 if ( $htmlfilename eq '' ) {
418 $fh = *STDOUT;
419 } else {
420 my $today = DateTime->now(time_zone => C4::Context->tz );
421 open $fh, ">:encoding(UTF-8)",File::Spec->catdir ($htmlfilename,"notices-".$today->ymd().".html");
424 print $fh "<html>\n";
425 print $fh "<head>\n";
426 print $fh "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n";
427 print $fh "<style type='text/css'>\n";
428 print $fh "pre {page-break-after: always;}\n";
429 print $fh "pre {white-space: pre-wrap;}\n";
430 print $fh "pre {white-space: -moz-pre-wrap;}\n";
431 print $fh "pre {white-space: -o-pre-wrap;}\n";
432 print $fh "pre {word-wrap: break-work;}\n";
433 print $fh "</style>\n";
434 print $fh "</head>\n";
435 print $fh "<body>\n";
437 elsif ( defined $text_filename ) {
438 if ( $text_filename eq '' ) {
439 $fh = *STDOUT;
440 } else {
441 my $today = DateTime->now(time_zone => C4::Context->tz );
442 open $fh, ">",File::Spec->catdir ($text_filename,"notices-".$today->ymd().".txt");
446 foreach my $branchcode (@branches) {
447 my $calendar;
448 if ( C4::Context->preference('OverdueNoticeCalendar') ) {
449 $calendar = Koha::Calendar->new( branchcode => $branchcode );
450 if ( $calendar->is_holiday($date_to_run) ) {
451 next;
455 my $library = Koha::Libraries->find($branchcode);
456 my $admin_email_address = $library->branchemail
457 || C4::Context->preference('KohaAdminEmailAddress');
458 my @output_chunks; # may be sent to mail or stdout or csv file.
460 $verbose and warn sprintf "branchcode : '%s' using %s\n", $branchcode, $admin_email_address;
462 my $sth2 = $dbh->prepare( <<"END_SQL" );
463 SELECT biblio.*, items.*, issues.*, biblioitems.itemtype, branchname
464 FROM issues,items,biblio, biblioitems, branches b
465 WHERE items.itemnumber=issues.itemnumber
466 AND biblio.biblionumber = items.biblionumber
467 AND b.branchcode = items.homebranch
468 AND biblio.biblionumber = biblioitems.biblionumber
469 AND issues.borrowernumber = ?
470 AND issues.branchcode = ?
471 AND items.itemlost = 0
472 AND TO_DAYS($date)-TO_DAYS(issues.date_due) >= 0
473 END_SQL
475 my $query = "SELECT * FROM overduerules WHERE delay1 IS NOT NULL AND branchcode = ? ";
476 $query .= " AND categorycode IN (".join( ',' , ('?') x @myborcat ).") " if (@myborcat);
477 $query .= " AND categorycode NOT IN (".join( ',' , ('?') x @myborcatout ).") " if (@myborcatout);
479 my $rqoverduerules = $dbh->prepare($query);
480 $rqoverduerules->execute($branchcode, @myborcat, @myborcatout);
482 # We get default rules is there is no rule for this branch
483 if($rqoverduerules->rows == 0){
484 $query = "SELECT * FROM overduerules WHERE delay1 IS NOT NULL AND branchcode = '' ";
485 $query .= " AND categorycode IN (".join( ',' , ('?') x @myborcat ).") " if (@myborcat);
486 $query .= " AND categorycode NOT IN (".join( ',' , ('?') x @myborcatout ).") " if (@myborcatout);
488 $rqoverduerules = $dbh->prepare($query);
489 $rqoverduerules->execute(@myborcat, @myborcatout);
492 # my $outfile = 'overdues_' . ( $mybranch || $branchcode || 'default' );
493 while ( my $overdue_rules = $rqoverduerules->fetchrow_hashref ) {
494 PERIOD: foreach my $i ( 1 .. 3 ) {
496 $verbose and warn "branch '$branchcode', categorycode = $overdue_rules->{categorycode} pass $i\n";
498 my $mindays = $overdue_rules->{"delay$i"}; # the notice will be sent after mindays days (grace period)
499 my $maxdays = (
500 $overdue_rules->{ "delay" . ( $i + 1 ) }
501 ? $overdue_rules->{ "delay" . ( $i + 1 ) } - 1
502 : ($MAX)
503 ); # issues being more than maxdays late are managed somewhere else. (borrower probably suspended)
505 next unless defined $mindays;
507 if ( !$overdue_rules->{"letter$i"} ) {
508 $verbose and warn "No letter$i code for branch '$branchcode'";
509 next PERIOD;
512 # $letter->{'content'} is the text of the mail that is sent.
513 # this text contains fields that are replaced by their value. Those fields must be written between brackets
514 # The following fields are available :
515 # itemcount is interpreted here as the number of items in the overdue range defined by the current notice or all overdues < max if(-list-all).
516 # <date> <itemcount> <firstname> <lastname> <address1> <address2> <address3> <city> <postcode> <country>
518 my $borrower_sql = <<"END_SQL";
519 SELECT issues.borrowernumber, firstname, surname, address, address2, city, zipcode, country, email, emailpro, B_email, smsalertnumber, phone, cardnumber, date_due
520 FROM issues,borrowers,categories,items
521 WHERE issues.borrowernumber=borrowers.borrowernumber
522 AND borrowers.categorycode=categories.categorycode
523 AND issues.itemnumber = items.itemnumber
524 AND items.itemlost = 0
525 AND TO_DAYS($date)-TO_DAYS(issues.date_due) >= 0
526 END_SQL
527 my @borrower_parameters;
528 if ($branchcode) {
529 $borrower_sql .= ' AND issues.branchcode=? ';
530 push @borrower_parameters, $branchcode;
532 if ( $overdue_rules->{categorycode} ) {
533 $borrower_sql .= ' AND borrowers.categorycode=? ';
534 push @borrower_parameters, $overdue_rules->{categorycode};
536 $borrower_sql .= ' AND categories.overduenoticerequired=1 ORDER BY issues.borrowernumber';
538 # $sth gets borrower info iff at least one overdue item has triggered the overdue action.
539 my $sth = $dbh->prepare($borrower_sql);
540 $sth->execute(@borrower_parameters);
542 $verbose and warn $borrower_sql . "\n $branchcode | " . $overdue_rules->{'categorycode'} . "\n ($mindays, $maxdays, ". $date_to_run->datetime() .")\nreturns " . $sth->rows . " rows";
543 my $borrowernumber;
544 while ( my $data = $sth->fetchrow_hashref ) {
546 # check the borrower has at least one item that matches
547 my $days_between;
548 if ( C4::Context->preference('OverdueNoticeCalendar') )
550 $days_between =
551 $calendar->days_between( dt_from_string($data->{date_due}),
552 $date_to_run );
554 else {
555 $days_between =
556 $date_to_run->delta_days( dt_from_string($data->{date_due}) );
558 $days_between = $days_between->in_units('days');
559 if ($triggered) {
560 if ( $mindays != $days_between ) {
561 next;
564 else {
565 unless ( $days_between >= $mindays
566 && $days_between <= $maxdays )
568 next;
571 if (defined $borrowernumber && $borrowernumber eq $data->{'borrowernumber'}){
572 # we have already dealt with this borrower
573 $verbose and warn "already dealt with this borrower $borrowernumber";
574 next;
576 $borrowernumber = $data->{'borrowernumber'};
577 my $borr =
578 $data->{'firstname'} . ', '
579 . $data->{'surname'} . ' ('
580 . $borrowernumber . ')';
581 $verbose
582 and warn "borrower $borr has items triggering level $i.";
584 my $patron = Koha::Patrons->find( $borrowernumber );
585 @emails_to_use = ();
586 my $notice_email = $patron->notice_email_address;
587 unless ($nomail) {
588 if (@emails) {
589 foreach (@emails) {
590 push @emails_to_use, $data->{$_} if ( $data->{$_} );
593 else {
594 push @emails_to_use, $notice_email if ($notice_email);
598 my $letter = C4::Letters::getletter( 'circulation', $overdue_rules->{"letter$i"}, $branchcode );
600 unless ($letter) {
601 $verbose and warn qq|Message '$overdue_rules->{"letter$i"}' content not found|;
603 # might as well skip while PERIOD, no other borrowers are going to work.
604 # FIXME : Does this mean a letter must be defined in order to trigger a debar ?
605 next PERIOD;
608 if ( $overdue_rules->{"debarred$i"} ) {
610 #action taken is debarring
611 AddUniqueDebarment(
613 borrowernumber => $borrowernumber,
614 type => 'OVERDUES',
615 comment => "OVERDUES_PROCESS " . output_pref( dt_from_string() ),
617 ) unless $test_mode;
618 $verbose and warn "debarring $borr\n";
620 my @params = ($borrowernumber,$branchcode);
621 $verbose and warn "STH2 PARAMS: borrowernumber = $borrowernumber";
623 $sth2->execute(@params);
624 my $itemcount = 0;
625 my $titles = "";
626 my @items = ();
628 my $j = 0;
629 my $exceededPrintNoticesMaxLines = 0;
630 while ( my $item_info = $sth2->fetchrow_hashref() ) {
631 if ( C4::Context->preference('OverdueNoticeCalendar') ) {
632 $days_between =
633 $calendar->days_between(
634 dt_from_string( $item_info->{date_due} ), $date_to_run );
636 else {
637 $days_between =
638 $date_to_run->delta_days(
639 dt_from_string( $item_info->{date_due} ) );
641 $days_between = $days_between->in_units('days');
642 if ($listall){
643 unless ($days_between >= 1 and $days_between <= $MAX){
644 next;
647 else {
648 if ($triggered) {
649 if ( $mindays != $days_between ) {
650 next;
653 else {
654 unless ( $days_between >= $mindays
655 && $days_between <= $maxdays )
657 next;
662 if ( ( scalar(@emails_to_use) == 0 || $nomail ) && $PrintNoticesMaxLines && $j >= $PrintNoticesMaxLines ) {
663 $exceededPrintNoticesMaxLines = 1;
664 last;
666 $j++;
668 $titles .= C4::Letters::get_item_content( { item => $item_info, item_content_fields => \@item_content_fields, dateonly => 1 } );
669 $itemcount++;
670 push @items, $item_info;
672 $sth2->finish;
674 my @message_transport_types = @{ GetOverdueMessageTransportTypes( $branchcode, $overdue_rules->{categorycode}, $i) };
675 @message_transport_types = @{ GetOverdueMessageTransportTypes( q{}, $overdue_rules->{categorycode}, $i) }
676 unless @message_transport_types;
679 my $print_sent = 0; # A print notice is not yet sent for this patron
680 for my $mtt ( @message_transport_types ) {
681 my $effective_mtt = $mtt;
682 if ( ($mtt eq 'email' and not scalar @emails_to_use) or ($mtt eq 'sms' and not $data->{smsalertnumber}) ) {
683 # email or sms is requested but not exist, do a print.
684 $effective_mtt = 'print';
687 my $letter_exists = C4::Letters::getletter( 'circulation', $overdue_rules->{"letter$i"}, $branchcode, $effective_mtt ) ? 1 : 0;
688 my $letter = parse_overdues_letter(
689 { letter_code => $overdue_rules->{"letter$i"},
690 borrowernumber => $borrowernumber,
691 branchcode => $branchcode,
692 items => \@items,
693 substitute => { # this appears to be a hack to overcome incomplete features in this code.
694 bib => $library->branchname, # maybe 'bib' is a typo for 'lib<rary>'?
695 'items.content' => $titles,
696 'count' => $itemcount,
698 # If there is no template defined for the requested letter
699 # Fallback on email
700 message_transport_type => $letter_exists ? $effective_mtt : 'email',
703 unless ($letter) {
704 $verbose and warn qq|Message '$overdue_rules->{"letter$i"}' content not found|;
705 # this transport doesn't have a configured notice, so try another
706 next;
709 if ( $exceededPrintNoticesMaxLines ) {
710 $letter->{'content'} .= "List too long for form; please check your account online for a complete list of your overdue items.";
713 my @misses = grep { /./ } map { /^([^>]*)[>]+/; ( $1 || '' ); } split /\</, $letter->{'content'};
714 if (@misses) {
715 $verbose and warn "The following terms were not matched and replaced: \n\t" . join "\n\t", @misses;
718 if ($nomail) {
719 push @output_chunks,
720 prepare_letter_for_printing(
721 { letter => $letter,
722 borrowernumber => $borrowernumber,
723 firstname => $data->{'firstname'},
724 lastname => $data->{'surname'},
725 address1 => $data->{'address'},
726 address2 => $data->{'address2'},
727 city => $data->{'city'},
728 phone => $data->{'phone'},
729 cardnumber => $data->{'cardnumber'},
730 branchname => $library->branchname,
731 letternumber => $i,
732 postcode => $data->{'zipcode'},
733 country => $data->{'country'},
734 email => $notice_email,
735 itemcount => $itemcount,
736 titles => $titles,
737 outputformat => defined $csvfilename ? 'csv' : defined $htmlfilename ? 'html' : defined $text_filename ? 'text' : '',
740 } else {
741 if ( ($mtt eq 'email' and not scalar @emails_to_use) or ($mtt eq 'sms' and not $data->{smsalertnumber}) ) {
742 push @output_chunks,
743 prepare_letter_for_printing(
744 { letter => $letter,
745 borrowernumber => $borrowernumber,
746 firstname => $data->{'firstname'},
747 lastname => $data->{'surname'},
748 address1 => $data->{'address'},
749 address2 => $data->{'address2'},
750 city => $data->{'city'},
751 postcode => $data->{'zipcode'},
752 country => $data->{'country'},
753 email => $notice_email,
754 itemcount => $itemcount,
755 titles => $titles,
756 outputformat => defined $csvfilename ? 'csv' : defined $htmlfilename ? 'html' : defined $text_filename ? 'text' : '',
760 unless ( $effective_mtt eq 'print' and $print_sent == 1 ) {
761 # Just sent a print if not already done.
762 C4::Letters::EnqueueLetter(
763 { letter => $letter,
764 borrowernumber => $borrowernumber,
765 message_transport_type => $effective_mtt,
766 from_address => $admin_email_address,
767 to_address => join(',', @emails_to_use),
769 ) unless $test_mode;
770 # A print notice should be sent only once per overdue level.
771 # Without this check, a print could be sent twice or more if the library checks sms and email and print and the patron has no email or sms number.
772 $print_sent = 1 if $effective_mtt eq 'print';
777 $sth->finish;
781 if (@output_chunks) {
782 if ( defined $csvfilename ) {
783 print $csv_fh @output_chunks;
785 elsif ( defined $htmlfilename ) {
786 print $fh @output_chunks;
788 elsif ( defined $text_filename ) {
789 print $fh @output_chunks;
791 elsif ($nomail){
792 local $, = "\f"; # pagebreak
793 print @output_chunks;
795 # Generate the content of the csv with headers
796 my $content;
797 if ( defined $csvfilename ) {
798 my $delimiter = C4::Context->preference('delimiter') || ';';
799 $content = join($delimiter, qw(title name surname address1 address2 zipcode city country email itemcount itemsinfo due_date issue_date)) . "\n";
801 else {
802 $content = "";
804 $content .= join( "\n", @output_chunks );
806 my $attachment = {
807 filename => defined $csvfilename ? 'attachment.csv' : 'attachment.txt',
808 type => 'text/plain',
809 content => $content,
812 my $letter = {
813 title => 'Overdue Notices',
814 content => 'These messages were not sent directly to the patrons.',
816 C4::Letters::EnqueueLetter(
817 { letter => $letter,
818 borrowernumber => undef,
819 message_transport_type => 'email',
820 attachments => [$attachment],
821 to_address => $admin_email_address,
823 ) unless $test_mode;
827 if ($csvfilename) {
828 # note that we're not testing on $csv_fh to prevent closing
829 # STDOUT.
830 close $csv_fh;
833 if ( defined $htmlfilename ) {
834 print $fh "</body>\n";
835 print $fh "</html>\n";
836 close $fh;
837 } elsif ( defined $text_filename ) {
838 close $fh;
841 =head1 INTERNAL METHODS
843 These methods are internal to the operation of overdue_notices.pl.
845 =head2 prepare_letter_for_printing
847 returns a string of text appropriate for printing in the event that an
848 overdue notice will not be sent to the patron's email
849 address. Depending on the desired output format, this may be a CSV
850 string, or a human-readable representation of the notice.
852 required parameters:
853 letter
854 borrowernumber
856 optional parameters:
857 outputformat
859 =cut
861 sub prepare_letter_for_printing {
862 my $params = shift;
864 return unless ref $params eq 'HASH';
866 foreach my $required_parameter (qw( letter borrowernumber )) {
867 return unless defined $params->{$required_parameter};
870 my $return;
871 chomp $params->{titles};
872 if ( exists $params->{'outputformat'} && $params->{'outputformat'} eq 'csv' ) {
873 if ($csv->combine(
874 $params->{'firstname'}, $params->{'lastname'}, $params->{'address1'}, $params->{'address2'}, $params->{'postcode'},
875 $params->{'city'}, $params->{'country'}, $params->{'email'}, $params->{'phone'}, $params->{'cardnumber'},
876 $params->{'itemcount'}, $params->{'titles'}, $params->{'branchname'}, $params->{'letternumber'}
879 return $csv->string, "\n";
880 } else {
881 $verbose and warn 'combine failed on argument: ' . $csv->error_input;
883 } elsif ( exists $params->{'outputformat'} && $params->{'outputformat'} eq 'html' ) {
884 $return = "<pre>\n";
885 $return .= "$params->{'letter'}->{'content'}\n";
886 $return .= "\n</pre>\n";
887 } else {
888 $return .= "$params->{'letter'}->{'content'}\n";
890 # $return .= Data::Dumper->Dump( [ $params->{'borrowernumber'}, $params->{'letter'} ], [qw( borrowernumber letter )] );
892 return $return;