Bug 9456: (follow-up) remove whitespaces and tab
[koha.git] / admin / branches.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 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
10 # version.
11 #
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.
15 #
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.
19
20 =head1 branches.pl
21
22  FIXME: individual fields in branch address need to be exported to templates,
23         in order to fix bug 180; need to notify translators
24  FIXME: looped html (e.g., list of checkboxes) need to be properly
25         TMPL_LOOP'ized; doing this properly will fix bug 130; need to
26         notify translators
27  FIXME: need to implement the branch categories stuff
28  FIXME: there are too many TMPL_IF's; the proper way to do it is to have
29         separate templates for each individual action; need to notify
30         translators
31  FIXME: there are lots of error messages exported to the template; a lot
32         of these should be converted into exported booleans / counters etc
33         so that the error messages can be localized; need to notify translators
34
35  Finlay working on this file from 26-03-2002
36  Reorganising this branches admin page.....
37
38 =cut
39
40 use strict;
41 use warnings;
42 use CGI;
43 use C4::Auth;
44 use C4::Context;
45 use C4::Output;
46 use C4::Koha;
47 use C4::Branch;
48
49 # Fixed variables
50 my $script_name = "/cgi-bin/koha/admin/branches.pl";
51
52 ################################################################################
53 # Main loop....
54 my $input        = new CGI;
55 my $branchcode   = $input->param('branchcode');
56 my $branchname   = $input->param('branchname');
57 my $categorycode = $input->param('categorycode');
58 my $op           = $input->param('op') || '';
59
60 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
61     {
62         template_name   => "admin/branches.tmpl",
63         query           => $input,
64         type            => "intranet",
65         authnotrequired => 0,
66         flagsrequired   => { parameters => 'parameters_remaining_permissions'},
67         debug           => 1,
68     }
69 );
70 $template->param(
71      script_name => $script_name,
72      action      => $script_name,
73 );
74 $template->param( ($op || 'else') => 1 );
75
76 if ( $op eq 'add' ) {
77
78     # If the user has pressed the "add new branch" button.
79     $template->param( 'heading_branches_add_branch_p' => 1 );
80     editbranchform($branchcode,$template);
81
82 }
83 elsif ( $op eq 'edit' ) {
84
85     # if the user has pressed the "edit branch settings" button.
86     $template->param( 'heading_branches_add_branch_p' => 0,
87                         'add' => 1, );
88     editbranchform($branchcode,$template);
89 }
90 elsif ( $op eq 'add_validate' ) {
91
92     # confirm settings change...
93     my $params = $input->Vars;
94     unless ( $params->{'branchcode'} && $params->{'branchname'} ) {
95         $template->param( else => 1 );
96         default("MESSAGE1",$template);
97     }
98     else {
99         my $mod_branch = 1;
100         if ($params->{add}) {
101             my ($existing) =
102                 C4::Context->dbh->selectrow_array("SELECT count(*) FROM branches WHERE branchcode = ?", {}, $branchcode);
103             if ($existing > 0) {
104                 $mod_branch = 0;
105                 _branch_to_template($params, $template); # preserve most (FIXME) of user's input
106                 $template->param( 'heading_branches_add_branch_p' => 1, 'add' => 1, 'ERROR1' => 1 );
107             }
108         }
109         if ($mod_branch) {
110             my $error = ModBranch($params); # FIXME: causes warnings to log on duplicate branchcode
111             # if error saving, stay on edit and rise error
112             if ($error) {
113                 # copy input parameters back to form
114                 # FIXME - doing this doesn't preserve any branch group selections, but good enough for now
115                 editbranchform($branchcode,$template);
116                 $template->param( 'heading_branches_add_branch_p' => 1, 'add' => 1, "ERROR$error" => 1 );
117             } else {
118                 $template->param( else => 1);
119                 default("MESSAGE2",$template);
120             }
121         }
122     }
123 }
124 elsif ( $op eq 'delete' ) {
125     # if the user has pressed the "delete branch" button.
126     
127     # check to see if the branchcode is being used in the database somewhere....
128     my $dbh = C4::Context->dbh;
129     my $sthitems     = $dbh->prepare("select count(*) from items where holdingbranch=? or homebranch=?");
130     my $sthborrowers = $dbh->prepare("select count(*) from borrowers where branchcode=?");
131     $sthitems->execute( $branchcode, $branchcode );
132     $sthborrowers->execute( $branchcode );
133     my ($totalitems)     = $sthitems->fetchrow_array;
134     my ($totalborrowers) = $sthborrowers->fetchrow_array;
135     if ($totalitems && !$totalborrowers) {
136         $template->param( else => 1 );
137         default("MESSAGE10", $template);
138     }
139     elsif (!$totalitems && $totalborrowers){
140         $template->param( else => 1 );
141         default("MESSAGE11", $template);
142     }
143     elsif ($totalitems && $totalborrowers){
144         $template->param( else => 1 );
145         default("MESSAGE7", $template);
146     }
147     else {
148         $template->param( delete_confirm => 1 );
149         $template->param( branchname     => $branchname );
150         $template->param( branchcode     => $branchcode );
151     }
152 }
153 elsif ( $op eq 'delete_confirmed' ) {
154
155     # actually delete branch and return to the main screen....
156     DelBranch($branchcode);
157     $template->param( else => 1 );
158     default("MESSAGE3",$template);
159 }
160 elsif ( $op eq 'editcategory' ) {
161
162     # If the user has pressed the "add new category" or "modify" buttons.
163     $template->param( 'heading_branches_edit_category_p' => 1 );
164     editcatform($categorycode,$template);
165 }
166 elsif ( $op eq 'addcategory_validate' ) {
167
168     $template->param( else => 1 );
169     # confirm settings change...
170     my $params = $input->Vars;
171     $params->{'show_in_pulldown'} = ( $params->{'show_in_pulldown'} eq 'on' ) ? 1 : 0;
172
173     unless ( $params->{'categorycode'} && $params->{'categoryname'} ) {
174         default("MESSAGE4",$template);
175     }
176     elsif ($input->param('add')){
177         # doing an add must check the code is unique
178         if (CheckCategoryUnique($input->param('categorycode'))){
179             ModBranchCategoryInfo($params);
180         default("MESSAGE5",$template);
181         }
182         else {
183             default("MESSAGE9",$template);
184         }
185     }
186     else {
187         ModBranchCategoryInfo($params);
188         default("MESSAGE5",$template);
189     }
190 }
191 elsif ( $op eq 'delete_category' ) {
192
193     # if the user has pressed the "delete branch" button.
194     if ( CheckBranchCategorycode($categorycode) ) {
195         $template->param( else => 1 );
196         default( 'MESSAGE8', $template );
197     } else {
198         $template->param( delete_category => 1 );
199         $template->param( categorycode    => $categorycode );
200     }
201 }
202 elsif ( $op eq 'categorydelete_confirmed' ) {
203
204     # actually delete branch and return to the main screen....
205     DelBranchCategory($categorycode);
206     $template->param( else => 1 );
207     default("MESSAGE6",$template);
208
209 }
210 else {
211     # if no operation has been set...
212     default("",$template);
213 }
214
215 ################################################################################
216 #
217 # html output functions....
218
219 sub default {
220     my $message       = shift || '';
221     my $innertemplate = shift or return;
222     $innertemplate->param($message => 1) if $message;
223     $innertemplate->param(
224         'heading_branches_p' => 1,
225     );
226     branchinfotable("",$innertemplate);
227 }
228
229 sub editbranchform {
230     my ($branchcode,$innertemplate) = @_;
231     # initiate the scrolling-list to select the printers
232     my $printers = GetPrinters();
233     my @printerloop;
234     my $data;
235     my $oldprinter = "";
236
237
238     # make the checkboxes.....
239     my $catinfo = GetBranchCategories();
240
241     if ($branchcode) {
242         $data = GetBranchInfo($branchcode);
243         $data = $data->[0];
244         if ( exists $data->{categories} ) {
245             # Set the selected flag for the categories of this branch
246             $catinfo = [
247                 map {
248                     my $catcode = $_->{categorycode};
249                     if ( grep {/$catcode/} @{$data->{categories}} ){
250                         $_->{selected} = 1;
251                     }
252                     $_;
253                 } @{$catinfo}
254             ];
255         }
256
257         # get the old printer of the branch
258         $oldprinter = $data->{'branchprinter'} || '';
259         _branch_to_template($data, $innertemplate);
260     }
261     $innertemplate->param( categoryloop => $catinfo );
262
263     foreach my $thisprinter ( keys %$printers ) {
264         push @printerloop, {
265             value         => $thisprinter,
266             selected      => ( $oldprinter eq $printers->{$thisprinter} ),
267             branchprinter => $printers->{$thisprinter}->{'printqueue'},
268         };
269     }
270
271     $innertemplate->param( printerloop => \@printerloop );
272
273     for my $obsolete ( 'categoryname', 'categorycode', 'codedescription' ) {
274         $innertemplate->param(
275             $obsolete => 'Your template is out of date (bug 130)' );
276     }
277 }
278
279 sub editcatform {
280
281     # prepares the edit form...
282     my ($categorycode,$innertemplate) = @_;
283     # warn "cat : $categorycode";
284         my @cats;
285     my $data;
286         if ($categorycode) {
287         my $data = GetBranchCategory($categorycode);
288         $innertemplate->param(
289             categorycode    => $data->{'categorycode'},
290             categoryname    => $data->{'categoryname'},
291             codedescription => $data->{'codedescription'},
292             show_in_pulldown => $data->{'show_in_pulldown'},
293                 );
294     }
295         for my $ctype (GetCategoryTypes()) {
296                 push @cats , { type => $ctype , selected => ($data->{'categorytype'} and $data->{'categorytype'} eq $ctype) };
297         }
298     $innertemplate->param(categorytype => \@cats);
299 }
300
301 sub branchinfotable {
302
303 # makes the html for a table of branch info from reference to an array of hashs.
304
305     my ($branchcode,$innertemplate) = @_;
306     my $branchinfo = $branchcode ? GetBranchInfo($branchcode) : GetBranchInfo();
307     my @loop_data = ();
308     foreach my $branch (@$branchinfo) {
309         #
310         # We export the following fields to the template. These are not
311         # pre-composed as a single "address" field because the template
312         # might (and should) escape what is exported here. (See bug 180)
313         #
314         # - branch_name     (Note: not "branchname")
315         # - branch_code     (Note: not "branchcode")
316         # - address         (containing a static error message)
317         # - branchaddress1 \
318         # - branchaddress2  |
319         # - branchaddress3  | comprising the old "address" field
320         # - branchzip       |
321         # - branchcity      |
322         # - branchcountry   |
323         # - branchphone     |
324         # - branchfax       |
325         # - branchemail    /
326         # - branchurl      /
327         # - opac_info (can contain HTML)
328         # - address-empty-p (1 if no address information, 0 otherwise)
329         # - categories      (containing a static error message)
330         # - category_list   (loop containing "categoryname")
331         # - no-categories-p (1 if no categories set, 0 otherwise)
332         # - value
333         #
334         my %row = ();
335
336         # Handle address fields separately
337         my $address_empty_p = 1;
338         for my $field (
339             'branchaddress1', 'branchaddress2',
340             'branchaddress3', 'branchzip',
341             'branchcity', 'branchstate', 'branchcountry',
342             'branchphone', 'branchfax',
343             'branchemail', 'branchurl', 'opac_info',
344             'branchip',       'branchprinter', 'branchnotes'
345           )
346         {
347             $row{$field} = $branch->{$field};
348             $address_empty_p = 0 if ( $branch->{$field} );
349         }
350         $row{'address-empty-p'} = $address_empty_p;
351
352         # Handle categories
353         my $no_categories_p = 1;
354         my @categories;
355         foreach my $cat ( @{ $branch->{'categories'} } ) {
356             my $catinfo = GetBranchCategory($cat);
357             push @categories, { 'categoryname' => $catinfo->{'categoryname'} };
358             $no_categories_p = 0;
359         }
360
361         $row{'category_list'}   = \@categories;
362         $row{'no-categories-p'} = $no_categories_p;
363         $row{'branch_name'} = $branch->{'branchname'};
364         $row{'branch_code'} = $branch->{'branchcode'};
365         $row{'value'}       = $branch->{'branchcode'};
366
367         push @loop_data, \%row;
368     }
369     my @branchcategories = ();
370         for my $ctype ( GetCategoryTypes() ) {
371         my $catinfo = GetBranchCategories($ctype);
372         my @categories;
373                 foreach my $cat (@$catinfo) {
374             push @categories, {
375                 categoryname    => $cat->{'categoryname'},
376                 categorycode    => $cat->{'categorycode'},
377                 codedescription => $cat->{'codedescription'},
378                 categorytype    => $cat->{'categorytype'},
379             };
380         }
381         push @branchcategories, { categorytype => $ctype , $ctype => 1 , catloop => ( @categories ? \@categories : undef) };
382         }
383     $innertemplate->param(
384         branches         => \@loop_data,
385         branchcategories => \@branchcategories
386     );
387
388 }
389
390 sub _branch_to_template {
391     my ($data, $template) = @_;
392     $template->param( 
393          branchcode     => $data->{'branchcode'},
394          branch_name    => $data->{'branchname'},
395          branchaddress1 => $data->{'branchaddress1'},
396          branchaddress2 => $data->{'branchaddress2'},
397          branchaddress3 => $data->{'branchaddress3'},
398          branchzip      => $data->{'branchzip'},
399          branchcity     => $data->{'branchcity'},
400          branchstate    => $data->{'branchstate'},
401          branchcountry  => $data->{'branchcountry'},
402          branchphone    => $data->{'branchphone'},
403          branchfax      => $data->{'branchfax'},
404          branchemail    => $data->{'branchemail'},
405          branchurl      => $data->{'branchurl'},
406          opac_info      => $data->{'opac_info'},
407          branchip       => $data->{'branchip'},
408          branchnotes    => $data->{'branchnotes'}, 
409     );
410 }
411
412 output_html_with_http_headers $input, $cookie, $template->output;
413
414 # Local Variables:
415 # tab-width: 8
416 # End: