Added a FIXME comment.
[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 print $input->header;
72 #start the page and read in includes
73 print startpage();
74 print startmenu('admin');
75
76 ################## ADD_FORM ##################################
77 # called by default. Used to create form to add or  modify a record
78 if ($op eq 'add_form') {
79         #---- if primkey exists, it's a modify action, so read values to modify...
80         my $data;
81         if ($categorycode) {
82                 my $dbh = C4::Context->dbh;
83                 my $sth=$dbh->prepare("select categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,finetype,bulk,enrolmentfee,issuelimit,reservefee,overduenoticerequired from categories where categorycode='$categorycode'");
84                 $sth->execute;
85                 $data=$sth->fetchrow_hashref;
86                 $sth->finish;
87         }
88         print <<printend
89         <script>
90         /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
91         function isNotNull(f,noalert) {
92                 if (f.value.length ==0) {
93    return false;
94                 }
95                 return true;
96         }
97         /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
98         function toUC(f) {
99                 var x=f.value.toUpperCase();
100                 f.value=x;
101                 return true;
102         }
103         /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
104         function isNum(v,maybenull) {
105         var n = new Number(v.value);
106         if (isNaN(n)) {
107                 return false;
108                 }
109         if (maybenull==0 && v.value=='') {
110                 return false;
111         }
112         return true;
113         }
114         /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
115         function isDate(f) {
116                 var t = Date.parse(f.value);
117                 if (isNaN(t)) {
118                         return false;
119                 }
120         }
121         /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
122         function Check(f) {
123                 var ok=1;
124                 var _alertString="";
125                 var alertString2;
126                 if (f.categorycode.value.length==0) {
127                         _alertString += "- categorycode missing\\n";
128                 }
129 //              alert(window.document.Aform.description.value);
130                 if (!(isNotNull(window.document.Aform.description,1))) {
131                         _alertString += "- description missing\\n";
132                 }
133                 if (!isNum(f.upperagelimit,0)) {
134                         _alertString += "- upperagelimit is not a number\\n";
135                 }
136                 if (_alertString.length==0) {
137                         document.Aform.submit();
138                 } else {
139                         alertString2 = "Form not submitted because of the following problem(s)\\n";
140                         alertString2 += "------------------------------------------------------------------------------------\\n\\n";
141                         alertString2 += _alertString;
142                         alert(alertString2);
143                 }
144         }
145         </SCRIPT>
146 printend
147 ;#/
148         if ($categorycode) {
149                 print "<h1>Modify category</h1>";
150         } else {
151                 print "<h1>Add category</h1>";
152         }
153         print "<form action='$script_name' name=Aform method=post>";
154         print "<input type=hidden name=op value='add_validate'>";
155         print "<input type=hidden name=checked value=0>";
156         print "<table>";
157         if ($categorycode) {
158                 print "<tr><td>Category code</td><td><input type=hidden name=categorycode value=$categorycode>$categorycode</td></tr>";
159         } else {
160                 print "<tr><td>Category code</td><td><input type=text name=categorycode size=3 maxlength=2 onBlur=toUC(this)></td></tr>";
161         }
162         print "<tr><td>Description</td><td><input type=text name=description size=40 maxlength=80 value='$data->{'description'}'>&nbsp;</td></tr>";
163         print "<tr><td>Enrolment period</td><td><input type=text name=enrolmentperiod value='$data->{'enrolmentperiod'}'></td></tr>";
164         print "<tr><td>Upperage limit</td><td><input type=text name=upperagelimit value='$data->{'upperagelimit'}'></td></tr>";
165         print "<tr><td>Date of birth Required</td><td><input type=text name=dateofbirthrequired value='$data->{'dateofbirthrequired'}'> (14/02/2002)</td></tr>";
166         print "<tr><td>Fine type</td><td><input type=text name=finetype size=30 maxlength=30 value='$data->{'finetype'}'></td></tr>";
167         print "<tr><td>Bulk</td><td><input type=text name=bulk value='$data->{'bulk'}'></td></tr>";
168         print "<tr><td>Enrolment fee</td><td><input type=text name=enrolmentfee value='$data->{'enrolmentfee'}'></td></tr>";
169         print "<tr><td>Overdue notice required</td><td><input type=text name=overduenoticerequired value='$data->{'overduenoticerequired'}'></td></tr>";
170         print "<tr><td>Issue limit</td><td><input type=text name=issuelimit value='$data->{'issuelimit'}'></td></tr>";
171         print "<tr><td>Reserve fee</td><td><input type=text name=reservefee value='$data->{'reservefee'}'></td></tr>";
172         print "<tr><td>&nbsp;</td><td><INPUT type=button value='OK' onClick='Check(this.form)'></td></tr>";
173 print "</table>";
174         print "</form>";
175 ;
176                                                                                                         # END $OP eq ADD_FORM
177 ################## ADD_VALIDATE ##################################
178 # called by add_form, used to insert/modify data in DB
179 } elsif ($op eq 'add_validate') {
180         my $dbh = C4::Context->dbh;
181         my $query = "replace categories (categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,finetype,bulk,enrolmentfee,issuelimit,reservefee,overduenoticerequired) values (";
182         $query.= $dbh->quote($input->param('categorycode')).",";
183         $query.= $dbh->quote($input->param('description')).",";
184         $query.= $dbh->quote($input->param('enrolmentperiod')).",";
185         $query.= $dbh->quote($input->param('upperagelimit')).",";
186         $query.= $dbh->quote($input->param('dateofbirthrequired')).",";
187         $query.= $dbh->quote($input->param('finetype')).",";
188         $query.= $dbh->quote($input->param('bulk')).",";
189         $query.= $dbh->quote($input->param('enrolmentfee')).",";
190         $query.= $dbh->quote($input->param('issuelimit')).",";
191         $query.= $dbh->quote($input->param('reservefee')).",";
192         $query.= $dbh->quote($input->param('overduenoticerequired')).")";
193         my $sth=$dbh->prepare($query);
194         $sth->execute;
195         $sth->finish;
196         print "data recorded";
197         print "<form action='$script_name' method=post>";
198         print "<input type=submit value=OK>";
199         print "</form>";
200                                                                                                         # END $OP eq ADD_VALIDATE
201 ################## DELETE_CONFIRM ##################################
202 # called by default form, used to confirm deletion of data in DB
203 } elsif ($op eq 'delete_confirm') {
204         my $dbh = C4::Context->dbh;
205         my $sth=$dbh->prepare("select count(*) as total from categoryitem where categorycode='$categorycode'");
206         $sth->execute;
207         my $total = $sth->fetchrow_hashref;
208         print "TOTAL : $categorycode : $total->{'total'}<br>";
209         $sth->finish;
210         # FIXME - there's already a $sth in this scope.
211         my $sth=$dbh->prepare("select categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,finetype,bulk,enrolmentfee,issuelimit,reservefee,overduenoticerequired from categories where categorycode='$categorycode'");
212         $sth->execute;
213         my $data=$sth->fetchrow_hashref;
214         $sth->finish;
215         print mktablehdr;
216         print mktablerow(2,'#99cc33',bold('Category code'),bold("$categorycode"),'/images/background-mem.gif');
217         print "<form action='$script_name' method=post><input type=hidden name=op value=delete_confirmed><input type=hidden name=categorycode value='$categorycode'>";
218         print "<tr><td>Description</td><td>$data->{'description'}</td></tr>";
219         print "<tr><td>Enrolment period</td><td>$data->{'enrolmentperiod'}</td></tr>";
220         print "<tr><td>Upperage limit</td><td>$data->{'upperagelimit'}</td></tr>";
221         print "<tr><td>Date of birth Required</td><td>$data->{'dateofbirthrequired'}</td></tr>";
222         print "<tr><td>Fine type</td><td>$data->{'finetype'}</td></tr>";
223         print "<tr><td>Bulk</td><td>$data->{'bulk'}</td></tr>";
224         print "<tr><td>Enrolment fee</td><td>$data->{'enrolmentfee'}</td></tr>";
225         print "<tr><td>Overdue notice required</td><td>$data->{'overduenoticerequired'}</td></tr>";
226         print "<tr><td>Issue limit</td><td>$data->{'issuelimit'}</td></tr>";
227         print "<tr><td>Reserve fee</td><td>$data->{'reservefee'}</td></tr>";
228         if ($total->{'total'} >0) {
229                 print "<tr><td colspan=2 align=center><b>This record is used $total->{'total'} times. Deletion not possible</b></td></tr>";
230                 print "<tr><td colspan=2></form><form action='$script_name' method=post><input type=submit value=OK></form></td></tr>";
231         } else {
232                 print "<tr><td colspan=2 align=center>CONFIRM DELETION</td></tr>";
233                 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>";
234         }
235                                                                                                         # END $OP eq DELETE_CONFIRM
236 ################## DELETE_CONFIRMED ##################################
237 # called by delete_confirm, used to effectively confirm deletion of data in DB
238 } elsif ($op eq 'delete_confirmed') {
239         my $dbh = C4::Context->dbh;
240         my $categorycode=uc($input->param('categorycode'));
241         my $query = "delete from categories where categorycode='$categorycode'";
242         my $sth=$dbh->prepare($query);
243         $sth->execute;
244         $sth->finish;
245         print "data deleted";
246         print "<form action='$script_name' method=post>";
247         print "<input type=submit value=OK>";
248         print "</form>";
249                                                                                                         # END $OP eq DELETE_CONFIRMED
250 } else { # DEFAULT
251         my @inputs=(["text","description",$searchfield],
252                 ["reset","reset","clr"]);
253         print mkheadr(2,'Category admin');
254         print mkformnotable("$script_name",@inputs);
255         print <<printend
256
257 printend
258         ;
259         if  ($searchfield ne '') {
260                 print "You Searched for $searchfield<p>";
261         }
262         print mktablehdr;
263         print mktablerow(13,'#99cc33',bold('Category'),bold('Description'),bold('Enrolment'),bold('age max')
264         ,bold('birth needed'),bold('Fine'),bold('Bulk'),bold('fee'),bold('overdue'),bold('Issue limit'),bold('Reserve'),'&nbsp;','&nbsp;','/images/background-mem.gif');
265         my $env;
266         my ($count,$results)=StringSearch($env,$searchfield,'web');
267         my $toggle="white";
268         for (my $i=0; $i < $count; $i++){
269                 #find out stats
270         #       my ($od,$issue,$fines)=categdata2($env,$results->[$i]{'borrowernumber'});
271         #       $fines=$fines+0;
272                 if ($toggle eq 'white'){
273                         $toggle="#ffffcc";
274                 } else {
275                         $toggle="white";
276                 }
277                 print mktablerow(13,$toggle,$results->[$i]{'categorycode'},
278                 $results->[$i]{'description'},$results->[$i]{'enrolmentperiod'},
279                 $results->[$i]{'upperagelimit'},$results->[$i]{'dateofbirthrequired'},$results->[$i]{'finetype'},
280                 $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'),
281                 mklink("$script_name?op=delete_confirm&categorycode=".$results->[$i]{'categorycode'},'Delete'));
282         }
283         print mktableft;
284 print <<printend
285         <form action='$script_name' method=post>
286         <input type=hidden name=op value=add_form>
287         <input type=image src="/images/button-add-new.gif"  WIDTH=188  HEIGHT=44  ALT="Add Category" BORDER=0 ></a><br>
288         </form>
289 printend
290         ;
291 } #---- END $OP eq DEFAULT
292 print endmenu('categorie');
293 print endpage();