Serials, use Budget instead of Bookfund
[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
21 use strict;
22 use warnings;
23 use CGI;
24 use C4::Auth;
25 use C4::Output;
26
27 my $query = new CGI;
28
29 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
30     {
31         template_name   => "serials/acqui-search.tmpl",
32         query           => $query,
33         type            => "intranet",
34         authnotrequired => 0,
35         flagsrequired   => { serials => 1 },
36         debug           => 1,
37     }
38 );
39
40 # budget
41 my $dbh     = C4::Context->dbh;
42 my $sthtemp =
43   $dbh->prepare(
44     "Select flags, branchcode from borrowers where borrowernumber = ?");
45 $sthtemp->execute($loggedinuser);
46 my ( $flags, $homebranch ) = $sthtemp->fetchrow;
47 my @results = GetBookFunds(1, $homebranch);
48 my $count   = scalar(@results);
49
50 my $classlist   = '';
51 my $total       = 0;
52 my $totspent    = 0;
53 my $totcomtd    = 0;
54 my $totavail    = 0;
55 my @loop_budget = ();
56 for my $r (@results) {
57     my ( $spent, $comtd ) =
58       GetBookFundBreakdown( $r->{'bookfundid'} );
59     my $avail = $r->{'budgetamount'} - ( $spent + $comtd );
60     my %line;
61     $line{bookfundname} = $r->{'bookfundname'};
62     $line{budgetamount} = $r->{'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    += $r->{'budgetamount'};
68     $totspent += $spent;
69     $totcomtd += $comtd;
70     $totavail += $avail;
71 }
72
73 #currencies
74 my @rates = GetCurrencies();
75
76 my $loop_currency = [];
77 for my $r (@rates) {
78     push @{$loop_currency}, {
79         currency => $r->{'currency'},
80         rate     => $r->{'rate'},
81     };
82 }
83 $template->param(
84     classlist     => $classlist,
85     type          => 'intranet',
86     loop_budget   => \@loop_budget,
87     loop_currency => $loop_currency,
88     total         => sprintf( "%.2f", $total ),
89     totspent      => sprintf( "%.2f", $totspent ),
90     totcomtd      => sprintf( "%.2f", $totcomtd ),
91     totavail      => sprintf( "%.2f", $totavail )
92 );
93
94 output_html_with_http_headers $query, $cookie, $template->output;