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