subs renamed & POD added
[koha.git] / serials / acqui-search.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 # $Id$
21
22 use strict;
23 use CGI;
24 use C4::Auth;
25 use C4::Output;
26 use C4::Interface::CGI::Output;
27 use C4::Database;
28 use HTML::Template;
29 use C4::Acquisition;
30 my $query = new CGI;
31 my ($template, $loggedinuser, $cookie)
32     = get_template_and_user({template_name => "serials/acqui-search.tmpl",
33                              query => $query,
34                              type => "intranet",
35                              authnotrequired => 0,
36                              flagsrequired => {acquisition => 1},
37                              debug => 1,
38                              });
39
40 # FIXME : Is this page still used ????
41 # looks like no.
42
43 # budget
44 my $dbh = C4::Context->dbh;
45 my $sthtemp = $dbh->prepare("Select flags, branchcode from borrowers where borrowernumber = ?");
46 $sthtemp->execute($loggedinuser);
47 my ($flags, $homebranch)=$sthtemp->fetchrow;
48 my @results=GetBookFunds($homebranch);
49 my $count = scalar(@results);
50
51 my $classlist='';
52 my $total=0;
53 my $totspent=0;
54 my $totcomtd=0;
55 my $totavail=0;
56 my @loop_budget = ();
57 for (my $i=0;$i<$count;$i++){
58         my ($spent,$comtd)=GetBookFundBreakdown($results[$i]->{'bookfundid'});
59         my $avail=$results[$i]->{'budgetamount'}-($spent+$comtd);
60         my %line;
61         $line{bookfundname} = $results[$i]->{'bookfundname'};
62         $line{budgetamount} = $results[$i]->{'budgetamount'};
63         $line{spent} = sprintf  ("%.2f", $spent);
64         $line{comtd} = sprintf  ("%.2f",$comtd);
65         $line{avail}  = sprintf  ("%.2f",$avail);
66         push @loop_budget, \%line;
67         $total+=$results[$i]->{'budgetamount'};
68         $totspent+=$spent;
69         $totcomtd+=$comtd;
70         $totavail+=$avail;
71 }
72 #currencies
73 my $rates=GetCurrencies();
74 my $count = scalar @$rates;
75
76 my @loop_currency = ();
77 for (my $i=0;$i<$count;$i++){
78         my %line;
79         $line{currency} = $rates->[$i]->{'currency'};
80         $line{rate} = $rates->[$i]->{'rate'};
81         push @loop_currency, \%line;
82 }
83 $template->param(classlist => $classlist,
84                                                 type => 'intranet',
85                                                 loop_budget => \@loop_budget,
86                                                 loop_currency => \@loop_currency,
87                                                 total => sprintf("%.2f",$total),
88                                                 totspent => sprintf("%.2f",$totspent),
89                                                 totcomtd => sprintf("%.2f",$totcomtd),
90                                                 totavail => sprintf("%.2f",$totavail));
91
92 output_html_with_http_headers $query, $cookie, $template->output;