Adding Version variable to systempreferences.
[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::Output;
43
44 use C4::Auth;
45 use C4::Interface::CGI::Output;
46
47 sub StringSearch  {
48         my ($env,$searchstring,$type)=@_;
49         my $dbh = C4::Context->dbh;
50         $searchstring=~ s/\'/\\\'/g;
51         my @data=split(' ',$searchstring);
52         my $count=@data;
53         my $sth=$dbh->prepare("Select * from categories where (description like ?) order by category_type,description");
54         $sth->execute("$data[0]%");
55         my @results;
56         while (my $data=$sth->fetchrow_hashref){
57         push(@results,$data);
58         }
59         #  $sth->execute;
60         $sth->finish;
61         return (scalar(@results),\@results);
62 }
63
64 my $input = new CGI;
65 my $searchfield=$input->param('description');
66 my $script_name="/cgi-bin/koha/admin/categorie.pl";
67 my $categorycode=$input->param('categorycode');
68 my $op = $input->param('op');
69
70 my ($template, $loggedinuser, $cookie)
71     = get_template_and_user({template_name => "admin/categorie.tmpl",
72                              query => $input,
73                              type => "intranet",
74                              authnotrequired => 0,
75                              flagsrequired => {parameters => 1},
76                              debug => 1,
77                              });
78
79
80 $template->param(script_name => $script_name,
81                  categorycode => $categorycode,
82                  searchfield => $searchfield);
83
84
85 ################## ADD_FORM ##################################
86 # called by default. Used to create form to add or  modify a record
87 if ($op eq 'add_form') {
88         $template->param(add_form => 1);
89         
90         #---- if primkey exists, it's a modify action, so read values to modify...
91         my $data;
92         if ($categorycode) {
93                 my $dbh = C4::Context->dbh;
94                 my $sth=$dbh->prepare("select categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,enrolmentfee,issuelimit,reservefee,overduenoticerequired,category_type from categories where categorycode=?");
95                 $sth->execute($categorycode);
96                 $data=$sth->fetchrow_hashref;
97                 $sth->finish;
98         }
99
100         $template->param(description        => $data->{'description'},
101                                 enrolmentperiod         => $data->{'enrolmentperiod'},
102                                 upperagelimit           => $data->{'upperagelimit'},
103                                 dateofbirthrequired     => $data->{'dateofbirthrequired'},
104                                 enrolmentfee            => sprintf("%.2f",$data->{'enrolmentfee'}),
105                                 overduenoticerequired   => $data->{'overduenoticerequired'},
106                                 issuelimit              => $data->{'issuelimit'},
107                                 reservefee              => sprintf("%.2f",$data->{'reservefee'}),
108                                 category_type           => $data->{'category_type'},
109                                 "type_".$data->{'category_type'} => " SELECTED ",
110                                 );
111                                                                                                         # END $OP eq ADD_FORM
112 ################## ADD_VALIDATE ##################################
113 # called by add_form, used to insert/modify data in DB
114 } elsif ($op eq 'add_validate') {
115         $template->param(add_validate => 1);
116         my $dbh = C4::Context->dbh;
117         my $sth=$dbh->prepare("replace categories (categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,enrolmentfee,reservefee,overduenoticerequired,category_type) values (?,?,?,?,?,?,?,?,?)");
118         $sth->execute(map { $input->param($_) } ('categorycode','description','enrolmentperiod','upperagelimit','dateofbirthrequired','enrolmentfee','reservefee','overduenoticerequired','category_type'));
119         $sth->finish;
120         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=categorie.pl\"></html>";
121         exit;
122
123                                                                                                         # END $OP eq ADD_VALIDATE
124 ################## DELETE_CONFIRM ##################################
125 # called by default form, used to confirm deletion of data in DB
126 } elsif ($op eq 'delete_confirm') {
127         $template->param(delete_confirm => 1);
128
129         my $dbh = C4::Context->dbh;
130         my $sth=$dbh->prepare("select count(*) as total from borrowers where categorycode=?");
131         $sth->execute($categorycode);
132         my $total = $sth->fetchrow_hashref;
133         $sth->finish;
134         $template->param(total => $total->{'total'});
135         
136         my $sth2=$dbh->prepare("select categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,enrolmentfee,issuelimit,reservefee,overduenoticerequired,category_type from categories where categorycode=?");
137         $sth2->execute($categorycode);
138         my $data=$sth2->fetchrow_hashref;
139         $sth2->finish;
140         if ($total->{'total'} >0) {
141                 $template->param(totalgtzero => 1);
142         }
143
144         $template->param(description             => $data->{'description'},
145                                 enrolmentperiod         => $data->{'enrolmentperiod'},
146                                 upperagelimit           => $data->{'upperagelimit'},
147                                 dateofbirthrequired     => $data->{'dateofbirthrequired'},
148                                 enrolmentfee            =>  sprintf("%.2f",$data->{'enrolmentfee'}),
149                                 overduenoticerequired   => $data->{'overduenoticerequired'},
150                                 issuelimit              => $data->{'issuelimit'},
151                                 reservefee              =>  sprintf("%.2f",$data->{'reservefee'}),
152                                 category_type           => $data->{'category_type'},
153                                 );
154                                                                                                         # END $OP eq DELETE_CONFIRM
155 ################## DELETE_CONFIRMED ##################################
156 # called by delete_confirm, used to effectively confirm deletion of data in DB
157 } elsif ($op eq 'delete_confirmed') {
158         $template->param(delete_confirmed => 1);
159         my $dbh = C4::Context->dbh;
160         my $categorycode=uc($input->param('categorycode'));
161         my $sth=$dbh->prepare("delete from categories where categorycode=?");
162         $sth->execute($categorycode);
163         $sth->finish;
164         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=categorie.pl\"></html>";
165         exit;
166
167                                                                                                         # END $OP eq DELETE_CONFIRMED
168 } else { # DEFAULT
169         $template->param(else => 1);
170         my $env;
171         my @loop;
172         my ($count,$results)=StringSearch($env,$searchfield,'web');
173         my $toggle = 0;
174         for (my $i=0; $i < $count; $i++){
175                 my %row = (categorycode => $results->[$i]{'categorycode'},
176                                 description => $results->[$i]{'description'},
177                                 enrolmentperiod => $results->[$i]{'enrolmentperiod'},
178                                 upperagelimit => $results->[$i]{'upperagelimit'},
179                                 dateofbirthrequired => $results->[$i]{'dateofbirthrequired'},
180                                 enrolmentfee => sprintf("%.2f",$results->[$i]{'enrolmentfee'}),
181                                 overduenoticerequired => $results->[$i]{'overduenoticerequired'},
182                                 issuelimit => $results->[$i]{'issuelimit'},
183                                 reservefee => sprintf("%.2f",$results->[$i]{'reservefee'}),
184                                 category_type => $results->[$i]{'category_type'},
185                                 "type_".$results->[$i]{'category_type'} => 1,
186                                 toggle => $toggle );
187                                 warn "ICI".     $results->[$i]{'category_type'};
188                 push @loop, \%row;
189                 if ( $toggle eq 0 )
190                 {
191                         $toggle = 1;
192                 }
193                 else
194                 {
195                         $toggle = 0;
196                 }
197         }
198         $template->param(loop => \@loop);
199         # check that I (institution) and C (child) exists. otherwise => warning to the user
200         my $dbh = C4::Context->dbh;
201         my $sth=$dbh->prepare("select category_type from categories where category_type='C'");
202         $sth->execute;
203         my ($categoryChild) = $sth->fetchrow;
204         $template->param(categoryChild => $categoryChild);
205         $sth=$dbh->prepare("select category_type from categories where category_type='I'");
206         $sth->execute;
207         my ($categoryInstitution) = $sth->fetchrow;
208         $template->param(categoryInstitution => $categoryInstitution);
209         $sth->finish;
210
211
212 } #---- END $OP eq DEFAULT
213
214
215 $template->param(intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
216                 intranetstylesheet => C4::Context->preference("intranetstylesheet"),
217                 IntranetNav => C4::Context->preference("IntranetNav"),
218                 );
219 output_html_with_http_headers $input, $cookie, $template->output;
220