writing absolute path.
[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");
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'} => " SELECTED ",
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 $dbh = C4::Context->dbh;
115         my $sth=$dbh->prepare("replace categories (categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,enrolmentfee,reservefee,overduenoticerequired,category_type) values (?,?,?,?,?,?,?,?,?)");
116         $sth->execute(map { $input->param($_) } ('categorycode','description','enrolmentperiod','upperagelimit','dateofbirthrequired','enrolmentfee','reservefee','overduenoticerequired','category_type'));
117         $sth->finish;
118         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=categorie.pl\"></html>";
119         exit;
120
121                                                                                                         # END $OP eq ADD_VALIDATE
122 ################## DELETE_CONFIRM ##################################
123 # called by default form, used to confirm deletion of data in DB
124 } elsif ($op eq 'delete_confirm') {
125         $template->param(delete_confirm => 1);
126
127         my $dbh = C4::Context->dbh;
128         my $sth=$dbh->prepare("select count(*) as total from borrowers where categorycode=?");
129         $sth->execute($categorycode);
130         my $total = $sth->fetchrow_hashref;
131         $sth->finish;
132         $template->param(total => $total->{'total'});
133         
134         my $sth2=$dbh->prepare("select categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,enrolmentfee,issuelimit,reservefee,overduenoticerequired,category_type from categories where categorycode=?");
135         $sth2->execute($categorycode);
136         my $data=$sth2->fetchrow_hashref;
137         $sth2->finish;
138         if ($total->{'total'} >0) {
139                 $template->param(totalgtzero => 1);
140         }
141
142         $template->param(description             => $data->{'description'},
143                                 enrolmentperiod         => $data->{'enrolmentperiod'},
144                                 upperagelimit           => $data->{'upperagelimit'},
145                                 dateofbirthrequired     => $data->{'dateofbirthrequired'},
146                                 enrolmentfee            =>  sprintf("%.2f",$data->{'enrolmentfee'}),
147                                 overduenoticerequired   => $data->{'overduenoticerequired'},
148                                 issuelimit              => $data->{'issuelimit'},
149                                 reservefee              =>  sprintf("%.2f",$data->{'reservefee'}),
150                                 category_type           => $data->{'category_type'},
151                                 );
152                                                                                                         # END $OP eq DELETE_CONFIRM
153 ################## DELETE_CONFIRMED ##################################
154 # called by delete_confirm, used to effectively confirm deletion of data in DB
155 } elsif ($op eq 'delete_confirmed') {
156         $template->param(delete_confirmed => 1);
157         my $dbh = C4::Context->dbh;
158         my $categorycode=uc($input->param('categorycode'));
159         my $sth=$dbh->prepare("delete from categories where categorycode=?");
160         $sth->execute($categorycode);
161         $sth->finish;
162         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=categorie.pl\"></html>";
163         exit;
164
165                                                                                                         # END $OP eq DELETE_CONFIRMED
166 } else { # DEFAULT
167         $template->param(else => 1);
168         my @loop;
169         my ($count,$results)=StringSearch($searchfield,'web');
170         my $toggle = 0;
171         for (my $i=0; $i < $count; $i++){
172                 my %row = (categorycode => $results->[$i]{'categorycode'},
173                                 description => $results->[$i]{'description'},
174                                 enrolmentperiod => $results->[$i]{'enrolmentperiod'},
175                                 upperagelimit => $results->[$i]{'upperagelimit'},
176                                 dateofbirthrequired => $results->[$i]{'dateofbirthrequired'},
177                                 enrolmentfee => sprintf("%.2f",$results->[$i]{'enrolmentfee'}),
178                                 overduenoticerequired => $results->[$i]{'overduenoticerequired'},
179                                 issuelimit => $results->[$i]{'issuelimit'},
180                                 reservefee => sprintf("%.2f",$results->[$i]{'reservefee'}),
181                                 category_type => $results->[$i]{'category_type'},
182                                 "type_".$results->[$i]{'category_type'} => 1,
183                                 toggle => $toggle );
184                                 warn "ICI".     $results->[$i]{'category_type'};
185                 push @loop, \%row;
186                 if ( $toggle eq 0 )
187                 {
188                         $toggle = 1;
189                 }
190                 else
191                 {
192                         $toggle = 0;
193                 }
194         }
195         $template->param(loop => \@loop);
196         # check that I (institution) and C (child) exists. otherwise => warning to the user
197         my $dbh = C4::Context->dbh;
198         my $sth=$dbh->prepare("select category_type from categories where category_type='C'");
199         $sth->execute;
200         my ($categoryChild) = $sth->fetchrow;
201         $template->param(categoryChild => $categoryChild);
202         $sth=$dbh->prepare("select category_type from categories where category_type='I'");
203         $sth->execute;
204         my ($categoryInstitution) = $sth->fetchrow;
205         $template->param(categoryInstitution => $categoryInstitution);
206         $sth->finish;
207
208
209 } #---- END $OP eq DEFAULT
210
211
212 $template->param(intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
213                 intranetstylesheet => C4::Context->preference("intranetstylesheet"),
214                 IntranetNav => C4::Context->preference("IntranetNav"),
215                 );
216 output_html_with_http_headers $input, $cookie, $template->output;
217