bugfixes
[koha.git] / admin / itemtypes.pl
1 #!/usr/bin/perl
2 # NOTE: 4-character tabs
3
4 #script to administer the categories table
5 #written 20/02/2002 by paul.poulain@free.fr
6 # This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html)
7
8 # ALGO :
9 # this script use an $op to know what to do.
10 # if $op is empty or none of the above values,
11 #       - the default screen is build (with all records, or filtered datas).
12 #       - the   user can clic on add, modify or delete record.
13 # if $op=add_form
14 #       - if primkey exists, this is a modification,so we read the $primkey record
15 #       - builds the add/modify form
16 # if $op=add_validate
17 #       - the user has just send datas, so we create/modify the record
18 # if $op=delete_form
19 #       - we show the record having primkey=$primkey and ask for deletion validation form
20 # if $op=delete_confirm
21 #       - we delete the record having primkey=$primkey
22
23
24 # Copyright 2000-2002 Katipo Communications
25 #
26 # This file is part of Koha.
27 #
28 # Koha is free software; you can redistribute it and/or modify it under the
29 # terms of the GNU General Public License as published by the Free Software
30 # Foundation; either version 2 of the License, or (at your option) any later
31 # version.
32 #
33 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
34 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
35 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
36 #
37 # You should have received a copy of the GNU General Public License along with
38 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
39 # Suite 330, Boston, MA  02111-1307 USA
40
41 use strict;
42 use CGI;
43 use C4::Context;
44 use C4::Output;
45 use C4::Search;
46 use C4::Auth;
47 use C4::Interface::CGI::Output;
48 use HTML::Template;
49
50 sub StringSearch  {
51         my ($env,$searchstring,$type)=@_;
52         my $dbh = C4::Context->dbh;
53         $searchstring=~ s/\'/\\\'/g;
54         my @data=split(' ',$searchstring);
55         my $count=@data;
56         my $sth=$dbh->prepare("Select * from itemtypes where (description like ?) order by itemtype");
57         $sth->execute("$data[0]%");
58         my @results;
59         while (my $data=$sth->fetchrow_hashref){
60         push(@results,$data);
61         }
62         #  $sth->execute;
63         $sth->finish;
64         return (scalar(@results),\@results);
65 }
66
67 my $input = new CGI;
68 my $searchfield=$input->param('description');
69 my $offset=$input->param('offset');
70 my $script_name="/cgi-bin/koha/admin/itemtypes.pl";
71 my $itemtype=$input->param('itemtype');
72 my $pagesize=20;
73 my $op = $input->param('op');
74 $searchfield=~ s/\,//g;
75 my ($template, $borrowernumber, $cookie)
76     = get_template_and_user({template_name => "parameters/itemtypes.tmpl",
77                              query => $input,
78                              type => "intranet",
79                              authnotrequired => 0,
80                              flagsrequired => {parameters => 1},
81                              debug => 1,
82                              });
83
84 if ($op) {
85 $template->param(script_name => $script_name,
86                                                 $op              => 1); # we show only the TMPL_VAR names $op
87 } else {
88 $template->param(script_name => $script_name,
89                                                 else              => 1); # we show only the TMPL_VAR names $op
90 }
91 ################## ADD_FORM ##################################
92 # called by default. Used to create form to add or  modify a record
93 if ($op eq 'add_form') {
94         #start the page and read in includes
95         #---- if primkey exists, it's a modify action, so read values to modify...
96         my $data;
97         if ($itemtype) {
98                 my $dbh = C4::Context->dbh;
99                 my $sth=$dbh->prepare("select itemtype,description,loanlength,renewalsallowed,rentalcharge,notforloan from itemtypes where itemtype=?");
100                 $sth->execute($itemtype);
101                 $data=$sth->fetchrow_hashref;
102                 $sth->finish;
103         }
104         $template->param(itemtype => $itemtype,
105                                                         description => $data->{'description'},
106                                                         loanlength => $data->{'loanlength'},
107                                                         renewalsallowed => $data->{'renewalsallowed'},
108                                                         rentalcharge => $data->{'rentalcharge'},
109                                                         notforloan => $data->{'notforloan'}
110                                                         );
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         my $dbh = C4::Context->dbh;
117         my $query = "replace itemtypes (itemtype,description,loanlength,renewalsallowed,rentalcharge,notforloan) values (";
118         $query.= $dbh->quote($input->param('itemtype')).",";
119         $query.= $dbh->quote($input->param('description')).",";
120         $query.= $dbh->quote($input->param('loanlength')).",";
121         if ($input->param('renewalsallowed') ne 1) {
122                 $query.= "0,";
123         } else {
124                 $query.= "1,";
125         }
126         $query.= $dbh->quote($input->param('rentalcharge')).",";
127         if ($input->param('notforloan') ne 1) {
128                 $query.= "0)";
129         } else {
130                 $query.= "1)";
131         }
132         my $sth=$dbh->prepare($query);
133         $sth->execute;
134         $sth->finish;
135         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=itemtypes.pl\"></html>";
136         exit;
137                                                                                                         # END $OP eq ADD_VALIDATE
138 ################## DELETE_CONFIRM ##################################
139 # called by default form, used to confirm deletion of data in DB
140 } elsif ($op eq 'delete_confirm') {
141         #start the page and read in includes
142         my $dbh = C4::Context->dbh;
143
144         # Check both categoryitem and biblioitems, see Bug 199
145         my $total = 0;
146         for my $table ('issuingrules', 'biblioitems') {
147            my $sth=$dbh->prepare("select count(*) as total from $table where itemtype=?");
148            $sth->execute($itemtype);
149            $total += $sth->fetchrow_hashref->{total};
150            $sth->finish;
151         }
152
153         my $sth=$dbh->prepare("select itemtype,description,loanlength,renewalsallowed,rentalcharge from itemtypes where itemtype=?");
154         $sth->execute($itemtype);
155         my $data=$sth->fetchrow_hashref;
156         $sth->finish;
157
158         $template->param(itemtype => $itemtype,
159                                                         description => $data->{'description'},
160                                                         loanlength => $data->{'loanlength'},
161                                                         renewalsallowed => $data->{'renewalsallowed'},
162                                                         rentalcharge => $data->{'rentalcharge'},
163                                                         total => $total);
164                                                                                                         # END $OP eq DELETE_CONFIRM
165 ################## DELETE_CONFIRMED ##################################
166 # called by delete_confirm, used to effectively confirm deletion of data in DB
167 } elsif ($op eq 'delete_confirmed') {
168         #start the page and read in includes
169         my $dbh = C4::Context->dbh;
170         my $itemtype=uc($input->param('itemtype'));
171         my $sth=$dbh->prepare("delete from itemtypes where itemtype=?");
172         $sth->execute($itemtype);
173         $sth->finish;
174         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=itemtypes.pl\"></html>";
175         exit;
176                                                                                                         # END $OP eq DELETE_CONFIRMED
177 ################## DEFAULT ##################################
178 } else { # DEFAULT
179         my $env;
180         my ($count,$results)=StringSearch($env,$searchfield,'web');
181         my $toggle="white";
182         my @loop_data;
183         for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){
184                 my %row_data;
185                 if ($toggle eq 'white'){
186                         $row_data{toggle}="#ffffcc";
187                 } else {
188                         $row_data{toggle}="white";
189                 }
190                 $row_data{itemtype} = $results->[$i]{'itemtype'};
191                 $row_data{description} = $results->[$i]{'description'};
192                 $row_data{loanlength} = $results->[$i]{'loanlength'};
193                 $row_data{renewalsallowed} = $results->[$i]{'renewalsallowed'};
194                 $row_data{rentalcharge} = $results->[$i]{'rentalcharge'};
195                 push(@loop_data, \%row_data);
196         }
197         $template->param(loop => \@loop_data);
198         if ($offset>0) {
199                 my $prevpage = $offset-$pagesize;
200                 $template->param(previous => "$script_name?offset=".$prevpage);
201         }
202         if ($offset+$pagesize<$count) {
203                 my $nextpage =$offset+$pagesize;
204                 $template->param(next => "$script_name?offset=".$nextpage);
205         }
206 } #---- END $OP eq DEFAULT
207 output_html_with_http_headers $input, $cookie, $template->output;
208
209 # Local Variables:
210 # tab-width: 4
211 # End: