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 under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
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
49 use C4
::Branch
; # GetBranches
50 use C4
::Members
::Attributes
;
52 # _letter_from_where($branchcode,$module, $code)
53 # - return FROM WHERE clause and bind args for a letter
54 sub _letter_from_where
{
55 my ($branchcode, $module, $code) = @_;
56 my $sql = q{FROM letter WHERE branchcode = ? AND module = ? AND code = ?};
57 my @args = ($branchcode || '', $module, $code);
58 # Mysql is retarded. cause branchcode is part of the primary key it cannot be null. How does that
59 # work with foreign key constraint I wonder...
62 # $sql .= " AND branchcode = ?";
63 # push @args, $branchcode;
65 # $sql .= " AND branchcode IS NULL";
68 return ($sql, \
@args);
71 # letter_exists($branchcode,$module, $code)
72 # - return true if a letter with the given $branchcode, $module and $code exists
74 my ($sql, $args) = _letter_from_where
(@_);
75 my $dbh = C4
::Context
->dbh;
76 my $letter = $dbh->selectrow_hashref("SELECT * $sql", undef, @
$args);
80 # $protected_letters = protected_letters()
81 # - return a hashref of letter_codes representing letters that should never be deleted
82 sub protected_letters
{
83 my $dbh = C4
::Context
->dbh;
84 my $codes = $dbh->selectall_arrayref(q{SELECT DISTINCT letter_code FROM message_transports});
85 return { map { $_->[0] => 1 } @
{$codes} };
89 my $searchfield = $input->param('searchfield');
90 my $script_name = '/cgi-bin/koha/tools/letter.pl';
91 our $branchcode = $input->param('branchcode');
92 my $code = $input->param('code');
93 my $module = $input->param('module');
94 my $content = $input->param('content');
95 my $op = $input->param('op') || '';
96 my $dbh = C4
::Context
->dbh;
98 our ( $template, $borrowernumber, $cookie, $staffflags ) = get_template_and_user
(
100 template_name
=> 'tools/letter.tmpl',
103 authnotrequired
=> 0,
104 flagsrequired
=> { tools
=> 'edit_notices' },
109 our $my_branch = C4
::Context
->preference("IndependantBranches") && !$staffflags->{'superlibrarian'}
110 ? C4
::Context
->userenv()->{'branch'}
112 # we show only the TMPL_VAR names $op
115 independant_branch
=> $my_branch,
116 script_name
=> $script_name,
117 searchfield
=> $searchfield,
118 action
=> $script_name
126 if ($op eq 'add_form') {
127 add_form
($branchcode, $module, $code);
129 elsif ( $op eq 'add_validate' ) {
131 $op = q{}; # next operation is to return to default screen
133 elsif ( $op eq 'delete_confirm' ) {
134 delete_confirm
($branchcode, $module, $code);
136 elsif ( $op eq 'delete_confirmed' ) {
137 delete_confirmed
($branchcode, $module, $code);
138 $op = q{}; # next operation is to return to default screen
141 default_display
($branchcode,$searchfield);
144 # Do this last as delete_confirmed resets
146 $template->param($op => 1);
148 $template->param(no_op_set
=> 1);
151 output_html_with_http_headers
$input, $cookie, $template->output;
154 my ($branchcode,$module, $code ) = @_;
157 # if code has been passed we can identify letter and its an update action
159 $letter = letter_exists
($branchcode,$module, $code);
162 $template->param( modify
=> 1 );
163 $template->param( code
=> $letter->{code
} );
165 else { # initialize the new fields
167 branchcode
=> $branchcode,
170 $template->param( adding
=> 1 );
174 push @
{$field_selection}, add_fields
('branches');
175 if ($module eq 'reserves') {
176 push @
{$field_selection}, add_fields
('borrowers', 'reserves', 'biblio', 'items');
178 elsif ($module eq 'claimacquisition') {
179 push @
{$field_selection}, add_fields
('aqbooksellers', 'aqorders', 'biblio', 'biblioitems');
181 elsif ($module eq 'claimissues') {
182 push @
{$field_selection}, add_fields
('aqbooksellers', 'serial', 'subscription');
183 push @
{$field_selection},
186 text
=> '---BIBLIO---'
188 foreach(qw(title author serial)) {
189 push @
{$field_selection}, {value
=> "biblio.$_", text
=> ucfirst $_ };
192 elsif ($module eq 'suggestions') {
193 push @
{$field_selection}, add_fields
('suggestions', 'borrowers', 'biblio');
196 push @
{$field_selection}, add_fields
('biblio','biblioitems'),
197 {value
=> q{}, text
=> '---ITEMS---' },
198 {value
=> 'items.content', text
=> 'items.content'},
199 add_fields
('borrowers');
200 if ($module eq 'circulation') {
201 push @
{$field_selection}, add_fields
('opac_news');
205 if ( $module eq 'circulation' && $code eq "CHECKIN" ) {
206 push @
{$field_selection}, add_fields
('old_issues');
208 push @
{$field_selection}, add_fields
('issues');
213 branchcode
=> $letter->{branchcode
},
214 name
=> $letter->{name
},
215 is_html
=> $letter->{is_html
},
216 title
=> $letter->{title
},
217 content
=> $letter->{content
},
220 branchloop
=> _branchloop
($branchcode),
221 SQLfieldname
=> $field_selection,
227 my $dbh = C4
::Context
->dbh;
228 my $oldbranchcode = $input->param('oldbranchcode');
229 my $branchcode = $input->param('branchcode') || '';
230 my $module = $input->param('module');
231 my $oldmodule = $input->param('oldmodule');
232 my $code = $input->param('code');
233 my $name = $input->param('name');
234 my $is_html = $input->param('is_html');
235 my $title = $input->param('title');
236 my $content = $input->param('content');
237 if (letter_exists
($oldbranchcode,$oldmodule, $code)) {
239 q{UPDATE letter SET branchcode = ?, module = ?, name = ?, is_html = ?, title = ?, content = ? WHERE branchcode = ? AND module = ? AND code = ?},
241 $branchcode, $module, $name, $is_html || 0, $title, $content,
242 $oldbranchcode, $oldmodule, $code
246 q{INSERT INTO letter (branchcode,module,code,name,is_html,title,content) VALUES (?,?,?,?,?,?,?)},
248 $branchcode, $module, $code, $name, $is_html || 0, $title, $content
251 # set up default display
252 default_display
($branchcode);
256 my $dbh = C4
::Context
->dbh;
257 my $oldbranchcode = $input->param('oldbranchcode');
258 my $branchcode = $input->param('branchcode');
259 my $module = $input->param('module');
260 my $code = $input->param('code');
262 return if letter_exists
($branchcode,$module, $code);
264 my $old_letter = letter_exists
($oldbranchcode,$module, $code);
267 q{INSERT INTO letter (branchcode,module,code,name,is_html,title,content) VALUES (?,?,?,?,?,?,?)},
269 $branchcode, $module, $code, $old_letter->{name
}, $old_letter->{is_html
}, $old_letter->{title
}, $old_letter->{content
}
274 my ($branchcode, $module, $code) = @_;
275 my $dbh = C4
::Context
->dbh;
276 my $letter = letter_exists
($branchcode, $module, $code);
277 $template->param( branchcode
=> $branchcode, branchname
=> GetBranchName
($branchcode) );
278 $template->param( code
=> $code );
279 $template->param( module
=> $module);
280 $template->param( name
=> $letter->{name
});
284 sub delete_confirmed
{
285 my ($branchcode, $module, $code) = @_;
286 my ($sql, $args) = _letter_from_where
($branchcode, $module, $code);
287 my $dbh = C4
::Context
->dbh;
288 $dbh->do("DELETE $sql", undef, @
$args);
289 # setup default display for screen
290 default_display
($branchcode);
294 sub retrieve_letters
{
295 my ($branchcode, $searchstring) = @_;
297 $branchcode = $my_branch if $branchcode && $my_branch;
299 my $dbh = C4
::Context
->dbh;
300 my ($sql, @where, @args);
301 $sql = "SELECT branchcode, module, code, name, branchname
303 LEFT OUTER JOIN branches USING (branchcode)";
304 if ($searchstring && $searchstring=~m/(\S+)/) {
305 $searchstring = $1 . q{%};
306 push @where, 'code LIKE ?';
307 push @args, $searchstring;
309 elsif ($branchcode) {
310 push @where, 'branchcode = ?';
311 push @args, $branchcode || '';
314 push @where, "(branchcode = ? OR branchcode = '')";
315 push @args, $my_branch;
318 $sql .= " WHERE ".join(" AND ", @where) if @where;
319 $sql .= " ORDER BY module, code, branchcode";
320 # use Data::Dumper; die Dumper($sql, \@args);
321 return $dbh->selectall_arrayref($sql, { Slice
=> {} }, @args);
324 sub default_display
{
325 my ($branchcode, $searchfield) = @_;
327 if ( $searchfield ) {
328 $template->param( search
=> 1 );
330 my $results = retrieve_letters
($branchcode,$searchfield);
333 my $protected_letters = protected_letters
();
334 foreach my $row (@
{$results}) {
335 $row->{protected
} = !$row->{branchcode
} && $protected_letters->{ $row->{code
} };
336 push @
{$loop_data}, $row;
341 letter
=> $loop_data,
342 branchloop
=> _branchloop
($branchcode),
347 my ($branchcode) = @_;
349 my $branches = GetBranches
();
351 for my $thisbranch (sort { $branches->{$a}->{branchname
} cmp $branches->{$b}->{branchname
} } keys %$branches) {
353 value
=> $thisbranch,
354 selected
=> $branchcode && $thisbranch eq $branchcode,
355 branchname
=> $branches->{$thisbranch}->{'branchname'},
366 for my $table (@tables) {
367 push @fields, get_columns_for
($table);
373 sub get_columns_for
{
375 # FIXME untranslateable
377 aqbooksellers
=> '---BOOKSELLERS---',
378 aqorders
=> '---ORDERS---',
379 serial
=> '---SERIALS---',
380 reserves
=> '---HOLDS---',
381 suggestions
=> '---SUGGESTIONS---',
384 if (exists $column_map{$table} ) {
387 text
=> $column_map{$table} ,
391 my $tlabel = '---' . uc $table;
399 my $sql = "SHOW COLUMNS FROM $table";# TODO not db agnostic
400 my $table_prefix = $table . q
|.|;
401 my $rows = C4
::Context
->dbh->selectall_arrayref($sql, { Slice
=> {} });
402 for my $row (@
{$rows}) {
403 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
405 value
=> $table_prefix . $row->{Field
},
406 text
=> $table_prefix . $row->{Field
},
409 if ($table eq 'borrowers') {
410 if ( my $attributes = C4
::Members
::Attributes
::GetAttributes
() ) {
411 foreach (@
$attributes) {
413 value
=> "borrower-attribute:$_",
414 text
=> "attribute:$_",