adding 'gettext' as this is requred by the translation utility
[koha.git] / admin / categorie.pl
1 #!/usr/bin/perl
2
3 #script to administer the categories table
4 #written 20/02/2002 by paul.poulain@free.fr
5
6 # ALGO :
7 # this script use an $op to know what to do.
8 # if $op is empty or none of the above values,
9 #       - the default screen is build (with all records, or filtered datas).
10 #       - the   user can clic on add, modify or delete record.
11 # if $op=add_form
12 #       - if primkey exists, this is a modification,so we read the $primkey record
13 #       - builds the add/modify form
14 # if $op=add_validate
15 #       - the user has just send datas, so we create/modify the record
16 # if $op=delete_form
17 #       - we show the record having primkey=$primkey and ask for deletion validation form
18 # if $op=delete_confirm
19 #       - we delete the record having primkey=$primkey
20
21
22 # Copyright 2000-2002 Katipo Communications
23 #
24 # This file is part of Koha.
25 #
26 # Koha is free software; you can redistribute it and/or modify it under the
27 # terms of the GNU General Public License as published by the Free Software
28 # Foundation; either version 2 of the License, or (at your option) any later
29 # version.
30 #
31 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
32 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
33 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
34 #
35 # You should have received a copy of the GNU General Public License along with
36 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
37 # Suite 330, Boston, MA  02111-1307 USA
38
39 use strict;
40 use CGI;
41 use C4::Context;
42 use C4::Auth;
43 use C4::Output;
44
45 sub StringSearch  {
46         my ($searchstring,$type)=@_;
47         my $dbh = C4::Context->dbh;
48         $searchstring=~ s/\'/\\\'/g;
49         my @data=split(' ',$searchstring);
50         my $count=@data;
51         my $sth=$dbh->prepare("Select * from categories where (description like ?) order by category_type,description,categorycode");
52         $sth->execute("$data[0]%");
53         my @results;
54         while (my $data=$sth->fetchrow_hashref){
55         push(@results,$data);
56         }
57         #  $sth->execute;
58         $sth->finish;
59         return (scalar(@results),\@results);
60 }
61
62 my $input = new CGI;
63 my $searchfield=$input->param('description');
64 my $script_name="/cgi-bin/koha/admin/categorie.pl";
65 my $categorycode=$input->param('categorycode');
66 my $op = $input->param('op');
67
68 my ($template, $loggedinuser, $cookie)
69     = get_template_and_user({template_name => "admin/categorie.tmpl",
70                              query => $input,
71                              type => "intranet",
72                              authnotrequired => 0,
73                              flagsrequired => {parameters => 1},
74                              debug => 1,
75                              });
76
77
78 $template->param(script_name => $script_name,
79                  categorycode => $categorycode,
80                  searchfield => $searchfield);
81
82
83 ################## ADD_FORM ##################################
84 # called by default. Used to create form to add or  modify a record
85 if ($op eq 'add_form') {
86         $template->param(add_form => 1);
87         
88         #---- if primkey exists, it's a modify action, so read values to modify...
89         my $data;
90         if ($categorycode) {
91                 my $dbh = C4::Context->dbh;
92                 my $sth=$dbh->prepare("select categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,enrolmentfee,issuelimit,reservefee,overduenoticerequired,category_type from categories where categorycode=?");
93                 $sth->execute($categorycode);
94                 $data=$sth->fetchrow_hashref;
95                 $sth->finish;
96         }
97
98         $template->param(description        => $data->{'description'},
99                                 enrolmentperiod         => $data->{'enrolmentperiod'},
100                                 upperagelimit           => $data->{'upperagelimit'},
101                                 dateofbirthrequired     => $data->{'dateofbirthrequired'},
102                                 enrolmentfee            => sprintf("%.2f",$data->{'enrolmentfee'}),
103                                 overduenoticerequired   => $data->{'overduenoticerequired'},
104                                 issuelimit              => $data->{'issuelimit'},
105                                 reservefee              => sprintf("%.2f",$data->{'reservefee'}),
106                                 category_type           => $data->{'category_type'},
107                                 "type_".$data->{'category_type'} => 1,
108                                 );
109                                                                                                         # END $OP eq ADD_FORM
110 ################## ADD_VALIDATE ##################################
111 # called by add_form, used to insert/modify data in DB
112 } elsif ($op eq 'add_validate') {
113         $template->param(add_validate => 1);
114         my $is_a_modif = $input->param("is_a_modif");
115         my $dbh = C4::Context->dbh;
116         if ($is_a_modif) {
117             my $sth=$dbh->prepare("UPDATE categories SET description=?,enrolmentperiod=?,upperagelimit=?,dateofbirthrequired=?,enrolmentfee=?,reservefee=?,overduenoticerequired=?,category_type=? WHERE categorycode=?");
118             $sth->execute(map { $input->param($_) } ('description','enrolmentperiod','upperagelimit','dateofbirthrequired','enrolmentfee','reservefee','overduenoticerequired','category_type','categorycode'));
119             $sth->finish;
120         } else {
121             my $sth=$dbh->prepare("INSERT INTO categories  (categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,enrolmentfee,reservefee,overduenoticerequired,category_type) values (?,?,?,?,?,?,?,?,?)");
122             $sth->execute(map { $input->param($_) } ('categorycode','description','enrolmentperiod','upperagelimit','dateofbirthrequired','enrolmentfee','reservefee','overduenoticerequired','category_type'));
123             $sth->finish;
124         }
125         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=categorie.pl\"></html>";
126         exit;
127
128                                                                                                         # END $OP eq ADD_VALIDATE
129 ################## DELETE_CONFIRM ##################################
130 # called by default form, used to confirm deletion of data in DB
131 } elsif ($op eq 'delete_confirm') {
132         $template->param(delete_confirm => 1);
133
134         my $dbh = C4::Context->dbh;
135         my $sth=$dbh->prepare("select count(*) as total from borrowers where categorycode=?");
136         $sth->execute($categorycode);
137         my $total = $sth->fetchrow_hashref;
138         $sth->finish;
139         $template->param(total => $total->{'total'});
140         
141         my $sth2=$dbh->prepare("select categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,enrolmentfee,issuelimit,reservefee,overduenoticerequired,category_type from categories where categorycode=?");
142         $sth2->execute($categorycode);
143         my $data=$sth2->fetchrow_hashref;
144         $sth2->finish;
145         if ($total->{'total'} >0) {
146                 $template->param(totalgtzero => 1);
147         }
148
149         $template->param(description             => $data->{'description'},
150                                 enrolmentperiod         => $data->{'enrolmentperiod'},
151                                 upperagelimit           => $data->{'upperagelimit'},
152                                 dateofbirthrequired     => $data->{'dateofbirthrequired'},
153                                 enrolmentfee            =>  sprintf("%.2f",$data->{'enrolmentfee'}),
154                                 overduenoticerequired   => $data->{'overduenoticerequired'},
155                                 issuelimit              => $data->{'issuelimit'},
156                                 reservefee              =>  sprintf("%.2f",$data->{'reservefee'}),
157                                 category_type           => $data->{'category_type'},
158                                 );
159                                                                                                         # END $OP eq DELETE_CONFIRM
160 ################## DELETE_CONFIRMED ##################################
161 # called by delete_confirm, used to effectively confirm deletion of data in DB
162 } elsif ($op eq 'delete_confirmed') {
163         $template->param(delete_confirmed => 1);
164         my $dbh = C4::Context->dbh;
165         my $categorycode=uc($input->param('categorycode'));
166         my $sth=$dbh->prepare("delete from categories where categorycode=?");
167         $sth->execute($categorycode);
168         $sth->finish;
169         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=categorie.pl\"></html>";
170         exit;
171
172                                                                                                         # END $OP eq DELETE_CONFIRMED
173 } else { # DEFAULT
174         $template->param(else => 1);
175         my @loop;
176         my ($count,$results)=StringSearch($searchfield,'web');
177         my $toggle = 0;
178         for (my $i=0; $i < $count; $i++){
179                 my %row = (categorycode => $results->[$i]{'categorycode'},
180                                 description => $results->[$i]{'description'},
181                                 enrolmentperiod => $results->[$i]{'enrolmentperiod'},
182                                 upperagelimit => $results->[$i]{'upperagelimit'},
183                                 dateofbirthrequired => $results->[$i]{'dateofbirthrequired'},
184                                 enrolmentfee => sprintf("%.2f",$results->[$i]{'enrolmentfee'}),
185                                 overduenoticerequired => $results->[$i]{'overduenoticerequired'},
186                                 issuelimit => $results->[$i]{'issuelimit'},
187                                 reservefee => sprintf("%.2f",$results->[$i]{'reservefee'}),
188                                 category_type => $results->[$i]{'category_type'},
189                                 "type_".$results->[$i]{'category_type'} => 1,
190                                 toggle => $toggle );
191                 push @loop, \%row;
192                 if ( $toggle eq 0 )
193                 {
194                         $toggle = 1;
195                 }
196                 else
197                 {
198                         $toggle = 0;
199                 }
200         }
201         $template->param(loop => \@loop);
202         # check that I (institution) and C (child) exists. otherwise => warning to the user
203         my $dbh = C4::Context->dbh;
204         my $sth=$dbh->prepare("select category_type from categories where category_type='C'");
205         $sth->execute;
206         my ($categoryChild) = $sth->fetchrow;
207         $template->param(categoryChild => $categoryChild);
208         $sth=$dbh->prepare("select category_type from categories where category_type='I'");
209         $sth->execute;
210         my ($categoryInstitution) = $sth->fetchrow;
211         $template->param(categoryInstitution => $categoryInstitution);
212         $sth->finish;
213
214
215 } #---- END $OP eq DEFAULT
216 output_html_with_http_headers $input, $cookie, $template->output;
217