removed (replaced by issuingrules.pl, script to come)
[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 CGI;
42 use C4::Context;
43 use C4::Output;
44 use C4::Search;
45 use HTML::Template;
46 use C4::Auth;
47 use C4::Interface::CGI::Output;
48
49 sub StringSearch  {
50         my ($env,$searchstring,$type)=@_;
51         my $dbh = C4::Context->dbh;
52         $searchstring=~ s/\'/\\\'/g;
53         my @data=split(' ',$searchstring);
54         my $count=@data;
55         my $sth=$dbh->prepare("Select * from categories where (description like ?)");
56         $sth->execute("$data[0]%");
57         my @results;
58         while (my $data=$sth->fetchrow_hashref){
59         push(@results,$data);
60         }
61         #  $sth->execute;
62         $sth->finish;
63         return (scalar(@results),\@results);
64 }
65
66 my $input = new CGI;
67 my $searchfield=$input->param('description');
68 my $script_name="/cgi-bin/koha/admin/categorie.pl";
69 my $categorycode=$input->param('categorycode');
70 my $op = $input->param('op');
71 $searchfield=~ s/\,//g;
72
73 my ($template, $loggedinuser, $cookie) 
74     = get_template_and_user({template_name => "parameters/categoryitem.tmpl",
75                              query => $input,
76                              type => "intranet",
77                              authnotrequired => 0,
78                              debug => 1,
79                              });
80
81
82 $template->param(script_name => $script_name,
83                  categorycode => $categorycode,
84                  searchfield => $searchfield);
85
86
87 ################## ADD_FORM ##################################
88 # called by default. Used to create form to add or  modify a record
89 if ($op eq 'add_form') {
90         $template->param(add_form => 1);
91         #---- if primkey exists, it's a modify action, so read values to modify...
92         my $data;
93         if ($categorycode) {
94                 my $dbh = C4::Context->dbh;
95                 my $sth=$dbh->prepare("select categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,finetype,bulk,enrolmentfee,issuelimit,reservefee,overduenoticerequired from categories where categorycode=?");
96                 $sth->execute($categorycode);
97                 $data=$sth->fetchrow_hashref;
98                 $sth->finish;
99         }
100
101         $template->param(description             => $data->{'description'},
102                                 enrolmentperiod         => $data->{'enrolmentperiod'},
103                                 upperagelimit           => $data->{'upperagelimit'},
104                                 dateofbirthrequired     => $data->{'dateofbirthrequired'},
105                                 finetype                => $data->{'finetype'},
106                                 bulk                    => $data->{'bulk'},
107                                 enrolmentfee            => $data->{'enrolmentfee'},
108                                 overduenoticerequired   => $data->{'overduenoticerequired'},
109                                 issuelimit              => $data->{'issuelimit'},
110                                 reservefee              => $data->{'reservefee'});
111
112
113 ;
114                                                                                                         # END $OP eq ADD_FORM
115 ################## ADD_VALIDATE ##################################
116 # called by add_form, used to insert/modify data in DB
117 } elsif ($op eq 'add_validate') {
118         $template->param(add_validate => 1);
119         my $dbh = C4::Context->dbh;
120         my $sth=$dbh->prepare("replace categories (categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,finetype,bulk,enrolmentfee,issuelimit,reservefee,overduenoticerequired) values (?,?,?,?,?,?,?,?,?,?,?)");
121         $sth->execute(map {$input->param($_)} ('categorycode','description','enrolmentperiod','upperagelimit','dateofbirthrequired','finetype','bulk','enrolmentfee','issuelimit','reservefee','overduenoticerequired'));
122         $sth->finish;
123         print "data recorded";
124         print "<form action='$script_name' method=post>";
125         print "<input type=submit value=OK>";
126         print "</form>";
127                                                                                                         # END $OP eq ADD_VALIDATE
128 ################## DELETE_CONFIRM ##################################
129 # called by default form, used to confirm deletion of data in DB
130 } elsif ($op eq 'delete_confirm') {
131         $template->param(delete_confirm => 1);
132         my $dbh = C4::Context->dbh;
133         my $sth=$dbh->prepare("select count(*) as total from categoryitem where categorycode=?");
134         $sth->execute($categorycode);
135         my $total = $sth->fetchrow_hashref;
136         print "TOTAL : $categorycode : $total->{'total'}<br>";
137         $sth->finish;
138         my $sth2=$dbh->prepare("select categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,finetype,bulk,enrolmentfee,issuelimit,reservefee,overduenoticerequired from categories where categorycode=?");
139         $sth2->execute($categorycode);
140         my $data=$sth2->fetchrow_hashref;
141         $sth2->finish;
142
143         $template->param(description             => $data->{'description'},
144                                 enrolmentperiod         => $data->{'enrolmentperiod'},
145                                 upperagelimit           => $data->{'upperagelimit'},
146                                 dateofbirthrequired     => $data->{'dateofbirthrequired'},
147                                 finetype                => $data->{'finetype'},
148                                 bulk                    => $data->{'bulk'},
149                                 enrolmentfee            => $data->{'enrolmentfee'},
150                                 overduenoticerequired   => $data->{'overduenoticerequired'},
151                                 issuelimit              => $data->{'issuelimit'},
152                                 reservefee              => $data->{'reservefee'});
153
154                                                                                                         # END $OP eq DELETE_CONFIRM
155 ################## DELETE_CONFIRMED ##################################
156 # called by delete_confirm, used to effectively confirm deletion of data in DB
157 } elsif ($op eq 'delete_confirmed') {
158         $template->param(delete_confirmed => 1);
159         my $dbh = C4::Context->dbh;
160         my $categorycode=uc($input->param('categorycode'));
161         my $sth=$dbh->prepare("delete from categories where categorycode=?");
162         $sth->execute($categorycode);
163         $sth->finish;
164                                                                                                         # END $OP eq DELETE_CONFIRMED
165 } else { # DEFAULT
166         $template->param(else => 1);
167         my $env;
168         my @loop;
169         my ($count,$results)=StringSearch($env,$searchfield,'web');
170         my $toggle = 'white';
171         for (my $i=0; $i < $count; $i++){
172                 my %row = (categorycode => $results->[$i]{'categorycode'},
173                                 description => $results->[$i]{'description'},
174                                 enrolmentperiod => $results->[$i]{'enrolmentperiod'},
175                                 upperagelimit => $results->[$i]{'upperagelimit'},
176                                 dateofbirthrequired => $results->[$i]{'dateofbirthrequired'},
177                                 finetype => $results->[$i]{'finetype'},
178                                 bulk => $results->[$i]{'bulk'},
179                                 enrolmentfee => $results->[$i]{'enrolmentfee'},
180                                 overduenoticerequired => $results->[$i]{'overduenoticerequired'},
181                                 issuelimit => $results->[$i]{'issuelimit'},
182                                 reservefee => $results->[$i]{'reservefee'},
183                                 toggle => $toggle );
184                 push @loop, \%row;
185                 if ( $toggle eq 'white' )
186                 {
187                         $toggle = '#ffffcc';
188                 }
189                 else
190                 {
191                         $toggle = 'white';
192                 }
193
194         }
195         $template->param(loop => \@loop);
196
197
198 } #---- END $OP eq DEFAULT
199
200 output_html_with_http_headers $input, $cookie, $template->output;
201
202
203