3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
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.
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.
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>.
20 =head1 tools/letter.pl
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
29 - if primary key (module + code) exists, this is a modification,so we read the required record
30 - builds the add/modify form
32 - the user has just send data, so we create/modify the record
34 - we show the record selected and ask for confirmation
36 - we delete the designated record
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
50 use Koha
::Patron
::Attribute
::Types
;
52 # $protected_letters = protected_letters()
53 # - return a hashref of letter_codes representing letters that should never be deleted
54 sub protected_letters
{
55 my $dbh = C4
::Context
->dbh;
56 my $codes = $dbh->selectall_arrayref(q{SELECT DISTINCT letter_code FROM message_transports});
57 return { map { $_->[0] => 1 } @
{$codes} };
61 my $searchfield = $input->param('searchfield');
62 my $script_name = '/cgi-bin/koha/tools/letter.pl';
63 our $branchcode = $input->param('branchcode');
64 $branchcode = '' if defined $branchcode and $branchcode eq '*';
65 my $code = $input->param('code');
66 my $module = $input->param('module') || '';
67 my $content = $input->param('content');
68 my $op = $input->param('op') || '';
69 my $redirect = $input->param('redirect');
70 my $dbh = C4
::Context
->dbh;
72 our ( $template, $borrowernumber, $cookie, $staffflags ) = get_template_and_user
(
74 template_name
=> 'tools/letter.tt',
78 flagsrequired
=> { tools
=> 'edit_notices' },
83 our $my_branch = C4
::Context
->preference("IndependentBranches") && !$staffflags->{'superlibrarian'}
84 ? C4
::Context
->userenv()->{'branch'}
86 # we show only the TMPL_VAR names $op
89 independant_branch
=> $my_branch,
90 script_name
=> $script_name,
91 searchfield
=> $searchfield,
92 branchcode
=> $branchcode,
93 action
=> $script_name
96 if ( $op eq 'add_validate' or $op eq 'copy_validate' ) {
98 if( $redirect eq "just_save" ){
99 print $input->redirect("/cgi-bin/koha/tools/letter.pl?op=add_form&branchcode=$branchcode&module=$module&code=$code&redirect=done");
102 $op = q{}; # we return to the default screen for the next operation
105 if ($op eq 'copy_form') {
106 my $oldbranchcode = $input->param('oldbranchcode') || q
||;
107 my $branchcode = $input->param('branchcode');
108 add_form
($oldbranchcode, $module, $code);
110 oldbranchcode
=> $oldbranchcode,
111 branchcode
=> $branchcode,
116 elsif ( $op eq 'add_form' ) {
117 add_form
($branchcode, $module, $code);
119 elsif ( $op eq 'delete_confirm' ) {
120 delete_confirm
($branchcode, $module, $code);
122 elsif ( $op eq 'delete_confirmed' ) {
123 delete_confirmed
($branchcode, $module, $code);
124 $op = q{}; # next operation is to return to default screen
127 default_display
($branchcode,$searchfield);
130 # Do this last as delete_confirmed resets
132 $template->param($op => 1);
134 $template->param(no_op_set
=> 1);
137 output_html_with_http_headers
$input, $cookie, $template->output;
140 my ( $branchcode,$module, $code ) = @_;
143 # if code has been passed we can identify letter and its an update action
145 $letters = C4
::Letters
::GetLetterTemplates
(
147 branchcode
=> $branchcode,
154 my $message_transport_types = GetMessageTransportTypes
();
155 my $templates = { map { $_ => { message_transport_type
=> $_ } } sort @
$message_transport_types };
156 my %letters = ( default => { templates
=> $templates } );
158 if ( C4
::Context
->preference('TranslateNotices') ) {
159 my $translated_languages =
160 C4
::Languages
::getTranslatedLanguages
( 'opac',
161 C4
::Context
->preference('template') );
162 for my $language (@
$translated_languages) {
163 for my $sublanguage( @
{ $language->{sublanguages_loop
} } ) {
164 if ( $language->{plural
} ) {
165 $letters{ $sublanguage->{rfc4646_subtag
} } = {
166 description
=> $sublanguage->{native_description
}
168 . $sublanguage->{region_description
} . ' ('
169 . $sublanguage->{rfc4646_subtag
} . ')',
170 templates
=> { %$templates },
174 $letters{ $sublanguage->{rfc4646_subtag
} } = {
175 description
=> $sublanguage->{native_description
}
177 . $sublanguage->{rfc4646_subtag
} . ')',
178 templates
=> { %$templates },
183 $template->param( languages
=> $translated_languages );
190 my $first_flag_name = 1;
191 my ( $lang, @templates );
192 # The letter name is contained into each mtt row.
193 # So we can only sent the first one to the template.
194 for my $letter ( @
$letters ) {
196 if ( $first_flag_name and $letter->{name
} ) {
198 letter_name
=> $letter->{name
},
200 $first_flag_name = 0;
203 my $lang = $letter->{lang
};
204 my $mtt = $letter->{message_transport_type
};
205 $letters{ $lang }{templates
}{$mtt} = {
206 message_transport_type
=> $letter->{message_transport_type
},
207 is_html
=> $letter->{is_html
},
208 title
=> $letter->{title
},
209 content
=> $letter->{content
} // '',
214 $template->param( adding
=> 1 );
218 letters
=> \
%letters,
222 push @
{$field_selection}, add_fields
('branches');
223 if ($module eq 'reserves') {
224 push @
{$field_selection}, add_fields
('borrowers', 'reserves', 'biblio', 'biblioitems', 'items');
226 elsif ( $module eq 'acquisition' ) {
227 push @
{$field_selection}, add_fields
('aqbooksellers', 'aqorders', 'biblio', 'items');
229 elsif ($module eq 'claimacquisition' || $module eq 'orderacquisition') {
230 push @
{$field_selection}, add_fields
('aqbooksellers', 'aqbasket', 'aqorders', 'biblio', 'biblioitems');
232 elsif ($module eq 'claimissues') {
233 push @
{$field_selection}, add_fields
('aqbooksellers', 'serial', 'subscription', 'biblio', 'biblioitems');
235 elsif ($module eq 'serial') {
236 push @
{$field_selection}, add_fields
('branches', 'biblio', 'biblioitems', 'borrowers', 'subscription', 'serial');
238 elsif ($module eq 'suggestions') {
239 push @
{$field_selection}, add_fields
('suggestions', 'borrowers', 'biblio');
242 push @
{$field_selection}, add_fields
('biblio','biblioitems'),
244 {value
=> 'items.content', text
=> 'items.content'},
245 {value
=> 'items.fine', text
=> 'items.fine'},
246 add_fields
('borrowers');
247 if ($module eq 'circulation') {
248 push @
{$field_selection}, add_fields
('opac_news');
252 if ( $module eq 'circulation' and $code and $code eq "CHECKIN" ) {
253 push @
{$field_selection}, add_fields
('old_issues');
255 push @
{$field_selection}, add_fields
('issues');
258 if ( $module eq 'circulation' and $code =~ /^AR_/ ) {
259 push @
{$field_selection}, add_fields
('article_requests');
263 my $preview_is_available = grep {/^$code$/} qw(
264 CHECKIN CHECKOUT HOLD_SLIP
268 SQLfieldnames
=> $field_selection,
269 branchcode
=> $branchcode,
270 preview_is_available
=> $preview_is_available,
276 my $dbh = C4
::Context
->dbh;
277 my $branchcode = $input->param('branchcode');
278 my $module = $input->param('module');
279 my $oldmodule = $input->param('oldmodule');
280 my $code = $input->param('code');
281 my $name = $input->param('name');
282 my @mtt = $input->multi_param('message_transport_type');
283 my @title = $input->multi_param('title');
284 my @content = $input->multi_param('content');
285 my @lang = $input->multi_param('lang');
286 for my $mtt ( @mtt ) {
287 my $is_html = $input->param("is_html_$mtt");
288 my $title = shift @title;
289 my $content = shift @content;
290 my $lang = shift @lang;
291 my $letter = C4
::Letters
::getletter
( $oldmodule, $code, $branchcode, $mtt, $lang );
293 # getletter can return the default letter even if we pass a branchcode
294 # If we got the default one and we needed the specific one, we didn't get the one we needed!
295 if ( $letter and $branchcode and $branchcode ne $letter->{branchcode
} ) {
298 unless ( $title and $content ) {
299 # Delete this mtt if no title or content given
300 delete_confirmed
( $branchcode, $oldmodule, $code, $mtt, $lang );
303 elsif ( $letter and $letter->{message_transport_type
} eq $mtt and $letter->{lang
} eq $lang ) {
307 SET branchcode = ?, module = ?, name = ?, is_html = ?, title = ?, content = ?, lang = ?
308 WHERE branchcode = ? AND module = ? AND code = ? AND message_transport_type = ? AND lang = ?
311 $branchcode || '', $module, $name, $is_html || 0, $title, $content, $lang,
312 $branchcode, $oldmodule, $code, $mtt, $lang
316 q{INSERT INTO letter (branchcode,module,code,name,is_html,title,content,message_transport_type, lang) VALUES (?,?,?,?,?,?,?,?,?)},
318 $branchcode || '', $module, $code, $name, $is_html || 0, $title, $content, $mtt, $lang
322 # set up default display
323 default_display
($branchcode);
328 my ($branchcode, $module, $code) = @_;
329 my $dbh = C4
::Context
->dbh;
330 my $letter = C4
::Letters
::getletter
($module, $code, $branchcode);
331 my @values = values %$letter;
338 sub delete_confirmed
{
339 my ($branchcode, $module, $code, $mtt, $lang) = @_;
340 C4
::Letters
::DelLetter
(
342 branchcode
=> $branchcode || '',
349 # setup default display for screen
350 default_display
($branchcode);
354 sub retrieve_letters
{
355 my ($branchcode, $searchstring) = @_;
357 $branchcode = $my_branch if $branchcode && $my_branch;
359 my $dbh = C4
::Context
->dbh;
360 my ($sql, @where, @args);
361 $sql = "SELECT branchcode, module, code, name, branchname
363 LEFT OUTER JOIN branches USING (branchcode)
365 if ($searchstring && $searchstring=~m/(\S+)/) {
366 $searchstring = $1 . q{%};
367 push @where, 'code LIKE ?';
368 push @args, $searchstring;
370 elsif ($branchcode) {
371 push @where, 'branchcode = ?';
372 push @args, $branchcode || '';
375 push @where, "(branchcode = ? OR branchcode = '')";
376 push @args, $my_branch;
379 $sql .= " WHERE ".join(" AND ", @where) if @where;
380 $sql .= " GROUP BY branchcode,module,code,name,branchname";
382 $sql .= " ORDER BY module, code, branchcode";
384 return $dbh->selectall_arrayref($sql, { Slice
=> {} }, @args);
387 sub default_display
{
388 my ($branchcode, $searchfield) = @_;
390 unless ( defined $branchcode ) {
391 if ( C4
::Context
->preference('DefaultToLoggedInLibraryNoticesSlips') ) {
392 $branchcode = C4
::Context
::mybranch
();
396 if ( $searchfield ) {
397 $template->param( search
=> 1 );
399 my $results = retrieve_letters
($branchcode,$searchfield);
402 my $protected_letters = protected_letters
();
403 foreach my $row (@
{$results}) {
404 $row->{protected
} = !$row->{branchcode
} && $protected_letters->{ $row->{code
} };
405 push @
{$loop_data}, $row;
410 letter
=> $loop_data,
411 branchcode
=> $branchcode,
419 for my $table (@tables) {
420 push @fields, get_columns_for
($table);
426 sub get_columns_for
{
428 # FIXME untranslatable
430 aqbooksellers
=> '---BOOKSELLERS---',
431 aqorders
=> '---ORDERS---',
432 serial
=> '---SERIALS---',
433 reserves
=> '---HOLDS---',
434 suggestions
=> '---SUGGESTIONS---',
437 if (exists $column_map{$table} ) {
440 text
=> $column_map{$table} ,
444 my $tlabel = '---' . uc $table;
452 my $sql = "SHOW COLUMNS FROM $table";# TODO not db agnostic
453 my $table_prefix = $table . q
|.|;
454 my $rows = C4
::Context
->dbh->selectall_arrayref($sql, { Slice
=> {} });
455 for my $row (@
{$rows}) {
456 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
458 value
=> $table_prefix . $row->{Field
},
459 text
=> $table_prefix . $row->{Field
},
462 if ($table eq 'borrowers') {
463 my $attribute_types = Koha
::Patron
::Attribute
::Types
->search(
465 { order_by
=> 'code' },
467 while ( my $at = $attribute_types->next ) {
469 value
=> "borrower-attribute:" . $at->code,
470 text
=> "attribute:" . $at->code,