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 C4
::Members
::Attributes
;
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 $dbh = C4
::Context
->dbh;
71 our ( $template, $borrowernumber, $cookie, $staffflags ) = get_template_and_user
(
73 template_name
=> 'tools/letter.tt',
77 flagsrequired
=> { tools
=> 'edit_notices' },
82 our $my_branch = C4
::Context
->preference("IndependentBranches") && !$staffflags->{'superlibrarian'}
83 ? C4
::Context
->userenv()->{'branch'}
85 # we show only the TMPL_VAR names $op
88 independant_branch
=> $my_branch,
89 script_name
=> $script_name,
90 searchfield
=> $searchfield,
91 branchcode
=> $branchcode,
92 action
=> $script_name
95 if ( $op eq 'add_validate' or $op eq 'copy_validate' ) {
97 $op = q{}; # we return to the default screen for the next operation
99 if ($op eq 'copy_form') {
100 my $oldbranchcode = $input->param('oldbranchcode') || q
||;
101 my $branchcode = $input->param('branchcode');
102 add_form
($oldbranchcode, $module, $code);
104 oldbranchcode
=> $oldbranchcode,
105 branchcode
=> $branchcode,
110 elsif ( $op eq 'add_form' ) {
111 add_form
($branchcode, $module, $code);
113 elsif ( $op eq 'delete_confirm' ) {
114 delete_confirm
($branchcode, $module, $code);
116 elsif ( $op eq 'delete_confirmed' ) {
117 delete_confirmed
($branchcode, $module, $code);
118 $op = q{}; # next operation is to return to default screen
121 default_display
($branchcode,$searchfield);
124 # Do this last as delete_confirmed resets
126 $template->param($op => 1);
128 $template->param(no_op_set
=> 1);
131 output_html_with_http_headers
$input, $cookie, $template->output;
134 my ( $branchcode,$module, $code ) = @_;
137 # if code has been passed we can identify letter and its an update action
139 $letters = C4
::Letters
::GetLetterTemplates
(
141 branchcode
=> $branchcode,
148 my $message_transport_types = GetMessageTransportTypes
();
154 branchcode
=> $branchcode,
157 # The letter name is contained into each mtt row.
158 # So we can only sent the first one to the template.
159 for my $mtt ( @
$message_transport_types ) {
161 if ( $first_flag and $letters->{$mtt}{name
} ) {
163 letter_name
=> $letters->{$mtt}{name
},
169 message_transport_type
=> $mtt,
170 is_html
=> $letters->{$mtt}{is_html
},
171 title
=> $letters->{$mtt}{title
},
172 content
=> $letters->{$mtt}{content
}//'',
176 else { # initialize the new fields
177 for my $mtt ( @
$message_transport_types ) {
179 message_transport_type
=> $mtt,
183 branchcode
=> $branchcode,
186 $template->param( adding
=> 1 );
190 letters
=> \
@letter_loop,
194 push @
{$field_selection}, add_fields
('branches');
195 if ($module eq 'reserves') {
196 push @
{$field_selection}, add_fields
('borrowers', 'reserves', 'biblio', 'biblioitems', 'items');
198 elsif ( $module eq 'acquisition' ) {
199 push @
{$field_selection}, add_fields
('aqbooksellers', 'aqorders', 'biblio', 'items');
201 elsif ($module eq 'claimacquisition' || $module eq 'orderacquisition') {
202 push @
{$field_selection}, add_fields
('aqbooksellers', 'aqbasket', 'aqorders', 'biblio', 'biblioitems');
204 elsif ($module eq 'claimissues') {
205 push @
{$field_selection}, add_fields
('aqbooksellers', 'serial', 'subscription');
206 push @
{$field_selection},
209 text
=> '---BIBLIO---'
211 foreach(qw(title author serial)) {
212 push @
{$field_selection}, {value
=> "biblio.$_", text
=> ucfirst $_ };
215 elsif ($module eq 'serial') {
216 push @
{$field_selection}, add_fields
('branches', 'biblio', 'biblioitems', 'borrowers', 'subscription', 'serial');
218 elsif ($module eq 'suggestions') {
219 push @
{$field_selection}, add_fields
('suggestions', 'borrowers', 'biblio');
222 push @
{$field_selection}, add_fields
('biblio','biblioitems'),
224 {value
=> 'items.content', text
=> 'items.content'},
225 {value
=> 'items.fine', text
=> 'items.fine'},
226 add_fields
('borrowers');
227 if ($module eq 'circulation') {
228 push @
{$field_selection}, add_fields
('opac_news');
232 if ( $module eq 'circulation' and $code and $code eq "CHECKIN" ) {
233 push @
{$field_selection}, add_fields
('old_issues');
235 push @
{$field_selection}, add_fields
('issues');
238 if ( $module eq 'circulation' and $code =~ /^AR_/ ) {
239 push @
{$field_selection}, add_fields
('article_requests');
245 SQLfieldnames
=> $field_selection,
246 branchcode
=> $branchcode,
252 my $dbh = C4
::Context
->dbh;
253 my $branchcode = $input->param('branchcode');
254 my $module = $input->param('module');
255 my $oldmodule = $input->param('oldmodule');
256 my $code = $input->param('code');
257 my $name = $input->param('name');
258 my @mtt = $input->multi_param('message_transport_type');
259 my @title = $input->multi_param('title');
260 my @content = $input->multi_param('content');
261 for my $mtt ( @mtt ) {
262 my $is_html = $input->param("is_html_$mtt");
263 my $title = shift @title;
264 my $content = shift @content;
265 my $letter = C4
::Letters
::getletter
( $oldmodule, $code, $branchcode, $mtt);
267 # getletter can return the default letter even if we pass a branchcode
268 # If we got the default one and we needed the specific one, we didn't get the one we needed!
269 if ( $letter and $branchcode and $branchcode ne $letter->{branchcode
} ) {
272 unless ( $title and $content ) {
273 # Delete this mtt if no title or content given
274 delete_confirmed
( $branchcode, $oldmodule, $code, $mtt );
277 elsif ( $letter and $letter->{message_transport_type
} eq $mtt ) {
281 SET branchcode = ?, module = ?, name = ?, is_html = ?, title = ?, content = ?
282 WHERE branchcode = ? AND module = ? AND code = ? AND message_transport_type = ?
285 $branchcode || '', $module, $name, $is_html || 0, $title, $content,
286 $branchcode, $oldmodule, $code, $mtt
290 q{INSERT INTO letter (branchcode,module,code,name,is_html,title,content,message_transport_type) VALUES (?,?,?,?,?,?,?,?)},
292 $branchcode || '', $module, $code, $name, $is_html || 0, $title, $content, $mtt
296 # set up default display
297 default_display
($branchcode);
302 my ($branchcode, $module, $code) = @_;
303 my $dbh = C4
::Context
->dbh;
304 my $letter = C4
::Letters
::getletter
($module, $code, $branchcode);
305 my @values = values %$letter;
312 sub delete_confirmed
{
313 my ($branchcode, $module, $code, $mtt) = @_;
314 C4
::Letters
::DelLetter
(
316 branchcode
=> $branchcode || '',
322 # setup default display for screen
323 default_display
($branchcode);
327 sub retrieve_letters
{
328 my ($branchcode, $searchstring) = @_;
330 $branchcode = $my_branch if $branchcode && $my_branch;
332 my $dbh = C4
::Context
->dbh;
333 my ($sql, @where, @args);
334 $sql = "SELECT branchcode, module, code, name, branchname
336 LEFT OUTER JOIN branches USING (branchcode)
338 if ($searchstring && $searchstring=~m/(\S+)/) {
339 $searchstring = $1 . q{%};
340 push @where, 'code LIKE ?';
341 push @args, $searchstring;
343 elsif ($branchcode) {
344 push @where, 'branchcode = ?';
345 push @args, $branchcode || '';
348 push @where, "(branchcode = ? OR branchcode = '')";
349 push @args, $my_branch;
352 $sql .= " WHERE ".join(" AND ", @where) if @where;
353 $sql .= " GROUP BY branchcode,module,code";
354 $sql .= " ORDER BY module, code, branchcode";
356 return $dbh->selectall_arrayref($sql, { Slice
=> {} }, @args);
359 sub default_display
{
360 my ($branchcode, $searchfield) = @_;
362 unless ( defined $branchcode ) {
363 if ( C4
::Context
->preference('DefaultToLoggedInLibraryNoticesSlips') ) {
364 $branchcode = C4
::Context
::mybranch
();
368 if ( $searchfield ) {
369 $template->param( search
=> 1 );
371 my $results = retrieve_letters
($branchcode,$searchfield);
374 my $protected_letters = protected_letters
();
375 foreach my $row (@
{$results}) {
376 $row->{protected
} = !$row->{branchcode
} && $protected_letters->{ $row->{code
} };
377 push @
{$loop_data}, $row;
382 letter
=> $loop_data,
383 branchcode
=> $branchcode,
391 for my $table (@tables) {
392 push @fields, get_columns_for
($table);
398 sub get_columns_for
{
400 # FIXME untranslatable
402 aqbooksellers
=> '---BOOKSELLERS---',
403 aqorders
=> '---ORDERS---',
404 serial
=> '---SERIALS---',
405 reserves
=> '---HOLDS---',
406 suggestions
=> '---SUGGESTIONS---',
409 if (exists $column_map{$table} ) {
412 text
=> $column_map{$table} ,
416 my $tlabel = '---' . uc $table;
424 my $sql = "SHOW COLUMNS FROM $table";# TODO not db agnostic
425 my $table_prefix = $table . q
|.|;
426 my $rows = C4
::Context
->dbh->selectall_arrayref($sql, { Slice
=> {} });
427 for my $row (@
{$rows}) {
428 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
430 value
=> $table_prefix . $row->{Field
},
431 text
=> $table_prefix . $row->{Field
},
434 if ($table eq 'borrowers') {
435 if ( my $attributes = C4
::Members
::Attributes
::GetAttributes
() ) {
436 foreach (@
$attributes) {
438 value
=> "borrower-attribute:$_",
439 text
=> "attribute:$_",