Update release notes with security bugs
[koha.git] / acqui / spent.pl
1 #!/usr/bin/perl
2
3 # script to show a breakdown of committed and spent budgets
4
5 # Copyright 2002-2009 Katipo Communications Limited
6 # Copyright 2010,2011 Catalyst IT Limited
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21
22 =head1 NAME
23
24  spent.pl
25
26 =head1 DESCRIPTION
27
28 this script is designed to show the spent amount in budgets
29
30 =cut
31
32 use C4::Context;
33 use C4::Auth;
34 use C4::Output;
35 use Modern::Perl;
36 use CGI qw ( -utf8 );
37
38 my $dbh      = C4::Context->dbh;
39 my $input    = new CGI;
40 my $bookfund = $input->param('fund');
41 my $fund_code = $input->param('fund_code');
42
43 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
44     {
45         template_name   => "acqui/spent.tt",
46         query           => $input,
47         type            => "intranet",
48         authnotrequired => 0,
49         flagsrequired   => { acquisition => '*' },
50         debug           => 1,
51     }
52 );
53
54 my $query = <<EOQ;
55 SELECT
56     aqorders.biblionumber, aqorders.basketno, aqorders.ordernumber,
57     quantity-quantityreceived AS tleft,
58     budgetdate, entrydate,
59     aqbasket.booksellerid,
60     itype,
61     title,
62     aqorders.invoiceid,
63     aqinvoices.invoicenumber,
64     quantityreceived,
65     unitprice_tax_included,
66     datereceived,
67     aqbooksellers.name as vendorname
68 FROM (aqorders, aqbasket)
69 LEFT JOIN biblio ON
70     biblio.biblionumber=aqorders.biblionumber
71 LEFT JOIN aqorders_items ON
72     aqorders.ordernumber = aqorders_items.ordernumber
73 LEFT JOIN items ON
74     aqorders_items.itemnumber = items.itemnumber
75 LEFT JOIN aqinvoices ON
76     aqorders.invoiceid = aqinvoices.invoiceid
77 LEFT JOIN aqbooksellers ON
78     aqbasket.booksellerid = aqbooksellers.id
79 WHERE
80     aqorders.basketno=aqbasket.basketno AND
81     budget_id=? AND
82     (datecancellationprinted IS NULL OR
83         datecancellationprinted='0000-00-00') AND
84     datereceived IS NOT NULL
85     GROUP BY aqorders.ordernumber
86 EOQ
87 my $sth = $dbh->prepare($query);
88 $sth->execute($bookfund);
89 if ( $sth->err ) {
90     die "An error occurred fetching records: " . $sth->errstr;
91 }
92 my $subtotal = 0;
93 my @spent;
94 while ( my $data = $sth->fetchrow_hashref ) {
95     my $recv = $data->{'quantityreceived'};
96     if ( $recv > 0 ) {
97         my $rowtotal = $recv * $data->{'unitprice_tax_included'};
98         $data->{'rowtotal'}  = sprintf( "%.2f", $rowtotal );
99         $data->{'unitprice_tax_included'} = sprintf( "%.2f", $data->{'unitprice_tax_included'} );
100         $subtotal += $rowtotal;
101         push @spent, $data;
102     }
103
104 }
105
106 my $total = $subtotal;
107 $query = qq{
108     SELECT invoicenumber, shipmentcost
109     FROM aqinvoices
110     WHERE shipmentcost_budgetid = ?
111 };
112 $sth = $dbh->prepare($query);
113 $sth->execute($bookfund);
114 my @shipmentcosts;
115 while (my $data = $sth->fetchrow_hashref) {
116     push @shipmentcosts, {
117         shipmentcost => sprintf("%.2f", $data->{shipmentcost}),
118         invoicenumber => $data->{invoicenumber}
119     };
120     $total += $data->{shipmentcost};
121 }
122 $sth->finish;
123
124 $total = sprintf( "%.2f", $total );
125
126 $template->param(
127     fund => $bookfund,
128     spent => \@spent,
129     subtotal => $subtotal,
130     shipmentcosts => \@shipmentcosts,
131     total => $total,
132     fund_code => $fund_code
133 );
134
135 output_html_with_http_headers $input, $cookie, $template->output;