Bug 7790 - tools/manage-marc-import.pl breaks with plack
[koha.git] / admin / itemtypes.pl
blob3219da340ebe4a23bf56a8c632b4da5b8e562597
1 #!/usr/bin/perl
3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 =head1 admin/itemtypes.pl
22 script to administer the categories table
23 written 20/02/2002 by paul.poulain@free.fr
24 This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html)
26 ALGO :
27 this script use an $op to know what to do.
28 if $op is empty or none of the above values,
29 - the default screen is build (with all records, or filtered datas).
30 - the user can clic on add, modify or delete record.
31 if $op=add_form
32 - if primkey exists, this is a modification,so we read the $primkey record
33 - builds the add/modify form
34 if $op=add_validate
35 - the user has just send datas, so we create/modify the record
36 if $op=delete_form
37 - we show the record having primkey=$primkey and ask for deletion validation form
38 if $op=delete_confirm
39 - we delete the record having primkey=$primkey
41 =cut
43 use strict;
44 #use warnings; FIXME - Bug 2505
45 use CGI;
47 use List::Util qw/min/;
48 use File::Spec;
50 use C4::Koha;
51 use C4::Context;
52 use C4::Auth;
53 use C4::Output;
55 sub StringSearch {
56 my ( $searchstring, $type ) = @_;
57 my $dbh = C4::Context->dbh;
58 $searchstring =~ s/\'/\\\'/g;
59 my @data = split( ' ', $searchstring );
60 my $sth = $dbh->prepare(
61 "SELECT * FROM itemtypes WHERE (description LIKE ?) ORDER BY itemtype"
63 $sth->execute("$data[0]%");
64 return $sth->fetchall_arrayref({}); # return ref-to-array of ref-to-hashes
65 # like [ fetchrow_hashref(), fetchrow_hashref() ... ]
68 my $input = new CGI;
69 my $searchfield = $input->param('description');
70 my $script_name = "/cgi-bin/koha/admin/itemtypes.pl";
71 my $itemtype = $input->param('itemtype');
72 my $op = $input->param('op');
73 $searchfield =~ s/\,//g;
74 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
76 template_name => "admin/itemtypes.tmpl",
77 query => $input,
78 type => "intranet",
79 authnotrequired => 0,
80 flagsrequired => { parameters => 1 },
81 debug => 1,
85 $template->param(script_name => $script_name);
86 if ($op) {
87 $template->param($op => 1); # we show only the TMPL_VAR names $op
88 } else {
89 $template->param(else => 1);
92 my $dbh = C4::Context->dbh;
94 ################## ADD_FORM ##################################
95 # called by default. Used to create form to add or modify a record
96 if ( $op eq 'add_form' ) {
97 #---- if primkey exists, it's a modify action, so read values to modify...
98 my $data;
99 if ($itemtype) {
100 my $sth = $dbh->prepare("select * from itemtypes where itemtype=?");
101 $sth->execute($itemtype);
102 $data = $sth->fetchrow_hashref;
105 my $imagesets = C4::Koha::getImageSets( checked => $data->{'imageurl'} );
107 my $remote_image = undef;
108 if ( defined $data->{imageurl} and $data->{imageurl} =~ /^http/i ) {
109 $remote_image = $data->{imageurl};
112 $template->param(
113 itemtype => $itemtype,
114 description => $data->{'description'},
115 rentalcharge => sprintf( "%.2f", $data->{'rentalcharge'} ),
116 notforloan => $data->{'notforloan'},
117 imageurl => $data->{'imageurl'},
118 template => C4::Context->preference('template'),
119 summary => $data->{summary},
120 imagesets => $imagesets,
121 remote_image => $remote_image,
124 # END $OP eq ADD_FORM
125 ################## ADD_VALIDATE ##################################
126 # called by add_form, used to insert/modify data in DB
128 elsif ( $op eq 'add_validate' ) {
129 my $query = "
130 SELECT itemtype
131 FROM itemtypes
132 WHERE itemtype = ?
134 my $sth = $dbh->prepare($query);
135 $sth->execute($itemtype);
136 if ( $sth->fetchrow ) { # it's a modification
137 my $query2 = '
138 UPDATE itemtypes
139 SET description = ?
140 , rentalcharge = ?
141 , notforloan = ?
142 , imageurl = ?
143 , summary = ?
144 WHERE itemtype = ?
146 $sth = $dbh->prepare($query2);
147 $sth->execute(
148 $input->param('description'),
149 $input->param('rentalcharge'),
150 ( $input->param('notforloan') ? 1 : 0 ),
152 $input->param('image') eq 'removeImage' ? '' : (
153 $input->param('image') eq 'remoteImage'
154 ? $input->param('remoteImage')
155 : $input->param('image') . ""
158 $input->param('summary'),
159 $input->param('itemtype')
162 else { # add a new itemtype & not modif an old
163 my $query = "
164 INSERT INTO itemtypes
165 (itemtype,description,rentalcharge, notforloan, imageurl,summary)
166 VALUES
167 (?,?,?,?,?,?);
169 my $sth = $dbh->prepare($query);
170 my $image = $input->param('image');
171 $sth->execute(
172 $input->param('itemtype'),
173 $input->param('description'),
174 $input->param('rentalcharge'),
175 $input->param('notforloan') ? 1 : 0,
176 $image eq 'removeImage' ? '' :
177 $image eq 'remoteImage' ? $input->param('remoteImage') :
178 $image,
179 $input->param('summary'),
183 print $input->redirect('itemtypes.pl');
184 exit;
186 # END $OP eq ADD_VALIDATE
187 ################## DELETE_CONFIRM ##################################
188 # called by default form, used to confirm deletion of data in DB
190 elsif ( $op eq 'delete_confirm' ) {
191 # Check both items and biblioitems
192 my $sth = $dbh->prepare('
193 SELECT COUNT(*) AS total FROM (
194 SELECT itemtype AS t FROM biblioitems
195 UNION
196 SELECT itype AS t FROM items
197 ) AS tmp
198 WHERE tmp.t=?
200 $sth->execute($itemtype);
201 my $total = $sth->fetchrow_hashref->{'total'};
203 my $sth =
204 $dbh->prepare(
205 "select itemtype,description,rentalcharge from itemtypes where itemtype=?"
207 $sth->execute($itemtype);
208 my $data = $sth->fetchrow_hashref;
209 $template->param(
210 itemtype => $itemtype,
211 description => $data->{description},
212 rentalcharge => sprintf( "%.2f", $data->{rentalcharge} ),
213 imageurl => $data->{imageurl},
214 total => $total
217 # END $OP eq DELETE_CONFIRM
218 ################## DELETE_CONFIRMED ##################################
219 # called by delete_confirm, used to effectively confirm deletion of data in DB
221 elsif ( $op eq 'delete_confirmed' ) {
222 my $itemtype = uc( $input->param('itemtype') );
223 my $sth = $dbh->prepare("delete from itemtypes where itemtype=?");
224 $sth->execute($itemtype);
225 $sth = $dbh->prepare("delete from issuingrules where itemtype=?");
226 $sth->execute($itemtype);
227 print $input->redirect('itemtypes.pl');
228 exit;
229 # END $OP eq DELETE_CONFIRMED
230 ################## DEFAULT ##################################
232 else { # DEFAULT
233 my ($results) = StringSearch( $searchfield, 'web' );
234 my @loop;
235 foreach my $itemtype ( @{$results} ) {
236 $itemtype->{imageurl} = getitemtypeimagelocation( 'intranet', $itemtype->{imageurl} );
237 $itemtype->{rentalcharge} = sprintf( '%.2f', $itemtype->{rentalcharge} );
238 push( @loop, $itemtype );
241 $template->param(
242 loop => \@loop,
244 } #---- END $OP eq DEFAULT
246 output_html_with_http_headers $input, $cookie, $template->output;