style sheet to hide styles from Netscape 4.7
[koha.git] / admin / aqbudget.pl
1 #!/usr/bin/perl
2
3 #script to administer the aqbudget 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::Date;
43 use C4::Auth;
44 use C4::Context;
45 use C4::Output;
46 use C4::Interface::CGI::Output;
47 use C4::Search;
48 use HTML::Template;
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 $query="Select aqbudgetid,bookfundid,startdate,enddate,budgetamount from aqbudget where (bookfundid like \"$data[0]%\") order by bookfundid,aqbudgetid";
57         my $sth=$dbh->prepare($query);
58         $sth->execute;
59         my @results;
60         my $cnt=0;
61         while (my $data=$sth->fetchrow_hashref){
62         push(@results,$data);
63         $cnt ++;
64         }
65         #  $sth->execute;
66         $sth->finish;
67         return ($cnt,\@results);
68 }
69
70 my $input = new CGI;
71 my $searchfield=$input->param('searchfield');
72 my $offset=$input->param('offset');
73 my $script_name="/cgi-bin/koha/admin/aqbudget.pl";
74 my $bookfundid=$input->param('bookfundid');
75 my $aqbudgetid=$input->param('aqbudgetid');
76 my $pagesize=20;
77 my $op = $input->param('op');
78 $searchfield=~ s/\,//g;
79
80 my ($template, $borrowernumber, $cookie)
81     = get_template_and_user({template_name => "parameters/aqbudget.tmpl",
82                              query => $input,
83                              type => "intranet",
84                              authnotrequired => 0,
85                              flagsrequired => {parameters => 1},
86                              debug => 1,
87                              });
88
89 if ($op) {
90 $template->param(script_name => $script_name,
91                                                 $op              => 1); # we show only the TMPL_VAR names $op
92 } else {
93 $template->param(script_name => $script_name,
94                                                 else              => 1); # we show only the TMPL_VAR names $op
95 }
96
97 $template->param(action => $script_name);
98 ################## ADD_FORM ##################################
99 # called by default. Used to create form to add or  modify a record
100 if ($op eq 'add_form') {
101         #---- if primkey exists, it's a modify action, so read values to modify...
102         my $dataaqbudget;
103         my $dataaqbookfund;
104         if ($aqbudgetid) {
105                 my $dbh = C4::Context->dbh;
106                 my $query="select aqbudgetid,bookfundname,aqbookfund.bookfundid,startdate,enddate,budgetamount from aqbudget,aqbookfund where aqbudgetid='$aqbudgetid' and aqbudget.bookfundid=aqbookfund.bookfundid";
107 #               print $query;
108                 my $sth=$dbh->prepare($query);
109                 $sth->execute;
110                 $dataaqbudget=$sth->fetchrow_hashref;
111                 $sth->finish;
112         }
113         my $header;
114         if ($aqbudgetid) {
115                 $header = "Modify budget";
116         } else {
117                 $header = "Add budget";
118         }
119         $template->param(header => $header);
120         if ($aqbudgetid) {
121             $template->param(modify => 1);
122             $template->param(bookfundid => $dataaqbudget->{bookfundid});
123             $template->param(bookfundname => $dataaqbudget->{bookfundname});
124         } else {
125             $template->param(bookfundid => $bookfundid,
126                                                                 adding => 1);
127         }
128         $template->param(dateformat => display_date_format(),
129                                                         aqbudgetid => $dataaqbudget->{'aqbudgetid'},
130                                                         startdate => format_date($dataaqbudget->{'startdate'}),
131                                                         enddate => format_date($dataaqbudget->{'enddate'}),
132                                                         budgetamount => $dataaqbudget->{'budgetamount'}
133         );
134                                                                                                         # END $OP eq ADD_FORM
135 ################## ADD_VALIDATE ##################################
136 # called by add_form, used to insert/modify data in DB
137 } elsif ($op eq 'add_validate') {
138         my $dbh = C4::Context->dbh;
139         my $query = "replace aqbudget (aqbudgetid,bookfundid,startdate,enddate,budgetamount) values (?,?,?,?,?)";
140         my $sth=$dbh->prepare($query);
141         $sth->execute($input->param('aqbudgetid'),$input->param('bookfundid'),
142                                                 format_date_in_iso($input->param('startdate')),
143                                                 format_date_in_iso($input->param('enddate')),
144                                                 $input->param('budgetamount')
145                                                 );
146         $sth->finish;
147          print $input->redirect("aqbookfund.pl");
148          exit;
149 # END $OP eq ADD_VALIDATE
150 ################## DELETE_CONFIRM ##################################
151 # called by default form, used to confirm deletion of data in DB
152 } elsif ($op eq 'delete_confirm') {
153         my $dbh = C4::Context->dbh;
154         my $sth=$dbh->prepare("select aqbudgetid,bookfundid,startdate,enddate,budgetamount from aqbudget where aqbudgetid='$aqbudgetid'");
155         $sth->execute;
156         my $data=$sth->fetchrow_hashref;
157         $sth->finish;
158         $template->param(bookfundid => $bookfundid);
159         $template->param(aqbudgetid => $data->{'aqbudgetid'});
160         $template->param(startdate => format_date($data->{'startdate'}));
161         $template->param(enddate => format_date($data->{'enddate'}));
162         $template->param(budgetamount => $data->{'budgetamount'});
163                                                                                                         # END $OP eq DELETE_CONFIRM
164 ################## DELETE_CONFIRMED ##################################
165 # called by delete_confirm, used to effectively confirm deletion of data in DB
166 } elsif ($op eq 'delete_confirmed') {
167         my $dbh = C4::Context->dbh;
168         my $aqbudgetid=uc($input->param('aqbudgetid'));
169         my $query = "delete from aqbudget where aqbudgetid='$aqbudgetid'";
170         my $sth=$dbh->prepare($query);
171         $sth->execute;
172         $sth->finish;
173          print $input->redirect("aqbookfund.pl");
174          return;
175                                                                                                         # END $OP eq DELETE_CONFIRMED
176 ################## DEFAULT ##################################
177 } else { # DEFAULT
178         if  ($searchfield ne '') {
179                 $template->param(search => 1);
180                 $template->param(searchfield => $searchfield);
181         }
182         my $env;
183         my ($count,$results)=StringSearch($env,$searchfield,'web');
184         my $toggle="white";
185         my @loop_data =();
186         for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){
187                 #find out stats
188         #       my ($od,$issue,$fines)=categdata2($env,$results->[$i]{'borrowernumber'});
189         #       $fines=$fines+0;
190                 my $dataaqbookfund;
191                 my $dbh = C4::Context->dbh;
192                 my $query="select bookfundid,bookfundname from aqbookfund where bookfundid=?";
193 #               print $query;
194                 my $sth=$dbh->prepare($query);
195                 $sth->execute($results->[$i]{'bookfundid'});
196                 $dataaqbookfund=$sth->fetchrow_hashref;
197                 $sth->finish;
198                 my @toggle = ();
199                 my @bookfundid = ();
200                 my @bookfundname = ();
201                 my @startdate = ();
202                 my @enddate = ();
203                 my @budgetamount = ();
204                 push(@toggle,$toggle);
205                 push(@bookfundid,$results->[$i]{'bookfundid'});
206                 push(@bookfundname,$dataaqbookfund->{'bookfundname'});
207                 push(@startdate,format_date($results->[$i]{'startdate'}));
208                 push(@enddate,format_date($results->[$i]{'enddate'}));
209                 push(@budgetamount,$results->[$i]{'budgetamount'});
210                 if ($toggle eq 'white'){
211                         $toggle="#ffffcc";
212                 } else {
213                         $toggle="white";
214                 }
215                 while (@toggle and @bookfundid and @bookfundname and @startdate and @enddate and @budgetamount) { 
216            my %row_data;
217            $row_data{toggle} = shift @toggle;
218            $row_data{bookfundid} = shift @bookfundid;
219            $row_data{bookfundname} = shift @bookfundname;
220            $row_data{startdate} = shift @startdate;
221            $row_data{enddate} = shift @enddate;
222            $row_data{budgetamount} = shift @budgetamount;
223            push(@loop_data, \%row_data);
224        }
225        }
226        $template->param(budget => \@loop_data);
227 } #---- END $OP eq DEFAULT
228
229 output_html_with_http_headers $input, $cookie, $template->output;
230