rel_3_0 moved to HEAD
[koha.git] / admin / itemtypecategory.pl
1 #!/usr/bin/perl
2 # NOTE: 4-character tabs
3
4 #script to administer the itemtype categories table
5 #modified from the itemtype script written 20/02/2002 by paul.poulain@free.fr
6 #This script written by waylon@robertson.net.nz at 2nd June, 2005
7 # This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html)
8
9 # ALGO :
10 # this script use an $op to know what to do.
11 # if $op is empty or none of the above values,
12 #       - the default screen is build (with all records, or filtered datas).
13 #       - the   user can clic on add, modify or delete record.
14 # if $op=add_form
15 #       - if primkey exists, this is a modification,so we read the $primkey record
16 #       - builds the add/modify form
17 # if $op=add_validate
18 #       - the user has just send datas, so we create/modify the record
19 # if $op=delete_form
20 #       - we show the record having primkey=$primkey and ask for deletion validation form
21 # if $op=delete_confirm
22 #       - we delete the record having primkey=$primkey
23
24
25 # Copyright 2000-2002 Katipo Communications
26 #
27 # This file is part of Koha.
28 #
29 # Koha is free software; you can redistribute it and/or modify it under the
30 # terms of the GNU General Public License as published by the Free Software
31 # Foundation; either version 2 of the License, or (at your option) any later
32 # version.
33 #
34 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
35 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
36 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
37 #
38 # You should have received a copy of the GNU General Public License along with
39 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
40 # Suite 330, Boston, MA  02111-1307 USA
41
42 use strict;
43 use CGI;
44 use C4::Context;
45 use C4::Output;
46 use C4::Auth;
47 use C4::Interface::CGI::Output;
48
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 categorytable where (description like ?) order by categorycode");
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/itemtypecategory.pl";
71 my $categorycode=$input->param('categorycode');
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 => "admin/itemtypecategory.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     my $itemtypes;
98     my $dbh = C4::Context->dbh;
99     my @itemtypesselected;
100         if ($categorycode) {
101         my $sth=$dbh->prepare("select categorycode,description,itemtypecodes from categorytable where categorycode=?");
102                 $sth->execute($categorycode);
103                 $data=$sth->fetchrow_hashref;
104                 $sth->finish;
105         @itemtypesselected = split ( /\|/, $data->{'itemtypecodes'} );
106         }
107
108     my $sth=$dbh->prepare("select description,itemtype from itemtypes order by description");
109     $sth->execute;
110     while (my ($description,$itemtype) = $sth->fetchrow) {
111         $itemtypes .='<td><input type="checkbox" name="itemtypecodes" value="'.$itemtype.'"';
112         if(grep /$itemtype/,@itemtypesselected){
113             $itemtypes .=' checked';
114         }
115         $itemtypes .='>'.$description.'</td>';
116     }
117
118         $template->param(categorycode => $categorycode,
119                                                         description => $data->{'description'},
120                             itemtypes => $itemtypes
121                                                         );
122 ;
123                                                                                                         # END $OP eq ADD_FORM
124 ################## ADD_VALIDATE ##################################
125 # called by add_form, used to insert/modify data in DB
126 } elsif ($op eq 'add_validate') {
127         my $dbh = C4::Context->dbh;
128     my @itemtypecodesarray = $input->param('itemtypecodes');
129     my $itemtypecodes=join('|',@itemtypecodesarray);
130         my $sth=$dbh->prepare("replace categorytable (categorycode,description,itemtypecodes) values (?,?,?)");
131         $sth->execute(
132                 $input->param('categorycode'),$input->param('description'),
133                 $itemtypecodes
134         );
135         $sth->finish;
136         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=itemtypecategory.pl\"></html>";
137         exit;
138                                                                                                         # END $OP eq ADD_VALIDATE
139 ################## DELETE_CONFIRM ##################################
140 # called by default form, used to confirm deletion of data in DB
141 } elsif ($op eq 'delete_confirm') {
142         #start the page and read in includes
143         my $dbh = C4::Context->dbh;
144         my $sth=$dbh->prepare("select categorycode,description,itemtypecodes from categorytable where categorycode=?");
145         $sth->execute($categorycode);
146         my $data=$sth->fetchrow_hashref;
147         $sth->finish;
148
149         $template->param(categorycode => $categorycode,
150                                                         description => $data->{'description'},
151                                                         itemtypecodes => $data->{'itemtypecodes'});
152                                                                                                         # END $OP eq DELETE_CONFIRM
153 ################## DELETE_CONFIRMED ##################################
154 # called by delete_confirm, used to effectively confirm deletion of data in DB
155 } elsif ($op eq 'delete_confirmed') {
156         #start the page and read in includes
157         my $dbh = C4::Context->dbh;
158         my $itemtype=uc($input->param('categorycode'));
159         my $sth=$dbh->prepare("delete from categorytable where categorycode=?");
160         $sth->execute($itemtype);
161         $sth->finish;
162         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=itemtypecategory.pl\"></html>";
163         exit;
164                                                                                                         # END $OP eq DELETE_CONFIRMED
165 ################## DEFAULT ##################################
166 } else { # DEFAULT
167         my $env;
168         my ($count,$results)=StringSearch($env,$searchfield,'web');
169         my $toggle=0;
170         my @loop_data;
171         for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){
172                 my %row_data;
173                 if ($toggle eq 0){
174                         $toggle=1;
175                 } else {
176                         $toggle=0;
177                 }
178                 $row_data{toggle} = $toggle;
179                 $row_data{categorycode} = $results->[$i]{categorycode};
180                 $row_data{description} = $results->[$i]{description};
181                 $row_data{itemtypecodes} = $results->[$i]{itemtypecodes};
182                 push(@loop_data, \%row_data);
183         }
184         $template->param(loop => \@loop_data);
185         if ($offset>0) {
186                 my $prevpage = $offset-$pagesize;
187                 $template->param(previous => "$script_name?offset=".$prevpage);
188         }
189         if ($offset+$pagesize<$count) {
190                 my $nextpage =$offset+$pagesize;
191                 $template->param(next => "$script_name?offset=".$nextpage);
192         }
193 } #---- END $OP eq DEFAULT
194 output_html_with_http_headers $input, $cookie, $template->output;
195
196 # Local Variables:
197 # tab-width: 4
198 # End: