updating web installer : going to step1 if needed and fixing sql
[koha.git] / admin / categoryitem.pl
1 #!/usr/bin/perl
2
3 #script to administer the categories table
4 #written 20/02/2002 by paul.poulain@free.fr
5 # This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html)
6
7 # ALGO :
8 # this script use an $op to know what to do.
9 # if $op is empty or none of the above values,
10 #       - the default screen is build (with all records, or filtered datas).
11 #       - the   user can clic on add, modify or delete record.
12 # if $op=add_form
13 #       - if primkey exists, this is a modification,so we read the $primkey record
14 #       - builds the add/modify form
15 # if $op=add_validate
16 #       - the user has just send datas, so we create/modify the record
17 # if $op=delete_form
18 #       - we show the record having primkey=$primkey and ask for deletion validation form
19 # if $op=delete_confirm
20 #       - we delete the record having primkey=$primkey
21
22
23 # Copyright 2000-2002 Katipo Communications
24 #
25 # This file is part of Koha.
26 #
27 # Koha is free software; you can redistribute it and/or modify it under the
28 # terms of the GNU General Public License as published by the Free Software
29 # Foundation; either version 2 of the License, or (at your option) any later
30 # version.
31 #
32 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
33 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
34 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
35 #
36 # You should have received a copy of the GNU General Public License along with
37 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
38 # Suite 330, Boston, MA  02111-1307 USA
39
40 use strict;
41 use CGI;
42 use C4::Context;
43 use C4::Auth;
44 use C4::Output;
45
46 sub StringSearch  {
47         my ($searchstring,$type)=@_;
48         my $dbh = C4::Context->dbh;
49         $searchstring=~ s/\'/\\\'/g;
50         my @data=split(' ',$searchstring);
51         my $count=@data;
52         my $sth=$dbh->prepare("Select * from categories where (description like ?)");
53         $sth->execute("$data[0]%");
54         my @results;
55         while (my $data=$sth->fetchrow_hashref){
56         push(@results,$data);
57         }
58         #  $sth->execute;
59         $sth->finish;
60         return (scalar(@results),\@results);
61 }
62
63 my $input = new CGI;
64 my $searchfield=$input->param('description');
65 my $script_name="/cgi-bin/koha/admin/categorie.pl";
66 my $categorycode=$input->param('categorycode');
67 my $op = $input->param('op');
68 $searchfield=~ s/\,//g;
69
70 my ($template, $loggedinuser, $cookie) 
71     = get_template_and_user({template_name => "admin/categoryitem.tmpl",
72                              query => $input,
73                              type => "intranet",
74                              authnotrequired => 0,
75                              debug => 1,
76                              });
77
78
79 $template->param(script_name => $script_name,
80                  categorycode => $categorycode,
81                  searchfield => $searchfield);
82
83
84 ################## ADD_FORM ##################################
85 # called by default. Used to create form to add or  modify a record
86 if ($op eq 'add_form') {
87         $template->param(add_form => 1);
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,finetype,bulk,enrolmentfee,reservefee,overduenoticerequired 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                                 finetype                => $data->{'finetype'},
103                                 bulk                    => $data->{'bulk'},
104                                 enrolmentfee            => $data->{'enrolmentfee'},
105                                 overduenoticerequired   => $data->{'overduenoticerequired'},
106                                 reservefee              => $data->{'reservefee'});
107
108
109 ;
110                                                                                                         # END $OP eq ADD_FORM
111 ################## ADD_VALIDATE ##################################
112 # called by add_form, used to insert/modify data in DB
113 } elsif ($op eq 'add_validate') {
114         $template->param(add_validate => 1);
115         my $dbh = C4::Context->dbh;
116         my $sth=$dbh->prepare("replace categories (categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,finetype,bulk,enrolmentfee,reservefee,overduenoticerequired) values (?,?,?,?,?,?,?,?,?,?)");
117         $sth->execute(map {$input->param($_)} ('categorycode','description','enrolmentperiod','upperagelimit','dateofbirthrequired','finetype','bulk','enrolmentfee','reservefee','overduenoticerequired'));
118         $sth->finish;
119         print "data recorded";
120         print "<form action='$script_name' method=post>";
121         print "<input type=submit value=OK>";
122         print "</form>";
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         my $dbh = C4::Context->dbh;
129         my $sth=$dbh->prepare("select count(*) as total from categoryitem where categorycode=?");
130         $sth->execute($categorycode);
131         my $total = $sth->fetchrow_hashref;
132         print "TOTAL : $categorycode : $total->{'total'}<br>";
133         $sth->finish;
134         my $sth2=$dbh->prepare("select categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,finetype,bulk,enrolmentfee,reservefee,overduenoticerequired from categories where categorycode=?");
135         $sth2->execute($categorycode);
136         my $data=$sth2->fetchrow_hashref;
137         $sth2->finish;
138
139         $template->param(description             => $data->{'description'},
140                                 enrolmentperiod         => $data->{'enrolmentperiod'},
141                                 upperagelimit           => $data->{'upperagelimit'},
142                                 dateofbirthrequired     => $data->{'dateofbirthrequired'},
143                                 finetype                => $data->{'finetype'},
144                                 bulk                    => $data->{'bulk'},
145                                 enrolmentfee            => $data->{'enrolmentfee'},
146                                 overduenoticerequired   => $data->{'overduenoticerequired'},
147                                 reservefee              => $data->{'reservefee'});
148
149                                                                                                         # END $OP eq DELETE_CONFIRM
150 ################## DELETE_CONFIRMED ##################################
151 # called by delete_confirm, used to effectively confirm deletion of data in DB
152 } elsif ($op eq 'delete_confirmed') {
153         $template->param(delete_confirmed => 1);
154         my $dbh = C4::Context->dbh;
155         my $categorycode=uc($input->param('categorycode'));
156         my $sth=$dbh->prepare("delete from categories where categorycode=?");
157         $sth->execute($categorycode);
158         $sth->finish;
159                                                                                                         # END $OP eq DELETE_CONFIRMED
160 } else { # DEFAULT
161         $template->param(else => 1);
162         my @loop;
163         my ($count,$results)=StringSearch($searchfield,'web');
164         my $toggle = 'white';
165         for (my $i=0; $i < $count; $i++){
166                 my %row = (categorycode => $results->[$i]{'categorycode'},
167                                 description => $results->[$i]{'description'},
168                                 enrolmentperiod => $results->[$i]{'enrolmentperiod'},
169                                 upperagelimit => $results->[$i]{'upperagelimit'},
170                                 dateofbirthrequired => $results->[$i]{'dateofbirthrequired'},
171                                 finetype => $results->[$i]{'finetype'},
172                                 bulk => $results->[$i]{'bulk'},
173                                 enrolmentfee => $results->[$i]{'enrolmentfee'},
174                                 overduenoticerequired => $results->[$i]{'overduenoticerequired'},
175                                 reservefee => $results->[$i]{'reservefee'},
176                                 toggle => $toggle );
177                 push @loop, \%row;
178                 if ( $toggle eq 'white' )
179                 {
180                         $toggle = '#ffffcc';
181                 }
182                 else
183                 {
184                         $toggle = 'white';
185                 }
186
187         }
188         $template->param(loop => \@loop);
189
190
191 } #---- END $OP eq DEFAULT
192 $template->param(intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
193                 intranetstylesheet => C4::Context->preference("intranetstylesheet"),
194                 IntranetNav => C4::Context->preference("IntranetNav"),
195                 );
196 output_html_with_http_headers $input, $cookie, $template->output;
197
198
199