Added copyright statement to all .pl and .pm files
[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 C4::Output;
41 use CGI;
42 use C4::Search;
43 use C4::Database;
44
45 sub StringSearch  {
46         my ($env,$searchstring,$type)=@_;
47         my $dbh = &C4Connect;
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         $dbh->disconnect;
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 = &C4Connect;
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=C4Connect;
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 = &C4Connect;
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         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=C4Connect;
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();