Modifying branch Selection : Now Superlibrarians are always able to see ALL branches...
[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::Acquisition;
45 use C4::Context;
46 use C4::Output;
47 use C4::Interface::CGI::Output;
48 use C4::Search;
49 use HTML::Template;
50
51 sub StringSearch  {
52         my ($env,$searchstring,$type)=@_;
53         my $dbh = C4::Context->dbh;
54         $searchstring=~ s/\'/\\\'/g;
55         my @data=split(' ',$searchstring);
56         my $count=@data;
57         my $sth=$dbh->prepare("Select aqbudgetid,bookfundid,startdate,enddate,budgetamount,branchcode from aqbudget where (bookfundid like ?) order by bookfundid,aqbudgetid");
58         $sth->execute("$data[0]%");
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
99 my $dbh = C4::Context->dbh;
100 my $sthtemp = $dbh->prepare("Select flags, branchcode from borrowers where borrowernumber = ?");
101 $sthtemp->execute($borrowernumber);
102 my ($flags, $homebranch)=$sthtemp->fetchrow;
103
104 ################## ADD_FORM ##################################
105 # called by default. Used to create form to add or  modify a record
106 if ($op eq 'add_form') {
107         #---- if primkey exists, it's a modify action, so read values to modify...
108         my $dataaqbudget;
109         my $dataaqbookfund;
110         if ($aqbudgetid) {
111                 my $dbh = C4::Context->dbh;
112                 my $sth=$dbh->prepare("select aqbudgetid,bookfundname,aqbookfund.bookfundid,startdate,enddate,budgetamount,aqbudget.branchcode from aqbudget,aqbookfund where aqbudgetid=? and aqbudget.bookfundid=aqbookfund.bookfundid");
113                 $sth->execute($aqbudgetid);
114                 $dataaqbudget=$sth->fetchrow_hashref;
115                 $sth->finish;
116         }
117         my $header;
118         if ($aqbudgetid) {
119                 $header = "Modify budget";
120         } else {
121                 $header = "Add budget";
122         }
123         $template->param(header => $header);
124         if ($aqbudgetid) {
125             $template->param(modify => 1);
126             $template->param(bookfundid => $dataaqbudget->{bookfundid});
127             $template->param(bookfundname => $dataaqbudget->{bookfundname});
128         } else {
129             $template->param(bookfundid => $bookfundid,
130                                                                 adding => 1);
131         }
132         my @branches;
133         my @select_branch;
134         my %select_branches;
135         my ($count2,@branches)=branches();
136         push @select_branch,"";
137         $select_branches{""}="";
138         if ($flags>1){
139                 if ($homebranch){
140                         push @select_branch, $homebranch;#
141                         for (my $i=0;$i<$count2;$i++){
142                                 $select_branches{$branches[$i]->{'branchcode'}} = $branches[$i]->{'branchname'} if ($branches[$i]->{'branchcode'} eq $homebranch);
143                         }
144                 }
145         } else {
146                 for (my $i=0;$i<$count2;$i++){
147                         push @select_branch, $branches[$i]->{'branchcode'};#
148                         $select_branches{$branches[$i]->{'branchcode'}} = $branches[$i]->{'branchname'};
149                 }
150         }
151         my $CGIbranch=CGI::scrolling_list( -name     => 'branchcode',
152                                 -values   => \@select_branch,
153                                 -labels   => \%select_branches,
154                                 -default  => $dataaqbudget->{branchcode},
155                                 -size     => 1,
156                                 -multiple => 0 );
157         $template->param(CGIbranch => $CGIbranch);
158         $template->param(dateformat => display_date_format(),
159                                                         aqbudgetid => $dataaqbudget->{'aqbudgetid'},
160                                                         startdate => format_date($dataaqbudget->{'startdate'}),
161                                                         enddate => format_date($dataaqbudget->{'enddate'}),
162                                                         budgetamount => $dataaqbudget->{'budgetamount'}
163         );
164                                                                                                         # END $OP eq ADD_FORM
165 ################## ADD_VALIDATE ##################################
166 # called by add_form, used to insert/modify data in DB
167 } elsif ($op eq 'add_validate') {
168         my $dbh = C4::Context->dbh;
169         my $sth=$dbh->prepare("replace aqbudget (aqbudgetid,bookfundid,startdate,enddate,budgetamount,branchcode) values (?,?,?,?,?,?)");
170         $sth->execute($input->param('aqbudgetid'),$input->param('bookfundid'),
171                                                 format_date_in_iso($input->param('startdate')),
172                                                 format_date_in_iso($input->param('enddate')),
173                                                 $input->param('budgetamount'),
174                                                 $input->param('branchcode')
175                                                 );
176         $sth->finish;
177          print $input->redirect("aqbookfund.pl");
178          exit;
179 # END $OP eq ADD_VALIDATE
180 ################## DELETE_CONFIRM ##################################
181 # called by default form, used to confirm deletion of data in DB
182 } elsif ($op eq 'delete_confirm') {
183         my $dbh = C4::Context->dbh;
184         my $sth=$dbh->prepare("select aqbudgetid,bookfundid,startdate,enddate,budgetamount,branchcode from aqbudget where aqbudgetid=?");
185         $sth->execute($aqbudgetid);
186         my $data=$sth->fetchrow_hashref;
187         $sth->finish;
188         $template->param(bookfundid => $bookfundid);
189         $template->param(aqbudgetid => $data->{'aqbudgetid'});
190         $template->param(startdate => format_date($data->{'startdate'}));
191         $template->param(enddate => format_date($data->{'enddate'}));
192         $template->param(budgetamount => $data->{'budgetamount'});
193                                                                                                         # END $OP eq DELETE_CONFIRM
194 ################## DELETE_CONFIRMED ##################################
195 # called by delete_confirm, used to effectively confirm deletion of data in DB
196 } elsif ($op eq 'delete_confirmed') {
197         my $dbh = C4::Context->dbh;
198         my $aqbudgetid=uc($input->param('aqbudgetid'));
199         my $sth=$dbh->prepare("delete from aqbudget where aqbudgetid=?");
200         $sth->execute($aqbudgetid);
201         $sth->finish;
202          print $input->redirect("aqbookfund.pl");
203          return;
204                                                                                                         # END $OP eq DELETE_CONFIRMED
205 ################## DEFAULT ##################################
206 } else { # DEFAULT
207         if  ($searchfield ne '') {
208                 $template->param(search => 1);
209                 $template->param(searchfield => $searchfield);
210         }
211         my $env;
212         my ($count,$results)=StringSearch($env,$searchfield,'web');
213         my $toggle="white";
214         my @loop_data =();
215         for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){
216                 #find out stats
217         #       my ($od,$issue,$fines)=categdata2($env,$results->[$i]{'borrowernumber'});
218         #       $fines=$fines+0;
219                 my $dataaqbookfund;
220                 my $dbh = C4::Context->dbh;
221                 my $sth=$dbh->prepare("select bookfundid,bookfundname from aqbookfund where bookfundid=?");
222                 $sth->execute($results->[$i]{'bookfundid'});
223                 $dataaqbookfund=$sth->fetchrow_hashref;
224                 $sth->finish;
225                 my @toggle = ();
226                 my @bookfundid = ();
227                 my @bookfundname = ();
228                 my @startdate = ();
229                 my @enddate = ();
230                 my @budgetamount = ();
231                 push(@toggle,$toggle);
232                 push(@bookfundid,$results->[$i]{'bookfundid'});
233                 push(@bookfundname,$dataaqbookfund->{'bookfundname'});
234                 push(@startdate,format_date($results->[$i]{'startdate'}));
235                 push(@enddate,format_date($results->[$i]{'enddate'}));
236                 push(@budgetamount,$results->[$i]{'budgetamount'});
237                 if ($toggle eq 'white'){
238                         $toggle="#ffffcc";
239                 } else {
240                         $toggle="white";
241                 }
242                 while (@toggle and @bookfundid and @bookfundname and @startdate and @enddate and @budgetamount) { 
243            my %row_data;
244            $row_data{toggle} = shift @toggle;
245            $row_data{bookfundid} = shift @bookfundid;
246            $row_data{bookfundname} = shift @bookfundname;
247            $row_data{startdate} = shift @startdate;
248            $row_data{enddate} = shift @enddate;
249            $row_data{budgetamount} = shift @budgetamount;
250            push(@loop_data, \%row_data);
251        }
252        }
253        $template->param(budget => \@loop_data);
254 } #---- END $OP eq DEFAULT
255
256 output_html_with_http_headers $input, $cookie, $template->output;
257