Bug 929 : Reinstating the breakdown of budgets
[koha.git] / acqui / ordered.pl
1 #!/usr/bin/perl
2
3 # Copyright 2008 - 2009 BibLibre SARL
4 # Copyright 2010 Catalyst IT Limited
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
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 =head1 NAME
21
22 committed.pl
23
24 =head1 DESCRIPTION
25
26 this script is to show orders ordered but not yet received
27
28 =cut
29
30
31 use C4::Context;
32 use strict;
33 use warnings;
34 use CGI;
35 use C4::Auth;
36 use C4::Output;
37
38 my $dbh      = C4::Context->dbh;
39 my $input    = new CGI;
40 my $fund_id = $input->param('fund');
41 my $start    = $input->param('start');
42 my $end      = $input->param('end');
43
44 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
45     {
46         template_name   => "acqui/ordered.tt",
47         query           => $input,
48         type            => "intranet",
49         authnotrequired => 0,
50         flagsrequired   => { acquisition => 1 },
51         debug           => 1,
52     }
53 );
54
55 my $query = <<EOQ;
56 SELECT
57     aqorders.basketno, aqorders.ordernumber,
58     quantity-quantityreceived AS tleft,
59     ecost, budgetdate,
60     aqbasket.booksellerid,
61     itype,
62     title
63 FROM (aqorders, aqbasket)
64 LEFT JOIN biblio ON
65     biblio.biblionumber=aqorders.biblionumber
66 LEFT JOIN aqorders_items ON
67     aqorders.ordernumber=aqorders_items.ordernumber
68 LEFT JOIN items ON
69     items.itemnumber=aqorders_items.itemnumber
70 WHERE
71     aqorders.basketno=aqbasket.basketno AND
72     budget_id=? AND
73     (datecancellationprinted IS NULL OR
74         datecancellationprinted='0000-00-00') AND
75     (quantity > quantityreceived OR quantityreceived IS NULL)
76 EOQ
77
78 my $sth = $dbh->prepare($query);
79
80 $sth->execute( $fund_id);
81 if ($sth->err) {
82     die "Error occurred fetching records: ".$sth->errstr;
83 }
84 my @ordered;
85
86 my $total = 0;
87 while ( my $data = $sth->fetchrow_hashref ) {
88     my $left = $data->{'tleft'};
89     if ( !$left || $left eq '' ) {
90         $left = $data->{'quantity'};
91     }
92     if ( $left && $left > 0 ) {
93         my $subtotal = $left * $data->{'ecost'};
94         $data->{subtotal} =  sprintf ("%.2f",  $subtotal);
95         $data->{'left'} = $left;
96         push @ordered, $data;
97         $total += $subtotal;
98     }
99 }
100 $total =   sprintf ("%.2f",  $total);
101 $template->param(
102     ordered     => \@ordered,
103     total       => $total
104 );
105 $sth->finish;
106 $dbh->disconnect;
107
108 output_html_with_http_headers $input, $cookie, $template->output;