New XML API
[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
42 use C4::Context;
43 use C4::Output;
44 use C4::Search;
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 $sth=$dbh->prepare("Select * from categories where (description like ?)");
55         $sth->execute("$data[0]%");
56         my @results;
57         while (my $data=$sth->fetchrow_hashref){
58         push(@results,$data);
59         }
60         #  $sth->execute;
61         $sth->finish;
62         return (scalar(@results),\@results);
63 }
64
65 my $input = new CGI;
66 my $searchfield=$input->param('description');
67 my $script_name="/cgi-bin/koha/admin/categorie.pl";
68 my $categorycode=$input->param('categorycode');
69 my $op = $input->param('op');
70
71 my ($template, $loggedinuser, $cookie)
72     = get_template_and_user({template_name => "admin/categorie.tmpl",
73                              query => $input,
74                              type => "intranet",
75                              authnotrequired => 0,
76                              flagsrequired => {parameters => 1},
77                              debug => 1,
78                              });
79
80
81 $template->param(script_name => $script_name,
82                  categorycode => $categorycode,
83                  searchfield => $searchfield);
84
85
86 ################## ADD_FORM ##################################
87 # called by default. Used to create form to add or  modify a record
88 if ($op eq 'add_form') {
89         $template->param(add_form => 1);
90         
91         #---- if primkey exists, it's a modify action, so read values to modify...
92         my $data;
93         if ($categorycode) {
94                 my $dbh = C4::Context->dbh;
95                 my $sth=$dbh->prepare("select categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,enrolmentfee,issuelimit,reservefee,overduenoticerequired, canmakepublicshelves, addRequestToShelves, allowrenewsfromopac from categories where categorycode=?");
96                 $sth->execute($categorycode);
97                 $data=$sth->fetchrow_hashref;
98                 $sth->finish;
99         }
100
101         $template->param(description             => $data->{'description'},
102                                 enrolmentperiod         => $data->{'enrolmentperiod'},
103                                 upperagelimit           => $data->{'upperagelimit'},
104                                 dateofbirthrequired     => $data->{'dateofbirthrequired'},
105                                 enrolmentfee            => $data->{'enrolmentfee'},
106                                 overduenoticerequired   => $data->{'overduenoticerequired'},
107                                 issuelimit              => $data->{'issuelimit'},
108                                 reservefee              => $data->{'reservefee'},
109                                 canmakepublicshelves    => $data->{'canmakepublicshelves'},
110                                 addRequestToShelves             => $data->{'addRequestToShelves'},
111                                 allowrenewsfromopac             => $data->{'allowrenewsfromopac'}
112         );
113                                                                                                         # END $OP eq ADD_FORM
114 ################## ADD_VALIDATE ##################################
115 # called by add_form, used to insert/modify data in DB
116 } elsif ($op eq 'add_validate') {
117         $template->param(add_validate => 1);
118         my $dbh = C4::Context->dbh;
119         my $sth=$dbh->prepare("replace categories (categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,enrolmentfee,reservefee,overduenoticerequired, issuelimit, canmakepublicshelves, addRequestToShelves , allowrenewsfromopac) values (?,?,?,?,?,?,?,?,?,?,?,?)");
120         $sth->execute(map { $input->param($_) } ('categorycode','description','enrolmentperiod','upperagelimit','dateofbirthrequired','enrolmentfee','reservefee','overduenoticerequired', 'issuelimit', 'canmakepublicshelves', 'addRequestToShelves', 'allowrenewsfromopac'));
121         $sth->finish;
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, canmakepublicshelves, addRequestToShelves,allowrenewsfromopac  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            => $data->{'enrolmentfee'},
149                                 overduenoticerequired   => $data->{'overduenoticerequired'},
150                                 issuelimit              => $data->{'issuelimit'},
151                                 reservefee              => $data->{'reservefee'},
152                                                                 canmakepublicshelves    => $data->{'canmakepublicshelves'},
153                                                                 addRequestToShelves             => $data->{'addRequestToShelves'},
154                                                                 allowrenewsfromopac     => $data->{'allowrenewsfromopac'},
155                 
156                 );
157
158
159                                                                                                         # END $OP eq DELETE_CONFIRM
160 ################## DELETE_CONFIRMED ##################################
161 # called by delete_confirm, used to effectively confirm deletion of data in DB
162 } elsif ($op eq 'delete_confirmed') {
163         $template->param(delete_confirmed => 1);
164         my $dbh = C4::Context->dbh;
165         my $categorycode=uc($input->param('categorycode'));
166         my $sth=$dbh->prepare("delete from categories where categorycode=?");
167         $sth->execute($categorycode);
168         $sth->finish;
169                                                                                                         # END $OP eq DELETE_CONFIRMED
170 } else { # DEFAULT
171         $template->param(else => 1);
172         my $env;
173         my @loop;
174         my ($count,$results)=StringSearch($env,$searchfield,'web');
175         my $toggle = 0;
176         for (my $i=0; $i < $count; $i++){
177                 my %row = (categorycode => $results->[$i]{'categorycode'},
178                                 description => $results->[$i]{'description'},
179                                 enrolmentperiod => $results->[$i]{'enrolmentperiod'},
180                                 upperagelimit => $results->[$i]{'upperagelimit'},
181                                 dateofbirthrequired => $results->[$i]{'dateofbirthrequired'},
182                                 enrolmentfee => $results->[$i]{'enrolmentfee'},
183                                 overduenoticerequired => $results->[$i]{'overduenoticerequired'},
184                                 issuelimit => $results->[$i]{'issuelimit'},
185                                 reservefee => $results->[$i]{'reservefee'},
186                                 canmakepublicshelves => $results->[$i]{'canmakepublicshelves'},
187                                 addRequestToShelves             => $results->[$i]{'addRequestToShelves'},
188                                 allowrenewsfromopac => $results->[$i]{'allowrenewsfromopac'},
189                                 toggle => $toggle );    
190                 push @loop, \%row;
191                 $toggle = not $toggle;
192         }
193         $template->param(loop => \@loop);
194         # check that I (institution) and C (child) exists. otherwise => warning to the user
195         my $dbh = C4::Context->dbh;
196         my $sth=$dbh->prepare("select categorycode from categories where categorycode='C'");
197         $sth->execute;
198         my ($categoryChild) = $sth->fetchrow;
199         $template->param(categoryChild => $categoryChild);
200         $sth=$dbh->prepare("select categorycode from categories where categorycode='I'");
201         $sth->execute;
202         my ($categoryInstitution) = $sth->fetchrow;
203         $template->param(categoryInstitution => $categoryInstitution);
204         $sth->finish;
205
206
207 } #---- END $OP eq DEFAULT
208
209
210
211 output_html_with_http_headers $input, $cookie, $template->output;
212