improving systempreferences to show lists, radio button where applicable (was partial...
[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,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                                 reservefee              => $data->{'reservefee'});
110
111
112 ;
113                                                                                                         # END $OP eq ADD_FORM
114 ################## ADD_VALIDATE ##################################
115 # called by add_form, used to insert/modify data in DB
116 } elsif ($op eq 'add_validate') {
117         $template->param(add_validate => 1);
118         my $dbh = C4::Context->dbh;
119         my $sth=$dbh->prepare("replace categories (categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,finetype,bulk,enrolmentfee,reservefee,overduenoticerequired) values (?,?,?,?,?,?,?,?,?,?)");
120         $sth->execute(map {$input->param($_)} ('categorycode','description','enrolmentperiod','upperagelimit','dateofbirthrequired','finetype','bulk','enrolmentfee','reservefee','overduenoticerequired'));
121         $sth->finish;
122         print "data recorded";
123         print "<form action='$script_name' method=post>";
124         print "<input type=submit value=OK>";
125         print "</form>";
126                                                                                                         # END $OP eq ADD_VALIDATE
127 ################## DELETE_CONFIRM ##################################
128 # called by default form, used to confirm deletion of data in DB
129 } elsif ($op eq 'delete_confirm') {
130         $template->param(delete_confirm => 1);
131         my $dbh = C4::Context->dbh;
132         my $sth=$dbh->prepare("select count(*) as total from categoryitem where categorycode=?");
133         $sth->execute($categorycode);
134         my $total = $sth->fetchrow_hashref;
135         print "TOTAL : $categorycode : $total->{'total'}<br>";
136         $sth->finish;
137         my $sth2=$dbh->prepare("select categorycode,description,enrolmentperiod,upperagelimit,dateofbirthrequired,finetype,bulk,enrolmentfee,reservefee,overduenoticerequired from categories where categorycode=?");
138         $sth2->execute($categorycode);
139         my $data=$sth2->fetchrow_hashref;
140         $sth2->finish;
141
142         $template->param(description             => $data->{'description'},
143                                 enrolmentperiod         => $data->{'enrolmentperiod'},
144                                 upperagelimit           => $data->{'upperagelimit'},
145                                 dateofbirthrequired     => $data->{'dateofbirthrequired'},
146                                 finetype                => $data->{'finetype'},
147                                 bulk                    => $data->{'bulk'},
148                                 enrolmentfee            => $data->{'enrolmentfee'},
149                                 overduenoticerequired   => $data->{'overduenoticerequired'},
150                                 reservefee              => $data->{'reservefee'});
151
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         $template->param(delete_confirmed => 1);
157         my $dbh = C4::Context->dbh;
158         my $categorycode=uc($input->param('categorycode'));
159         my $sth=$dbh->prepare("delete from categories where categorycode=?");
160         $sth->execute($categorycode);
161         $sth->finish;
162                                                                                                         # END $OP eq DELETE_CONFIRMED
163 } else { # DEFAULT
164         $template->param(else => 1);
165         my $env;
166         my @loop;
167         my ($count,$results)=StringSearch($env,$searchfield,'web');
168         my $toggle = 'white';
169         for (my $i=0; $i < $count; $i++){
170                 my %row = (categorycode => $results->[$i]{'categorycode'},
171                                 description => $results->[$i]{'description'},
172                                 enrolmentperiod => $results->[$i]{'enrolmentperiod'},
173                                 upperagelimit => $results->[$i]{'upperagelimit'},
174                                 dateofbirthrequired => $results->[$i]{'dateofbirthrequired'},
175                                 finetype => $results->[$i]{'finetype'},
176                                 bulk => $results->[$i]{'bulk'},
177                                 enrolmentfee => $results->[$i]{'enrolmentfee'},
178                                 overduenoticerequired => $results->[$i]{'overduenoticerequired'},
179                                 reservefee => $results->[$i]{'reservefee'},
180                                 toggle => $toggle );
181                 push @loop, \%row;
182                 if ( $toggle eq 'white' )
183                 {
184                         $toggle = '#ffffcc';
185                 }
186                 else
187                 {
188                         $toggle = 'white';
189                 }
190
191         }
192         $template->param(loop => \@loop);
193
194
195 } #---- END $OP eq DEFAULT
196
197 output_html_with_http_headers $input, $cookie, $template->output;
198
199
200