Bug 9016: (follow-up) treat missing transports for overdue notices as warnings
[koha.git] / misc / cronjobs / overdue_notices.pl
1 #!/usr/bin/perl
2
3 # Copyright 2008 Liblime
4 # Copyright 2010 BibLibre
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21 use strict;
22 use warnings;
23
24 BEGIN {
25
26     # find Koha's Perl modules
27     # test carefully before changing this
28     use FindBin;
29     eval { require "$FindBin::Bin/../kohalib.pl" };
30 }
31
32 use Getopt::Long;
33 use Pod::Usage;
34 use Text::CSV_XS;
35 use Locale::Currency::Format 1.28;
36 use Encode;
37
38 use C4::Context;
39 use C4::Dates qw/format_date/;
40 use C4::Debug;
41 use C4::Letters;
42 use C4::Overdues qw(GetFine GetOverdueMessageTransportTypes);
43 use C4::Budgets qw(GetCurrency);
44
45 use Koha::Borrower::Debarments qw(AddUniqueDebarment);
46 use Koha::DateUtils;
47
48 =head1 NAME
49
50 overdue_notices.pl - prepare messages to be sent to patrons for overdue items
51
52 =head1 SYNOPSIS
53
54 overdue_notices.pl
55   [ -n ][ -library <branchcode> ][ -library <branchcode> ... ]
56   [ -max <number of days> ][ -csv [<filename>] ][ -itemscontent <field list> ]
57   [ -email <email_type> ... ]
58
59  Options:
60    -help                          brief help message
61    -man                           full documentation
62    -n                             No email will be sent
63    -max          <days>           maximum days overdue to deal with
64    -library      <branchname>     only deal with overdues from this library (repeatable : several libraries can be given)
65    -csv          <filename>       populate CSV file
66    -html         <directory>      Output html to a file in the given directory
67    -text         <directory>      Output plain text to a file in the given directory
68    -itemscontent <list of fields> item information in templates
69    -borcat       <categorycode>   category code that must be included
70    -borcatout    <categorycode>   category code that must be excluded
71    -email        <email_type>     type of email that will be used. Can be 'email', 'emailpro' or 'B_email'. Repeatable.
72
73 =head1 OPTIONS
74
75 =over 8
76
77 =item B<-help>
78
79 Print a brief help message and exits.
80
81 =item B<-man>
82
83 Prints the manual page and exits.
84
85 =item B<-v>
86
87 Verbose. Without this flag set, only fatal errors are reported.
88
89 =item B<-n>
90
91 Do not send any email. Overdue notices that would have been sent to
92 the patrons or to the admin are printed to standard out. CSV data (if
93 the -csv flag is set) is written to standard out or to any csv
94 filename given.
95
96 =item B<-max>
97
98 Items older than max days are assumed to be handled somewhere else,
99 probably the F<longoverdues.pl> script. They are therefore ignored by
100 this program. No notices are sent for them, and they are not added to
101 any CSV files. Defaults to 90 to match F<longoverdues.pl>.
102
103 =item B<-library>
104
105 select overdues for one specific library. Use the value in the
106 branches.branchcode table. This option can be repeated in order 
107 to select overdues for a group of libraries.
108
109 =item B<-csv>
110
111 Produces CSV data. if -n (no mail) flag is set, then this CSV data is
112 sent to standard out or to a filename if provided. Otherwise, only
113 overdues that could not be emailed are sent in CSV format to the admin.
114
115 =item B<-html>
116
117 Produces html data. If patron does not have an email address or
118 -n (no mail) flag is set, an HTML file is generated in the specified
119 directory. This can be downloaded or futher processed by library staff.
120 The file will be called notices-YYYY-MM-DD.html and placed in the directory
121 specified.
122
123 =item B<-text>
124
125 Produces plain text data. If patron does not have an email address or
126 -n (no mail) flag is set, a text file is generated in the specified
127 directory. This can be downloaded or futher processed by library staff.
128 The file will be called notices-YYYY-MM-DD.txt and placed in the directory
129 specified.
130
131 =item B<-itemscontent>
132
133 comma separated list of fields that get substituted into templates in
134 places of the E<lt>E<lt>items.contentE<gt>E<gt> placeholder. This
135 defaults to due date,title,barcode,author
136
137 Other possible values come from fields in the biblios, items and
138 issues tables.
139
140 =item B<-borcat>
141
142 Repetable field, that permit to select only few of patrons categories.
143
144 =item B<-borcatout>
145
146 Repetable field, permis to exclude some patrons categories.
147
148 =item B<-t> | B<--triggered>
149
150 This option causes a notice to be generated if and only if 
151 an item is overdue by the number of days defined in a notice trigger.
152
153 By default, a notice is sent each time the script runs, which is suitable for 
154 less frequent run cron script, but requires syncing notice triggers with 
155 the  cron schedule to ensure proper behavior.
156 Add the --triggered option for daily cron, at the risk of no notice 
157 being generated if the cron fails to run on time.
158
159 =item B<-list-all>
160
161 Default items.content lists only those items that fall in the 
162 range of the currently processing notice.
163 Choose list-all to include all overdue items in the list (limited by B<-max> setting).
164
165 =item B<-date>
166
167 use it in order to send overdues on a specific date and not Now.
168
169 =item B<-email>
170
171 Allows to specify which type of email will be used. Can be email, emailpro or B_email. Repeatable.
172
173 =back
174
175 =head1 DESCRIPTION
176
177 This script is designed to alert patrons and administrators of overdue
178 items.
179
180 =head2 Configuration
181
182 This script pays attention to the overdue notice configuration
183 performed in the "Overdue notice/status triggers" section of the
184 "Tools" area of the staff interface to Koha. There, you can choose
185 which letter templates are sent out after a configurable number of
186 days to patrons of each library. More information about the use of this
187 section of Koha is available in the Koha manual.
188
189 The templates used to craft the emails are defined in the "Tools:
190 Notices" section of the staff interface to Koha.
191
192 =head2 Outgoing emails
193
194 Typically, messages are prepared for each patron with overdue
195 items. Messages for whom there is no email address on file are
196 collected and sent as attachments in a single email to each library
197 administrator, or if that is not set, then to the email address in the
198 C<KohaAdminEmailAddress> system preference.
199
200 These emails are staged in the outgoing message queue, as are messages
201 produced by other features of Koha. This message queue must be
202 processed regularly by the
203 F<misc/cronjobs/process_message_queue.pl> program.
204
205 In the event that the C<-n> flag is passed to this program, no emails
206 are sent. Instead, messages are sent on standard output from this
207 program. They may be redirected to a file if desired.
208
209 =head2 Templates
210
211 Templates can contain variables enclosed in double angle brackets like
212 E<lt>E<lt>thisE<gt>E<gt>. Those variables will be replaced with values
213 specific to the overdue items or relevant patron. Available variables
214 are:
215
216 =over
217
218 =item E<lt>E<lt>bibE<gt>E<gt>
219
220 the name of the library
221
222 =item E<lt>E<lt>items.contentE<gt>E<gt>
223
224 one line for each item, each line containing a tab separated list of
225 title, author, barcode, issuedate
226
227 =item E<lt>E<lt>borrowers.*E<gt>E<gt>
228
229 any field from the borrowers table
230
231 =item E<lt>E<lt>branches.*E<gt>E<gt>
232
233 any field from the branches table
234
235 =back
236
237 =head2 CSV output
238
239 The C<-csv> command line option lets you specify a file to which
240 overdues data should be output in CSV format.
241
242 With the C<-n> flag set, data about all overdues is written to the
243 file. Without that flag, only information about overdues that were
244 unable to be sent directly to the patrons will be written. In other
245 words, this CSV file replaces the data that is typically sent to the
246 administrator email address.
247
248 =head1 USAGE EXAMPLES
249
250 C<overdue_notices.pl> - In this most basic usage, with no command line
251 arguments, all libraries are procesed individually, and notices are
252 prepared for all patrons with overdue items for whom we have email
253 addresses. Messages for those patrons for whom we have no email
254 address are sent in a single attachment to the library administrator's
255 email address, or to the address in the KohaAdminEmailAddress system
256 preference.
257
258 C<overdue_notices.pl -n -csv /tmp/overdues.csv> - sends no email and
259 populates F</tmp/overdues.csv> with information about all overdue
260 items.
261
262 C<overdue_notices.pl -library MAIN max 14> - prepare notices of
263 overdues in the last 2 weeks for the MAIN library.
264
265 =head1 SEE ALSO
266
267 The F<misc/cronjobs/advance_notices.pl> program allows you to send
268 messages to patrons in advance of thier items becoming due, or to
269 alert them of items that have just become due.
270
271 =cut
272
273 # These variables are set by command line options.
274 # They are initially set to default values.
275 my $dbh = C4::Context->dbh();
276 my $help    = 0;
277 my $man     = 0;
278 my $verbose = 0;
279 my $nomail  = 0;
280 my $MAX     = 90;
281 my @branchcodes; # Branch(es) passed as parameter
282 my @emails_to_use;    # Emails to use for messaging
283 my @emails;           # Emails given in command-line parameters
284 my $csvfilename;
285 my $htmlfilename;
286 my $text_filename;
287 my $triggered = 0;
288 my $listall = 0;
289 my $itemscontent = join( ',', qw( date_due title barcode author itemnumber ) );
290 my @myborcat;
291 my @myborcatout;
292 my $date;
293
294 GetOptions(
295     'help|?'         => \$help,
296     'man'            => \$man,
297     'v'              => \$verbose,
298     'n'              => \$nomail,
299     'max=s'          => \$MAX,
300     'library=s'      => \@branchcodes,
301     'csv:s'          => \$csvfilename,    # this optional argument gets '' if not supplied.
302     'html:s'         => \$htmlfilename,    # this optional argument gets '' if not supplied.
303     'text:s'         => \$text_filename,    # this optional argument gets '' if not supplied.
304     'itemscontent=s' => \$itemscontent,
305     'list-all'       => \$listall,
306     't|triggered'    => \$triggered,
307     'date'           => \$date,
308     'borcat=s'       => \@myborcat,
309     'borcatout=s'    => \@myborcatout,
310     'email=s'        => \@emails,
311 ) or pod2usage(2);
312 pod2usage(1) if $help;
313 pod2usage( -verbose => 2 ) if $man;
314
315 if ( defined $csvfilename && $csvfilename =~ /^-/ ) {
316     warn qq(using "$csvfilename" as filename, that seems odd);
317 }
318
319 my @overduebranches    = C4::Overdues::GetBranchcodesWithOverdueRules();        # Branches with overdue rules
320 my @branches;                                                                   # Branches passed as parameter with overdue rules
321 my $branchcount = scalar(@overduebranches);
322
323 my $overduebranch_word = scalar @overduebranches > 1 ? 'branches' : 'branch';
324 my $branchcodes_word = scalar @branchcodes > 1 ? 'branches' : 'branch';
325
326 my $PrintNoticesMaxLines = C4::Context->preference('PrintNoticesMaxLines');
327
328 if ($branchcount) {
329     $verbose and warn "Found $branchcount $overduebranch_word with first message enabled: " . join( ', ', map { "'$_'" } @overduebranches ), "\n";
330 } else {
331     die 'No branches with active overduerules';
332 }
333
334 if (@branchcodes) {
335     $verbose and warn "$branchcodes_word @branchcodes passed on parameter\n";
336     
337     # Getting libraries which have overdue rules
338     my %seen = map { $_ => 1 } @branchcodes;
339     @branches = grep { $seen{$_} } @overduebranches;
340     
341     
342     if (@branches) {
343
344         my $branch_word = scalar @branches > 1 ? 'branches' : 'branch';
345         $verbose and warn "$branch_word @branches have overdue rules\n";
346
347     } else {
348     
349         $verbose and warn "No active overduerules for $branchcodes_word  '@branchcodes'\n";
350         ( scalar grep { '' eq $_ } @branches )
351           or die "No active overduerules for DEFAULT either!";
352         $verbose and warn "Falling back on default rules for @branchcodes\n";
353         @branches = ('');
354     }
355 }
356
357 if ($date){
358     $date=$dbh->quote($date);
359 }
360 else {
361     $date="NOW()";
362 }
363
364 # these are the fields that will be substituted into <<item.content>>
365 my @item_content_fields = split( /,/, $itemscontent );
366
367 binmode( STDOUT, ':encoding(UTF-8)' );
368
369
370 our $csv;       # the Text::CSV_XS object
371 our $csv_fh;    # the filehandle to the CSV file.
372 if ( defined $csvfilename ) {
373     my $sep_char = C4::Context->preference('delimiter') || ';';
374     $sep_char = "\t" if ($sep_char eq 'tabulation');
375     $csv = Text::CSV_XS->new( { binary => 1 , sep_char => $sep_char } );
376     if ( $csvfilename eq '' ) {
377         $csv_fh = *STDOUT;
378     } else {
379         open $csv_fh, ">", $csvfilename or die "unable to open $csvfilename: $!";
380     }
381     if ( $csv->combine(qw(name surname address1 address2 zipcode city country email itemcount itemsinfo)) ) {
382         print $csv_fh $csv->string, "\n";
383     } else {
384         $verbose and warn 'combine failed on argument: ' . $csv->error_input;
385     }
386 }
387
388 @branches = @overduebranches unless @branches;
389 our $fh;
390 if ( defined $htmlfilename ) {
391   if ( $htmlfilename eq '' ) {
392     $fh = *STDOUT;
393   } else {
394     my $today = DateTime->now(time_zone => C4::Context->tz );
395     open $fh, ">",File::Spec->catdir ($htmlfilename,"notices-".$today->ymd().".html");
396   }
397   
398   print $fh "<html>\n";
399   print $fh "<head>\n";
400   print $fh "<style type='text/css'>\n";
401   print $fh "pre {page-break-after: always;}\n";
402   print $fh "pre {white-space: pre-wrap;}\n";
403   print $fh "pre {white-space: -moz-pre-wrap;}\n";
404   print $fh "pre {white-space: -o-pre-wrap;}\n";
405   print $fh "pre {word-wrap: break-work;}\n";
406   print $fh "</style>\n";
407   print $fh "</head>\n";
408   print $fh "<body>\n";
409 }
410 elsif ( defined $text_filename ) {
411   if ( $text_filename eq '' ) {
412     $fh = *STDOUT;
413   } else {
414     my $today = DateTime->now(time_zone => C4::Context->tz );
415     open $fh, ">",File::Spec->catdir ($text_filename,"notices-".$today->ymd().".txt");
416   }
417 }
418
419 foreach my $branchcode (@branches) {
420
421     my $branch_details = C4::Branch::GetBranchDetail($branchcode);
422     my $admin_email_address = $branch_details->{'branchemail'} || C4::Context->preference('KohaAdminEmailAddress');
423     my @output_chunks;    # may be sent to mail or stdout or csv file.
424
425     $verbose and warn sprintf "branchcode : '%s' using %s\n", $branchcode, $admin_email_address;
426
427     my $sth2 = $dbh->prepare( <<"END_SQL" );
428 SELECT biblio.*, items.*, issues.*, biblioitems.itemtype, TO_DAYS($date)-TO_DAYS(date_due) AS days_overdue
429   FROM issues,items,biblio, biblioitems
430   WHERE items.itemnumber=issues.itemnumber
431     AND biblio.biblionumber   = items.biblionumber
432     AND biblio.biblionumber   = biblioitems.biblionumber
433     AND issues.borrowernumber = ?
434     AND TO_DAYS($date)-TO_DAYS(date_due) BETWEEN ? and ?
435 END_SQL
436
437     my $query = "SELECT * FROM overduerules WHERE delay1 IS NOT NULL AND branchcode = ? ";
438     $query .= " AND categorycode IN (".join( ',' , ('?') x @myborcat ).") " if (@myborcat);
439     $query .= " AND categorycode NOT IN (".join( ',' , ('?') x @myborcatout ).") " if (@myborcatout);
440     
441     my $rqoverduerules =  $dbh->prepare($query);
442     $rqoverduerules->execute($branchcode, @myborcat, @myborcatout);
443     
444     # We get default rules is there is no rule for this branch
445     if($rqoverduerules->rows == 0){
446         $query = "SELECT * FROM overduerules WHERE delay1 IS NOT NULL AND branchcode = '' ";
447         $query .= " AND categorycode IN (".join( ',' , ('?') x @myborcat ).") " if (@myborcat);
448         $query .= " AND categorycode NOT IN (".join( ',' , ('?') x @myborcatout ).") " if (@myborcatout);
449         
450         $rqoverduerules = $dbh->prepare($query);
451         $rqoverduerules->execute(@myborcat, @myborcatout);
452     }
453
454     # my $outfile = 'overdues_' . ( $mybranch || $branchcode || 'default' );
455     while ( my $overdue_rules = $rqoverduerules->fetchrow_hashref ) {
456       PERIOD: foreach my $i ( 1 .. 3 ) {
457             $verbose and warn "branch '$branchcode', pass $i\n";
458             my $mindays = $overdue_rules->{"delay$i"};    # the notice will be sent after mindays days (grace period)
459             my $maxdays = (
460                   $overdue_rules->{ "delay" . ( $i + 1 ) }
461                 ? $overdue_rules->{ "delay" . ( $i + 1 ) } - 1
462                 : ($MAX)
463             );                                            # issues being more than maxdays late are managed somewhere else. (borrower probably suspended)
464
465             if ( !$overdue_rules->{"letter$i"} ) {
466                 $verbose and warn "No letter$i code for branch '$branchcode'";
467                 next PERIOD;
468             }
469
470             # $letter->{'content'} is the text of the mail that is sent.
471             # this text contains fields that are replaced by their value. Those fields must be written between brackets
472             # The following fields are available :
473             # 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).
474             # <date> <itemcount> <firstname> <lastname> <address1> <address2> <address3> <city> <postcode> <country>
475
476             my $borrower_sql = <<'END_SQL';
477 SELECT distinct(issues.borrowernumber), firstname, surname, address, address2, city, zipcode, country, email, emailpro, B_email, smsalertnumber
478 FROM   issues,borrowers,categories
479 WHERE  issues.borrowernumber=borrowers.borrowernumber
480 AND    borrowers.categorycode=categories.categorycode
481 END_SQL
482             my @borrower_parameters;
483             if ($branchcode) {
484                 $borrower_sql .= ' AND issues.branchcode=? ';
485                 push @borrower_parameters, $branchcode;
486             }
487             if ( $overdue_rules->{categorycode} ) {
488                 $borrower_sql .= ' AND borrowers.categorycode=? ';
489                 push @borrower_parameters, $overdue_rules->{categorycode};
490             }
491             $borrower_sql .= '  AND categories.overduenoticerequired=1 ';
492             if($triggered) {
493                 $borrower_sql .= " AND TO_DAYS($date)-TO_DAYS(date_due) = ?";
494                 push @borrower_parameters, $mindays;
495             } else {
496                 $borrower_sql .= " AND TO_DAYS($date)-TO_DAYS(date_due) BETWEEN ? and ? " ;
497                 push @borrower_parameters, $mindays, $maxdays;
498             }
499
500             # $sth gets borrower info iff at least one overdue item has triggered the overdue action.
501                 my $sth = $dbh->prepare($borrower_sql);
502             $sth->execute(@borrower_parameters);
503             $verbose and warn $borrower_sql . "\n $branchcode | " . $overdue_rules->{'categorycode'} . "\n ($mindays, $maxdays)\nreturns " . $sth->rows . " rows";
504
505             while ( my $data = $sth->fetchrow_hashref ) {
506                 my $borrowernumber = $data->{'borrowernumber'};
507                 my $borr =
508                     $data->{'firstname'} . ', '
509                   . $data->{'surname'} . ' ('
510                   . $borrowernumber . ')';
511                 $verbose
512                   and warn "borrower $borr has items triggering level $i.";
513
514                 @emails_to_use = ();
515                 my $notice_email =
516                     C4::Members::GetNoticeEmailAddress($borrowernumber);
517                 unless ($nomail) {
518                     if (@emails) {
519                         foreach (@emails) {
520                             push @emails_to_use, $data->{$_} if ( $data->{$_} );
521                         }
522                     }
523                     else {
524                         push @emails_to_use, $notice_email if ($notice_email);
525                     }
526                 }
527
528                 my $letter = C4::Letters::getletter( 'circulation', $overdue_rules->{"letter$i"}, $branchcode );
529
530                 unless ($letter) {
531                     $verbose and warn "Message '$overdue_rules->{letter$i}' content not found";
532
533                     # might as well skip while PERIOD, no other borrowers are going to work.
534                     # FIXME : Does this mean a letter must be defined in order to trigger a debar ?
535                     next PERIOD;
536                 }
537     
538                 if ( $overdue_rules->{"debarred$i"} ) {
539     
540                     #action taken is debarring
541                     AddUniqueDebarment(
542                         {
543                             borrowernumber => $borrowernumber,
544                             type           => 'OVERDUES',
545                             comment => "Restriction added by overdues process "
546                               . output_pref( dt_from_string() ),
547                         }
548                     );
549                     $verbose and warn "debarring $borr\n";
550                 }
551                 my @params = ($listall ? ( $borrowernumber , 1 , $MAX ) : ( $borrowernumber, $mindays, $maxdays ));
552                 $verbose and warn "STH2 PARAMS: borrowernumber = $borrowernumber, mindays = $mindays, maxdays = $maxdays";
553                 $sth2->execute(@params);
554                 my $itemcount = 0;
555                 my $titles = "";
556                 my @items = ();
557                 
558                 my $j = 0;
559                 my $exceededPrintNoticesMaxLines = 0;
560                 while ( my $item_info = $sth2->fetchrow_hashref() ) {
561                     if ( ( scalar(@emails_to_use) == 0 || $nomail ) && $PrintNoticesMaxLines && $j >= $PrintNoticesMaxLines ) {
562                       $exceededPrintNoticesMaxLines = 1;
563                       last;
564                     }
565                     $j++;
566                     my @item_info = map { $_ =~ /^date|date$/ ? format_date( $item_info->{$_} ) : $item_info->{$_} || '' } @item_content_fields;
567                     $titles .= join("\t", @item_info) . "\n";
568                     $itemcount++;
569                     push @items, $item_info;
570                 }
571                 $sth2->finish;
572
573                 my @message_transport_types = @{ GetOverdueMessageTransportTypes( $branchcode, $overdue_rules->{categorycode}, $i) };
574                 @message_transport_types = @{ GetOverdueMessageTransportTypes( q{}, $overdue_rules->{categorycode}, $i) }
575                     unless @message_transport_types;
576
577
578                 my $print_sent = 0; # A print notice is not yet sent for this patron
579                 for my $mtt ( @message_transport_types ) {
580
581                     my $letter = parse_letter(
582                         {   letter_code     => $overdue_rules->{"letter$i"},
583                             borrowernumber  => $borrowernumber,
584                             branchcode      => $branchcode,
585                             items           => \@items,
586                             substitute      => {    # this appears to be a hack to overcome incomplete features in this code.
587                                                 bib             => $branch_details->{'branchname'}, # maybe 'bib' is a typo for 'lib<rary>'?
588                                                 'items.content' => $titles,
589                                                 'count'         => $itemcount,
590                                                },
591                             message_transport_type => $mtt,
592                         }
593                     );
594                     unless ($letter) {
595                         $verbose and warn "Message '$overdue_rules->{letter$i}' content not found";
596                         # this transport doesn't have a configured notice, so try another
597                         next;
598                     }
599
600                     if ( $exceededPrintNoticesMaxLines ) {
601                       $letter->{'content'} .= "List too long for form; please check your account online for a complete list of your overdue items.";
602                     }
603
604                     my @misses = grep { /./ } map { /^([^>]*)[>]+/; ( $1 || '' ); } split /\</, $letter->{'content'};
605                     if (@misses) {
606                         $verbose and warn "The following terms were not matched and replaced: \n\t" . join "\n\t", @misses;
607                     }
608
609                     if ($nomail) {
610                         push @output_chunks,
611                           prepare_letter_for_printing(
612                           {   letter         => $letter,
613                               borrowernumber => $borrowernumber,
614                               firstname      => $data->{'firstname'},
615                               lastname       => $data->{'surname'},
616                               address1       => $data->{'address'},
617                               address2       => $data->{'address2'},
618                               city           => $data->{'city'},
619                               postcode       => $data->{'zipcode'},
620                               country        => $data->{'country'},
621                               email          => $notice_email,
622                               itemcount      => $itemcount,
623                               titles         => $titles,
624                               outputformat   => defined $csvfilename ? 'csv' : defined $htmlfilename ? 'html' : defined $text_filename ? 'text' : '',
625                             }
626                           );
627                     } else {
628                         if ( ($mtt eq 'email' and not scalar @emails_to_use) or ($mtt eq 'sms' and not $data->{smsalertnumber}) ) {
629                             # email or sms is requested but not exist, do a print.
630                             $mtt = 'print';
631                         }
632                         unless ( $mtt eq 'print' and $print_sent == 1 ) {
633                             # Just sent a print if not already done.
634                             C4::Letters::EnqueueLetter(
635                                 {   letter                 => $letter,
636                                     borrowernumber         => $borrowernumber,
637                                     message_transport_type => $mtt,
638                                     from_address           => $admin_email_address,
639                                     to_address             => join(',', @emails_to_use),
640                                 }
641                             );
642                             # A print notice should be sent only once per overdue level.
643                             # 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.
644                             $print_sent = 1 if $mtt eq 'print';
645                         }
646                     }
647                 }
648             }
649             $sth->finish;
650         }
651     }
652
653     if (@output_chunks) {
654         if ( defined $csvfilename ) {
655             print $csv_fh @output_chunks;        
656         }
657         elsif ( defined $htmlfilename ) {
658             print $fh @output_chunks;        
659         }
660         elsif ( defined $text_filename ) {
661             print $fh @output_chunks;        
662         }
663         elsif ($nomail){
664                 local $, = "\f";    # pagebreak
665                 print @output_chunks;
666         }
667         # Generate the content of the csv with headers
668         my $content;
669         if ( defined $csvfilename ) {
670             my $delimiter = C4::Context->preference('delimiter') || ';';
671             $content = join($delimiter, qw(title name surname address1 address2 zipcode city country email itemcount itemsinfo due_date issue_date)) . "\n";
672         }
673         else {
674             $content = "";
675         }
676         $content .= join( "\n", @output_chunks );
677
678         my $attachment = {
679             filename => defined $csvfilename ? 'attachment.csv' : 'attachment.txt',
680             type => 'text/plain',
681             content => $content, 
682         };
683
684         my $letter = {
685             title   => 'Overdue Notices',
686             content => 'These messages were not sent directly to the patrons.',
687         };
688         C4::Letters::EnqueueLetter(
689             {   letter                 => $letter,
690                 borrowernumber         => undef,
691                 message_transport_type => 'email',
692                 attachments            => [$attachment],
693                 to_address             => $admin_email_address,
694             }
695         );
696     }
697
698 }
699 if ($csvfilename) {
700     # note that we're not testing on $csv_fh to prevent closing
701     # STDOUT.
702     close $csv_fh;
703 }
704
705 if ( defined $htmlfilename ) {
706   print $fh "</body>\n";
707   print $fh "</html>\n";
708   close $fh;
709 } elsif ( defined $text_filename ) {
710   close $fh;
711 }
712
713 =head1 INTERNAL METHODS
714
715 These methods are internal to the operation of overdue_notices.pl.
716
717 =head2 parse_letter
718
719 parses the letter template, replacing the placeholders with data
720 specific to this patron, biblio, or item
721
722 named parameters:
723   letter - required hashref
724   borrowernumber - required integer
725   substitute - optional hashref of other key/value pairs that should
726     be substituted in the letter content
727
728 returns the C<letter> hashref, with the content updated to reflect the
729 substituted keys and values.
730
731
732 =cut
733
734 sub parse_letter {
735     my $params = shift;
736     foreach my $required (qw( letter_code borrowernumber )) {
737         return unless ( exists $params->{$required} && $params->{$required} );
738     }
739
740     my $substitute = $params->{'substitute'} || {};
741     $substitute->{today} ||= C4::Dates->new()->output("syspref");
742
743     my %tables = ( 'borrowers' => $params->{'borrowernumber'} );
744     if ( my $p = $params->{'branchcode'} ) {
745         $tables{'branches'} = $p;
746     }
747
748     my $currencies = GetCurrency();
749     my $currency_format;
750     $currency_format = $currencies->{currency} if defined($currencies);
751
752     my @item_tables;
753     if ( my $i = $params->{'items'} ) {
754         my $item_format = '';
755         foreach my $item (@$i) {
756             my $fine = GetFine($item->{'itemnumber'}, $params->{'borrowernumber'});
757             if ( !$item_format and defined $params->{'letter'}->{'content'} ) {
758                 $params->{'letter'}->{'content'} =~ m/(<item>.*<\/item>)/;
759                 $item_format = $1;
760             }
761
762             $item->{'fine'} = currency_format($currency_format, "$fine", FMT_SYMBOL);
763             # if active currency isn't correct ISO code fallback to sprintf
764             $item->{'fine'} = sprintf('%.2f', $fine) unless $item->{'fine'};
765
766             push @item_tables, {
767                 'biblio' => $item->{'biblionumber'},
768                 'biblioitems' => $item->{'biblionumber'},
769                 'items' => $item,
770                 'issues' => $item->{'itemnumber'},
771             };
772         }
773     }
774
775     return C4::Letters::GetPreparedLetter (
776         module => 'circulation',
777         letter_code => $params->{'letter_code'},
778         branchcode => $params->{'branchcode'},
779         tables => \%tables,
780         substitute => $substitute,
781         repeat => { item => \@item_tables },
782         message_transport_type => $params->{message_transport_type},
783     );
784 }
785
786 =head2 prepare_letter_for_printing
787
788 returns a string of text appropriate for printing in the event that an
789 overdue notice will not be sent to the patron's email
790 address. Depending on the desired output format, this may be a CSV
791 string, or a human-readable representation of the notice.
792
793 required parameters:
794   letter
795   borrowernumber
796
797 optional parameters:
798   outputformat
799
800 =cut
801
802 sub prepare_letter_for_printing {
803     my $params = shift;
804
805     return unless ref $params eq 'HASH';
806
807     foreach my $required_parameter (qw( letter borrowernumber )) {
808         return unless defined $params->{$required_parameter};
809     }
810
811     my $return;
812     chomp $params->{titles};
813     if ( exists $params->{'outputformat'} && $params->{'outputformat'} eq 'csv' ) {
814         if ($csv->combine(
815                 $params->{'firstname'}, $params->{'lastname'}, $params->{'address1'},  $params->{'address2'}, $params->{'postcode'},
816                 $params->{'city'}, $params->{'country'}, $params->{'email'}, $params->{'itemcount'}, $params->{'titles'}
817             )
818           ) {
819             return $csv->string, "\n";
820         } else {
821             $verbose and warn 'combine failed on argument: ' . $csv->error_input;
822         }
823     } elsif ( exists $params->{'outputformat'} && $params->{'outputformat'} eq 'html' ) {
824       $return = "<pre>\n";
825       my $content = $params->{'letter'}->{'content'};
826       $content =~ s/\n/<br \/>/g;
827       $content =~ s/\r//g;
828       $return .= "$content\n";
829       $return .= "\n</pre>\n";
830     } else {
831         $return .= "$params->{'letter'}->{'content'}\n";
832
833         # $return .= Data::Dumper->Dump( [ $params->{'borrowernumber'}, $params->{'letter'} ], [qw( borrowernumber letter )] );
834     }
835     return $return;
836 }
837