Added POD.
[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 C4::Output;
42 use CGI;
43 use C4::Search;
44 use C4::Database;
45
46 sub StringSearch  {
47         my ($env,$searchstring,$type)=@_;
48         my $dbh = &C4Connect;
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         $dbh->disconnect;
64         return ($cnt,\@results);
65 }
66
67 my $input = new CGI;
68 my $searchfield=$input->param('description');
69 my $script_name="/cgi-bin/koha/admin/categorie.pl";
70 my $categorycode=$input->param('categorycode');
71 my $op = $input->param('op');
72 $searchfield=~ s/\,//g;
73 print $input->header;
74 #start the page and read in includes
75 print startpage();
76 print startmenu('admin');
77
78 ################## ADD_FORM ##################################
79 # called by default. Used to create form to add or  modify a record
80 if ($op eq 'add_form') {
81         #---- if primkey exists, it's a modify action, so read values to modify...
82         my $data;
83         if ($categorycode) {
84                 my $dbh = &C4Connect;
85                 my $sth=$dbh->prepare("select categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,finetype,bulk,enrolmentfee,issuelimit,reservefee,overduenoticerequired from categories where categorycode='$categorycode'");
86                 $sth->execute;
87                 $data=$sth->fetchrow_hashref;
88                 $sth->finish;
89         }
90         print <<printend
91         <script>
92         /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
93         function isNotNull(f,noalert) {
94                 if (f.value.length ==0) {
95    return false;
96                 }
97                 return true;
98         }
99         /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
100         function toUC(f) {
101                 var x=f.value.toUpperCase();
102                 f.value=x;
103                 return true;
104         }
105         /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
106         function isNum(v,maybenull) {
107         var n = new Number(v.value);
108         if (isNaN(n)) {
109                 return false;
110                 }
111         if (maybenull==0 && v.value=='') {
112                 return false;
113         }
114         return true;
115         }
116         /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
117         function isDate(f) {
118                 var t = Date.parse(f.value);
119                 if (isNaN(t)) {
120                         return false;
121                 }
122         }
123         /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
124         function Check(f) {
125                 var ok=1;
126                 var _alertString="";
127                 var alertString2;
128                 if (f.categorycode.value.length==0) {
129                         _alertString += "- categorycode missing\\n";
130                 }
131 //              alert(window.document.Aform.description.value);
132                 if (!(isNotNull(window.document.Aform.description,1))) {
133                         _alertString += "- description missing\\n";
134                 }
135                 if (!isNum(f.upperagelimit,0)) {
136                         _alertString += "- upperagelimit is not a number\\n";
137                 }
138                 if (_alertString.length==0) {
139                         document.Aform.submit();
140                 } else {
141                         alertString2 = "Form not submitted because of the following problem(s)\\n";
142                         alertString2 += "------------------------------------------------------------------------------------\\n\\n";
143                         alertString2 += _alertString;
144                         alert(alertString2);
145                 }
146         }
147         </SCRIPT>
148 printend
149 ;#/
150         if ($categorycode) {
151                 print "<h1>Modify category</h1>";
152         } else {
153                 print "<h1>Add category</h1>";
154         }
155         print "<form action='$script_name' name=Aform method=post>";
156         print "<input type=hidden name=op value='add_validate'>";
157         print "<input type=hidden name=checked value=0>";
158         print "<table>";
159         if ($categorycode) {
160                 print "<tr><td>Category code</td><td><input type=hidden name=categorycode value=$categorycode>$categorycode</td></tr>";
161         } else {
162                 print "<tr><td>Category code</td><td><input type=text name=categorycode size=3 maxlength=2 onBlur=toUC(this)></td></tr>";
163         }
164         print "<tr><td>Description</td><td><input type=text name=description size=40 maxlength=80 value='$data->{'description'}'>&nbsp;</td></tr>";
165         print "<tr><td>Enrolment period</td><td><input type=text name=enrolmentperiod value='$data->{'enrolmentperiod'}'></td></tr>";
166         print "<tr><td>Upperage limit</td><td><input type=text name=upperagelimit value='$data->{'upperagelimit'}'></td></tr>";
167         print "<tr><td>Date of birth Required</td><td><input type=text name=dateofbirthrequired value='$data->{'dateofbirthrequired'}'> (14/02/2002)</td></tr>";
168         print "<tr><td>Fine type</td><td><input type=text name=finetype size=30 maxlength=30 value='$data->{'finetype'}'></td></tr>";
169         print "<tr><td>Bulk</td><td><input type=text name=bulk value='$data->{'bulk'}'></td></tr>";
170         print "<tr><td>Enrolment fee</td><td><input type=text name=enrolmentfee value='$data->{'enrolmentfee'}'></td></tr>";
171         print "<tr><td>Overdue notice required</td><td><input type=text name=overduenoticerequired value='$data->{'overduenoticerequired'}'></td></tr>";
172         print "<tr><td>Issue limit</td><td><input type=text name=issuelimit value='$data->{'issuelimit'}'></td></tr>";
173         print "<tr><td>Reserve fee</td><td><input type=text name=reservefee value='$data->{'reservefee'}'></td></tr>";
174         print "<tr><td>&nbsp;</td><td><INPUT type=button value='OK' onClick='Check(this.form)'></td></tr>";
175 print "</table>";
176         print "</form>";
177 ;
178                                                                                                         # END $OP eq ADD_FORM
179 ################## ADD_VALIDATE ##################################
180 # called by add_form, used to insert/modify data in DB
181 } elsif ($op eq 'add_validate') {
182         my $dbh=C4Connect;
183         my $query = "replace categories (categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,finetype,bulk,enrolmentfee,issuelimit,reservefee,overduenoticerequired) values (";
184         $query.= $dbh->quote($input->param('categorycode')).",";
185         $query.= $dbh->quote($input->param('description')).",";
186         $query.= $dbh->quote($input->param('enrolmentperiod')).",";
187         $query.= $dbh->quote($input->param('upperagelimit')).",";
188         $query.= $dbh->quote($input->param('dateofbirthrequired')).",";
189         $query.= $dbh->quote($input->param('finetype')).",";
190         $query.= $dbh->quote($input->param('bulk')).",";
191         $query.= $dbh->quote($input->param('enrolmentfee')).",";
192         $query.= $dbh->quote($input->param('issuelimit')).",";
193         $query.= $dbh->quote($input->param('reservefee')).",";
194         $query.= $dbh->quote($input->param('overduenoticerequired')).")";
195         my $sth=$dbh->prepare($query);
196         $sth->execute;
197         $sth->finish;
198         print "data recorded";
199         print "<form action='$script_name' method=post>";
200         print "<input type=submit value=OK>";
201         print "</form>";
202                                                                                                         # END $OP eq ADD_VALIDATE
203 ################## DELETE_CONFIRM ##################################
204 # called by default form, used to confirm deletion of data in DB
205 } elsif ($op eq 'delete_confirm') {
206         my $dbh = &C4Connect;
207         my $sth=$dbh->prepare("select count(*) as total from categoryitem where categorycode='$categorycode'");
208         $sth->execute;
209         my $total = $sth->fetchrow_hashref;
210         print "TOTAL : $categorycode : $total->{'total'}<br>";
211         $sth->finish;
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=C4Connect;
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();