various 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,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                                                         renewalsallowed => $data->{'renewalsallowed'},
107                                                         rentalcharge => $data->{'rentalcharge'},
108                                                         notforloan => $data->{'notforloan'}
109                                                         );
110 ;
111                                                                                                         # END $OP eq ADD_FORM
112 ################## ADD_VALIDATE ##################################
113 # called by add_form, used to insert/modify data in DB
114 } elsif ($op eq 'add_validate') {
115         my $dbh = C4::Context->dbh;
116         my $query = "replace itemtypes (itemtype,description,renewalsallowed,rentalcharge,notforloan) values (";
117         $query.= $dbh->quote($input->param('itemtype')).",";
118         $query.= $dbh->quote($input->param('description')).",";
119         if ($input->param('renewalsallowed') ne 1) {
120                 $query.= "0,";
121         } else {
122                 $query.= "1,";
123         }
124         $query.= $dbh->quote($input->param('rentalcharge')).",";
125         if ($input->param('notforloan') ne 1) {
126                 $query.= "0)";
127         } else {
128                 $query.= "1)";
129         }
130         my $sth=$dbh->prepare($query);
131         $sth->execute;
132         $sth->finish;
133         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=itemtypes.pl\"></html>";
134         exit;
135                                                                                                         # END $OP eq ADD_VALIDATE
136 ################## DELETE_CONFIRM ##################################
137 # called by default form, used to confirm deletion of data in DB
138 } elsif ($op eq 'delete_confirm') {
139         #start the page and read in includes
140         my $dbh = C4::Context->dbh;
141
142         # Check both categoryitem and biblioitems, see Bug 199
143         my $total = 0;
144         for my $table ('issuingrules', 'biblioitems') {
145            my $sth=$dbh->prepare("select count(*) as total from $table where itemtype=?");
146            $sth->execute($itemtype);
147            $total += $sth->fetchrow_hashref->{total};
148            $sth->finish;
149         }
150
151         my $sth=$dbh->prepare("select itemtype,description,renewalsallowed,rentalcharge from itemtypes where itemtype=?");
152         $sth->execute($itemtype);
153         my $data=$sth->fetchrow_hashref;
154         $sth->finish;
155
156         $template->param(itemtype => $itemtype,
157                                                         description => $data->{'description'},
158                                                         renewalsallowed => $data->{'renewalsallowed'},
159                                                         rentalcharge => $data->{'rentalcharge'},
160                                                         total => $total);
161                                                                                                         # END $OP eq DELETE_CONFIRM
162 ################## DELETE_CONFIRMED ##################################
163 # called by delete_confirm, used to effectively confirm deletion of data in DB
164 } elsif ($op eq 'delete_confirmed') {
165         #start the page and read in includes
166         my $dbh = C4::Context->dbh;
167         my $itemtype=uc($input->param('itemtype'));
168         my $sth=$dbh->prepare("delete from itemtypes where itemtype=?");
169         $sth->execute($itemtype);
170         $sth->finish;
171         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=itemtypes.pl\"></html>";
172         exit;
173                                                                                                         # END $OP eq DELETE_CONFIRMED
174 ################## DEFAULT ##################################
175 } else { # DEFAULT
176         my $env;
177         my ($count,$results)=StringSearch($env,$searchfield,'web');
178         my $toggle="white";
179         my @loop_data;
180         for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){
181                 my %row_data;
182                 if ($toggle eq 'white'){
183                         $row_data{toggle}="#ffffcc";
184                 } else {
185                         $row_data{toggle}="white";
186                 }
187                 $row_data{itemtype} = $results->[$i]{'itemtype'};
188                 $row_data{description} = $results->[$i]{'description'};
189                 $row_data{renewalsallowed} = $results->[$i]{'renewalsallowed'};
190                 $row_data{rentalcharge} = $results->[$i]{'rentalcharge'};
191                 push(@loop_data, \%row_data);
192         }
193         $template->param(loop => \@loop_data);
194         if ($offset>0) {
195                 my $prevpage = $offset-$pagesize;
196                 $template->param(previous => "$script_name?offset=".$prevpage);
197         }
198         if ($offset+$pagesize<$count) {
199                 my $nextpage =$offset+$pagesize;
200                 $template->param(next => "$script_name?offset=".$nextpage);
201         }
202 } #---- END $OP eq DEFAULT
203 output_html_with_http_headers $input, $cookie, $template->output;
204
205 # Local Variables:
206 # tab-width: 4
207 # End: