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