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