Bug 30694: Set decreaseloanholds undef when deleting circulation rule
[koha.git] / tools / letter.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 =head1 tools/letter.pl
21
22  ALGO :
23  this script use an $op to know what to do.
24  if $op is empty or none of the values listed below,
25         - the default screen is built (with all or filtered (if search string is set) records).
26         - the   user can click on add, modify or delete record.
27     - filtering is done on the code field
28  if $op=add_form
29         - if primary key (module + code) exists, this is a modification,so we read the required record
30         - builds the add/modify form
31  if $op=add_validate
32         - the user has just send data, so we create/modify the record
33  if $op=delete_form
34         - we show the record selected and ask for confirmation
35  if $op=delete_confirm
36         - we delete the designated record
37
38 =cut
39
40 # TODO This script drives the CRUD operations on the letter table
41 # The DB interaction should be handled by calls to C4/Letters.pm
42
43 use Modern::Perl;
44 use CGI qw ( -utf8 );
45 use Try::Tiny;
46
47 use C4::Auth qw( get_template_and_user );
48 use C4::Context;
49 use C4::Output qw( output_html_with_http_headers );
50 use C4::Letters qw( GetMessageTransportTypes );
51 use C4::Log qw( logaction );
52
53 use Koha::Notice::Templates;
54 use Koha::Patron::Attribute::Types;
55
56 # $protected_letters = protected_letters()
57 # - return a hashref of letter_codes representing letters that should never be deleted
58 sub protected_letters {
59     my $dbh = C4::Context->dbh;
60     my $codes = $dbh->selectall_arrayref(q{SELECT DISTINCT letter_code FROM message_transports});
61     return { map { $_->[0] => 1 } @{$codes} };
62 }
63
64 our $input       = CGI->new;
65 my $searchfield = $input->param('searchfield');
66 my $script_name = '/cgi-bin/koha/tools/letter.pl';
67 our $branchcode  = $input->param('branchcode');
68 $branchcode = '' if defined $branchcode and $branchcode eq '*';
69 my $code        = $input->param('code');
70 my $module      = $input->param('module') || '';
71 my $content     = $input->param('content');
72 my $op          = $input->param('op') || '';
73 my $redirect    = $input->param('redirect');
74 my $section     = $input->param('section');
75 my $langtab     = $input->param('langtab');
76
77 my $dbh = C4::Context->dbh;
78
79 our ( $template, $borrowernumber, $cookie, $staffflags ) = get_template_and_user(
80     {
81         template_name   => 'tools/letter.tt',
82         query           => $input,
83         type            => 'intranet',
84         flagsrequired   => { tools => 'edit_notices' },
85     }
86 );
87
88 our $my_branch = C4::Context->preference("IndependentBranches") && !$staffflags->{'superlibrarian'}
89   ?  C4::Context->userenv()->{'branch'}
90   : undef;
91 # we show only the TMPL_VAR names $op
92
93 $template->param(
94     independant_branch => $my_branch,
95     script_name        => $script_name,
96     searchfield        => $searchfield,
97     branchcode         => $branchcode,
98     section            => $section,
99     langtab            => $langtab,
100     action             => $script_name
101 );
102
103 if ( $op eq 'add_validate' or $op eq 'copy_validate' ) {
104     add_validate();
105     if( $redirect eq "just_save" ){
106         print $input->redirect("/cgi-bin/koha/tools/letter.pl?op=add_form&branchcode=$branchcode&module=$module&code=$code&redirect=done&section=$section&langtab=$langtab");
107         exit;
108     } else {
109         $op = q{}; # we return to the default screen for the next operation
110     }
111 }
112 if ($op eq 'copy_form') {
113     my $oldbranchcode = $input->param('oldbranchcode') || q||;
114     my $branchcode = $input->param('branchcode');
115     add_form($oldbranchcode, $module, $code);
116     $template->param(
117         oldbranchcode => $oldbranchcode,
118         branchcode => $branchcode,
119         copying => 1,
120         modify => 0,
121     );
122 }
123 elsif ( $op eq 'add_form' ) {
124     add_form($branchcode, $module, $code);
125 }
126 elsif ( $op eq 'delete_confirm' ) {
127     delete_confirm($branchcode, $module, $code);
128 }
129 elsif ( $op eq 'delete_confirmed' ) {
130     delete_confirmed($branchcode, $module, $code);
131     $op = q{}; # next operation is to return to default screen
132 }
133 else {
134     default_display($branchcode,$searchfield);
135 }
136
137 # Do this last as delete_confirmed resets
138 if ($op) {
139     $template->param($op  => 1);
140 } else {
141     $template->param(no_op_set => 1);
142 }
143
144 output_html_with_http_headers $input, $cookie, $template->output;
145
146 sub add_form {
147     my ( $branchcode,$module, $code ) = @_;
148
149     my $letters;
150     # if code has been passed we can identify letter and its an update action
151     if ($code) {
152         $letters = C4::Letters::GetLetterTemplates(
153             {
154                 branchcode => $branchcode,
155                 module     => $module,
156                 code       => $code,
157             }
158         );
159     }
160
161     my $message_transport_types = GetMessageTransportTypes();
162     my $templates = { map { $_ => { message_transport_type => $_ } } sort @$message_transport_types };
163     my %letters = ( default => { templates => $templates } );
164
165     if ( C4::Context->preference('TranslateNotices') ) {
166         my $translated_languages =
167           C4::Languages::getTranslatedLanguages( 'opac',
168             C4::Context->preference('template') );
169         for my $language (@$translated_languages) {
170             for my $sublanguage( @{ $language->{sublanguages_loop} } ) {
171                 if ( $language->{plural} ) {
172                     $letters{ $sublanguage->{rfc4646_subtag} } = {
173                         description => $sublanguage->{native_description}
174                           . ' '
175                           . $sublanguage->{region_description} . ' ('
176                           . $sublanguage->{rfc4646_subtag} . ')',
177                         templates => { %$templates },
178                     };
179                 }
180                 else {
181                     $letters{ $sublanguage->{rfc4646_subtag} } = {
182                         description => $sublanguage->{native_description}
183                           . ' ('
184                           . $sublanguage->{rfc4646_subtag} . ')',
185                         templates => { %$templates },
186                     };
187                 }
188             }
189         }
190         $template->param( languages => $translated_languages );
191     }
192     if ($letters) {
193         $template->param(
194             modify     => 1,
195             code       => $code,
196         );
197         my $first_flag_name = 1;
198         my $lang;
199
200         # The letter name is contained into each mtt row.
201         # So we can only sent the first one to the template.
202         for my $letter ( @$letters ) {
203             # The letter_name
204             if ( $first_flag_name and $letter->{name} ) {
205                 $template->param(
206                     letter_name=> $letter->{name},
207                 );
208                 $first_flag_name = 0;
209             }
210
211             # Catch template issues
212             try {
213                 C4::Letters::_process_tt($letter);
214             } catch {
215                 my $error = $_;
216                 $error =~ s/^ERROR PROCESSING TEMPLATE: //;
217                 $error =~ s/at .*\/tools\/letter\.pl line 213\.$//;
218                 $letter->{tt_error} = $error;
219             };
220
221             my $lang = $letter->{lang};
222             my $mtt = $letter->{message_transport_type};
223             $letters{ $lang }{templates}{$mtt} = {
224                 message_transport_type => $letter->{message_transport_type},
225                 is_html    => $letter->{is_html},
226                 updated_on => $letter->{updated_on},
227                 title      => $letter->{title},
228                 content    => $letter->{content} // '',
229                 tt_error   => $letter->{tt_error},
230             };
231         }
232     }
233     else {
234         $template->param( adding => 1 );
235     }
236
237     $template->param(
238         letters => \%letters,
239     );
240
241     my $field_selection;
242     push @{$field_selection}, add_fields('branches');
243     if ($module eq 'reserves') {
244         push @{$field_selection}, add_fields('borrowers', 'reserves', 'biblio', 'biblioitems', 'items');
245     }
246     elsif ( $module eq 'acquisition' ) {
247         push @{$field_selection}, add_fields('aqbooksellers', 'aqorders', 'biblio', 'items');
248     }
249     elsif ($module eq 'claimacquisition' || $module eq 'orderacquisition') {
250         push @{$field_selection}, add_fields('aqbooksellers', 'aqbasket', 'aqorders', 'biblio', 'biblioitems');
251     }
252     elsif ($module eq 'claimissues') {
253         push @{$field_selection}, add_fields('aqbooksellers', 'serial', 'subscription', 'biblio', 'biblioitems');
254     }
255     elsif ($module eq 'serial') {
256         push @{$field_selection}, add_fields('branches', 'biblio', 'biblioitems', 'borrowers', 'subscription', 'serial');
257     }
258     elsif ($module eq 'suggestions') {
259         push @{$field_selection}, add_fields('suggestions', 'borrowers', 'biblio');
260     }
261     else {
262         push @{$field_selection}, add_fields('biblio','biblioitems'),
263             add_fields('items'),
264             {value => 'items.content', text => 'items.content'},
265             {value => 'items.fine',    text => 'items.fine'},
266             add_fields('borrowers');
267         if ($module eq 'circulation') {
268             push @{$field_selection}, add_fields('additional_contents', 'recalls');
269
270         }
271
272         if ( $module eq 'circulation' and $code and ( $code eq "CHECKIN" or $code eq "CHECKINSLIP" ) ) {
273             push @{$field_selection}, add_fields('old_issues');
274         } else {
275             push @{$field_selection}, add_fields('issues');
276         }
277
278         if ( $module eq 'circulation' and $code and $code =~ /^AR_/  ) {
279             push @{$field_selection}, add_fields('article_requests');
280         }
281
282         if ( $module eq 'members' and $code and $code eq 'PROBLEM_REPORT' ) {
283             push @{$field_selection}, add_fields('problem_reports');
284         }
285
286         if ( $module eq 'ill' ) {
287             push @{$field_selection}, add_fields('illrequests');
288         }
289     }
290
291     my $preview_is_available = 0;
292
293     if ($code) {
294         $preview_is_available = grep {$_ eq $code } qw( CHECKIN CHECKOUT HOLD_SLIP );
295     }
296
297     $template->param(
298         module     => $module,
299         SQLfieldnames => $field_selection,
300         branchcode => $branchcode,
301         preview_is_available => $preview_is_available,
302     );
303     return;
304 }
305
306 sub add_validate {
307     my $dbh        = C4::Context->dbh;
308     my $branchcode    = $input->param('branchcode');
309     my $module        = $input->param('module');
310     my $oldmodule     = $input->param('oldmodule');
311     my $code          = $input->param('code');
312     my $name          = $input->param('name');
313     my @mtt           = $input->multi_param('message_transport_type');
314     my @title         = $input->multi_param('title');
315     my @content       = $input->multi_param('content');
316     my @lang          = $input->multi_param('lang');
317     for my $mtt ( @mtt ) {
318         my $lang = shift @lang;
319         my $is_html = $input->param("is_html_$mtt\_$lang");
320         my $title   = shift @title;
321         my $content = shift @content;
322         my $letter = Koha::Notice::Templates->find(
323             {
324                 module                 => $oldmodule,
325                 code                   => $code,
326                 branchcode             => $branchcode,
327                 message_transport_type => $mtt,
328                 lang                   => $lang
329             }
330         );
331
332         unless ( $title and $content ) {
333             # Delete this mtt if no title or content given
334             delete_confirmed( $branchcode, $oldmodule, $code, $mtt, $lang );
335             next;
336         }
337         elsif ( $letter ) {
338             logaction( 'NOTICES', 'MODIFY', $letter->id, $content,
339                 'Intranet' )
340               if ( C4::Context->preference("NoticesLog")
341                 && $content ne $letter->content );
342
343             $letter->set(
344                 {
345                     branchcode => $branchcode || '',
346                     module     => $module,
347                     name       => $name,
348                     is_html    => $is_html || 0,
349                     title      => $title,
350                     content    => $content,
351                     lang       => $lang
352                 }
353             )->store;
354
355         } else {
356             my $letter = Koha::Notice::Template->new(
357                 {
358                     branchcode             => $branchcode,
359                     module                 => $module,
360                     code                   => $code,
361                     name                   => $name,
362                     is_html                => $is_html,
363                     title                  => $title,
364                     content                => $content,
365                     message_transport_type => $mtt,
366                     lang                   => $lang
367                 }
368             )->store;
369             logaction( 'NOTICES', 'CREATE', $letter->id, $letter->content,
370                 'Intranet' )
371               if C4::Context->preference("NoticesLog");
372         }
373     }
374     # set up default display
375     default_display($branchcode);
376     return 1;
377 }
378
379 sub delete_confirm {
380     my ($branchcode, $module, $code) = @_;
381     my $dbh = C4::Context->dbh;
382     my $letter = Koha::Notice::Templates->search(
383         { module => $module, code => $code, branchcode => $branchcode } );
384     $template->param(
385         letter => $letter ? $letter->next : undef,
386     );
387     return;
388 }
389
390 sub delete_confirmed {
391     my ( $branchcode, $module, $code, $mtt, $lang ) = @_;
392     my $letters = Koha::Notice::Templates->search(
393         {
394             branchcode => $branchcode || '',
395             module     => $module,
396             code       => $code,
397             ( $mtt ? ( message_transport_type => $mtt ) : () ),
398             ( $lang ? ( lang => $lang ) : () ),
399         }
400     );
401     while ( my $letter = $letters->next ) {
402         logaction( 'NOTICES', 'DELETE', $letter->id, $letter->content,
403             'Intranet' )
404           if C4::Context->preference("NoticesLog");
405         $letter->delete;
406     }
407
408     # setup default display for screen
409     default_display($branchcode);
410     return;
411 }
412
413 sub retrieve_letters {
414     my ($branchcode, $searchstring) = @_;
415
416     $branchcode = $my_branch if $branchcode && $my_branch;
417
418     my $dbh = C4::Context->dbh;
419     my ($sql, @where, @args);
420     $sql = "SELECT branchcode, module, code, name, branchname, MAX(updated_on) as updated_on
421             FROM letter
422             LEFT OUTER JOIN branches USING (branchcode)
423     ";
424     if ($searchstring && $searchstring=~m/(\S+)/) {
425         $searchstring = $1 . q{%};
426         push @where, 'code LIKE ?';
427         push @args, $searchstring;
428     }
429     elsif ($branchcode) {
430         push @where, 'branchcode = ?';
431         push @args, $branchcode || '';
432     }
433     elsif ($my_branch) {
434         push @where, "(branchcode = ? OR branchcode = '')";
435         push @args, $my_branch;
436     }
437
438     $sql .= " WHERE ".join(" AND ", @where) if @where;
439     $sql .= " GROUP BY branchcode,module,code,name,branchname";
440
441     $sql .= " ORDER BY module, code, branchcode";
442
443     return $dbh->selectall_arrayref($sql, { Slice => {} }, @args);
444 }
445
446 sub default_display {
447     my ($branchcode, $searchfield) = @_;
448
449     unless ( defined $branchcode ) {
450         if ( C4::Context->preference('DefaultToLoggedInLibraryNoticesSlips') ) {
451             $branchcode = C4::Context::mybranch();
452         }
453     }
454
455     if ( $searchfield  ) {
456         $template->param( search      => 1 );
457     }
458     my $results = retrieve_letters($branchcode,$searchfield);
459
460     my $loop_data = [];
461     my $protected_letters = protected_letters();
462
463     foreach my $row (@{$results}) {
464         $row->{protected} = !$row->{branchcode} && $protected_letters->{ $row->{code} };
465         push @{$loop_data}, $row;
466
467     }
468
469     $template->param(
470         letter => $loop_data,
471         branchcode => $branchcode,
472     );
473 }
474
475 sub add_fields {
476     my @tables = @_;
477     my @fields = ();
478
479     for my $table (@tables) {
480         push @fields, get_columns_for($table);
481
482     }
483     return @fields;
484 }
485
486 sub get_columns_for {
487     my $table = shift;
488 # FIXME untranslatable
489     my %column_map = (
490         aqbooksellers => '---BOOKSELLERS---',
491         aqorders      => '---ORDERS---',
492         serial        => '---SERIALS---',
493         reserves      => '---HOLDS---',
494         suggestions   => '---SUGGESTIONS---',
495     );
496     my @fields = ();
497     if (exists $column_map{$table} ) {
498         push @fields, {
499             value => q{},
500             text  => $column_map{$table} ,
501         };
502     }
503     else {
504         my $tlabel = '---' . uc $table;
505         $tlabel.= '---';
506         push @fields, {
507             value => q{},
508             text  => $tlabel,
509         };
510     }
511
512     my $sql = "SHOW COLUMNS FROM $table";# TODO not db agnostic
513     my $table_prefix = $table . q|.|;
514     my $rows = C4::Context->dbh->selectall_arrayref($sql, { Slice => {} });
515     for my $row (@{$rows}) {
516         next if $row->{'Field'} eq 'timestamp'; # this is really an irrelevant field and there may be other common fields that should be excluded from the list
517         push @fields, {
518             value => $table_prefix . $row->{Field},
519             text  => $table_prefix . $row->{Field},
520         }
521     }
522     if ($table eq 'borrowers') {
523         my $attribute_types = Koha::Patron::Attribute::Types->search(
524             {},
525             { order_by => 'code' },
526         );
527         while ( my $at = $attribute_types->next ) {
528             push @fields, {
529                 value => "borrower-attribute:" . $at->code,
530                 text  => "attribute:" . $at->code,
531             }
532         }
533     }
534     return @fields;
535 }