copying images from english path to french path. They are NOT translated.
[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
45 sub StringSearch  {
46         my ($env,$searchstring,$type)=@_;
47         my $dbh = C4::Context->dbh;
48         $searchstring=~ s/\'/\\\'/g;
49         my @data=split(' ',$searchstring);
50         my $count=@data;
51         my $query="Select * from categories where (description like \"$data[0]%\")";
52         my $sth=$dbh->prepare($query);
53         $sth->execute;
54         my @results;
55         my $cnt=0;
56         while (my $data=$sth->fetchrow_hashref){
57         push(@results,$data);
58         $cnt ++;
59         }
60         #  $sth->execute;
61         $sth->finish;
62         return ($cnt,\@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 $searchfield=~ s/\,//g;
71
72 my ($template, $loggedinuser, $cookie)
73     = get_template_and_user({template_name => "parameters/categorie.tmpl",
74                              query => $input,
75                              type => "intranet",
76                              authnotrequired => 0,
77                              flagsrequired => {borrowers => 1},
78                              debug => 1,
79                              });
80
81
82 $template->param(script_name => $script_name,
83                  categorycode => $categorycode);
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,finetype,bulk,enrolmentfee,issuelimit,reservefee,overduenoticerequired from categories where categorycode='$categorycode'");
96                 $sth->execute;
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                                 finetype                => $data->{'finetype'},
106                                 bulk                    => $data->{'bulk'},
107                                 enrolmentfee            => $data->{'enrolmentfee'},
108                                 overduenoticerequired   => $data->{'overduenoticerequired'},
109                                 issuelimit              => $data->{'issuelimit'},
110                                 reservefee              => $data->{'reservefee'});
111 }
112                                                                                                         # END $OP eq ADD_FORM
113 ################## ADD_VALIDATE ##################################
114 # called by add_form, used to insert/modify data in DB
115 } elsif ($op eq 'add_validate') {
116         $template->param(add_validate => 1);
117         my $dbh = C4::Context->dbh;
118         my $query = "replace categories (categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,finetype,bulk,enrolmentfee,issuelimit,reservefee,overduenoticerequired) values (";
119         $query.= $dbh->quote($input->param('categorycode')).",";
120         $query.= $dbh->quote($input->param('description')).",";
121         $query.= $dbh->quote($input->param('enrolmentperiod')).",";
122         $query.= $dbh->quote($input->param('upperagelimit')).",";
123         $query.= $dbh->quote($input->param('dateofbirthrequired')).",";
124         $query.= $dbh->quote($input->param('finetype')).",";
125         $query.= $dbh->quote($input->param('bulk')).",";
126         $query.= $dbh->quote($input->param('enrolmentfee')).",";
127         $query.= $dbh->quote($input->param('issuelimit')).",";
128         $query.= $dbh->quote($input->param('reservefee')).",";
129         $query.= $dbh->quote($input->param('overduenoticerequired')).")";
130         my $sth=$dbh->prepare($query);
131         $sth->execute;
132         $sth->finish;
133                                                                                                         # END $OP eq ADD_VALIDATE
134 ################## DELETE_CONFIRM ##################################
135 # called by default form, used to confirm deletion of data in DB
136 } elsif ($op eq 'delete_confirm') {
137         $template->param(delete_confirm => 1);
138
139         my $dbh = C4::Context->dbh;
140         my $sth=$dbh->prepare("select count(*) as total from categoryitem where categorycode='$categorycode'");
141         $sth->execute;
142         my $total = $sth->fetchrow_hashref;
143         $sth->finish;
144         $template->param(total => $total->{'total'});
145         
146         my $sth2=$dbh->prepare("select categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,finetype,bulk,enrolmentfee,issuelimit,reservefee,overduenoticerequired from categories where categorycode='$categorycode'");
147         $sth2->execute;
148         my $data=$sth2->fetchrow_hashref;
149         $sth2->finish;
150         print mktablehdr;
151         print mktablerow(2,'#99cc33',bold('Category code'),bold("$categorycode"),'/images/background-mem.gif');
152         print "<form action='$script_name' method=post><input type=hidden name=op value=delete_confirmed><input type=hidden name=categorycode value='$categorycode'>";
153         print "<tr><td>Description</td><td>$data->{'description'}</td></tr>";
154         print "<tr><td>Enrolment period</td><td>$data->{'enrolmentperiod'}</td></tr>";
155         print "<tr><td>Upperage limit</td><td>$data->{'upperagelimit'}</td></tr>";
156         print "<tr><td>Age Required</td><td>$data->{'dateofbirthrequired'}</td></tr>";
157         print "<tr><td>Fine type</td><td>$data->{'finetype'}</td></tr>";
158         print "<tr><td>Bulk</td><td>$data->{'bulk'}</td></tr>";
159         print "<tr><td>Enrolment fee</td><td>$data->{'enrolmentfee'}</td></tr>";
160         print "<tr><td>Overdue notice required</td><td>$data->{'overduenoticerequired'}</td></tr>";
161         print "<tr><td>Issue limit</td><td>$data->{'issuelimit'}</td></tr>";
162         print "<tr><td>Reserve fee</td><td>$data->{'reservefee'}</td></tr>";
163         if ($total->{'total'} >0) {
164                 print "<tr><td colspan=2 align=center><b>This record is used $total->{'total'} times. Deletion not possible</b></td></tr>";
165                 print "<tr><td colspan=2></form><form action='$script_name' method=post><input type=submit value=OK></form></td></tr>";
166         } else {
167                 print "<tr><td colspan=2 align=center>CONFIRM DELETION</td></tr>";
168                 print "<tr><td><INPUT type=submit value='YES'></form></td><td><form action='$script_name' method=post><input type=submit value=NO></form></td></tr>";
169         }
170                                                                                                         # END $OP eq DELETE_CONFIRM
171 ################## DELETE_CONFIRMED ##################################
172 # called by delete_confirm, used to effectively confirm deletion of data in DB
173 } elsif ($op eq 'delete_confirmed') {
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         print "data deleted";
181         print "<form action='$script_name' method=post>";
182         print "<input type=submit value=OK>";
183         print "</form>";
184                                                                                                         # END $OP eq DELETE_CONFIRMED
185 } else { # DEFAULT
186         my @inputs=(["text","description",$searchfield],
187                 ["reset","reset","clr"]);
188         print mkheadr(2,'Category admin');
189         print mkformnotable("$script_name",@inputs);
190         print <<printend
191
192 printend
193         ;
194         if  ($searchfield ne '') {
195                 print "You Searched for $searchfield<p>";
196         }
197         print mktablehdr;
198         print mktablerow(13,'#99cc33',bold('Category'),bold('Description'),bold('Enrolment'),bold('age max')
199         ,bold('birth needed'),bold('Fine'),bold('Bulk'),bold('fee'),bold('overdue'),bold('Issue limit'),bold('Reserve'),'&nbsp;','&nbsp;','/images/background-mem.gif');
200         my $env;
201         my ($count,$results)=StringSearch($env,$searchfield,'web');
202         my $toggle="white";
203         for (my $i=0; $i < $count; $i++){
204                 #find out stats
205         #       my ($od,$issue,$fines)=categdata2($env,$results->[$i]{'borrowernumber'});
206         #       $fines=$fines+0;
207                 if ($toggle eq 'white'){
208                         $toggle="#ffffcc";
209                 } else {
210                         $toggle="white";
211                 }
212                 print mktablerow(13,$toggle,$results->[$i]{'categorycode'},
213                 $results->[$i]{'description'},$results->[$i]{'enrolmentperiod'},
214                 $results->[$i]{'upperagelimit'},$results->[$i]{'dateofbirthrequired'},$results->[$i]{'finetype'},
215                 $results->[$i]{'bulk'},$results->[$i]{'enrolmentfee'},$results->[$i]{'overduenoticerequired'},$results->[$i]{'issuelimit'},$results->[$i]{'reservefee'},mklink("$script_name?op=add_form&categorycode=".$results->[$i]{'categorycode'},'Edit'),
216                 mklink("$script_name?op=delete_confirm&categorycode=".$results->[$i]{'categorycode'},'Delete'));
217         }
218
219
220
221 } #---- END $OP eq DEFAULT
222
223
224
225 output_html_with_http_headers $input, $cookie, $template->output;
226