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