a6b7e85293
Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
85 lines
2.3 KiB
Perl
Executable file
85 lines
2.3 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# script to show a breakdown of committed and spent budgets
|
|
|
|
# needs to be templated at some point
|
|
|
|
use C4::Context;
|
|
use C4::Auth;
|
|
use C4::Output;
|
|
use strict;
|
|
use CGI;
|
|
|
|
my $dbh = C4::Context->dbh;
|
|
my $input = new CGI;
|
|
my $bookfund = $input->param('bookfund');
|
|
my $start = $input->param('start');
|
|
my $end = $input->param('end');
|
|
|
|
my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
|
|
{
|
|
template_name => "acqui/spent.tmpl",
|
|
query => $input,
|
|
type => "intranet",
|
|
authnotrequired => 0,
|
|
flagsrequired => { acquisition => 1 },
|
|
debug => 1,
|
|
}
|
|
);
|
|
|
|
#James Winter 3/4/2009: Original query does not select spent rows
|
|
# correctly due to missing joins between tables
|
|
|
|
my $query =
|
|
"Select distinct quantity,datereceived,freight,unitprice,listprice,ecost,quantityreceived
|
|
as qrev,subscription,title,itype as itemtype,aqorders.biblionumber,aqorders.booksellerinvoicenumber,
|
|
quantity-quantityreceived as tleft,
|
|
aqorders.ordernumber
|
|
as ordnum,entrydate,budgetdate,aqbasket.booksellerid,aqbasket.basketno
|
|
from aqorders
|
|
inner join aqorderbreakdown on aqorderbreakdown.ordernumber = aqorders.ordernumber
|
|
inner join aqbasket on aqbasket.basketno = aqorders.basketno
|
|
left join items on items.biblionumber=aqorders.biblionumber
|
|
where bookfundid=? and
|
|
aqorders.ordernumber=aqorderbreakdown.ordernumber and
|
|
aqorders.basketno=aqbasket.basketno
|
|
and (
|
|
(datereceived >= ? and datereceived < ?))
|
|
and (datecancellationprinted is NULL or
|
|
datecancellationprinted='0000-00-00')
|
|
|
|
|
|
";
|
|
my $sth = $dbh->prepare($query);
|
|
$sth->execute( $bookfund, $start, $end );
|
|
|
|
my $total = 0;
|
|
my $toggle;
|
|
my @spent_loop;
|
|
while ( my $data = $sth->fetchrow_hashref ) {
|
|
my $recv = $data->{'qrev'};
|
|
if ( $recv > 0 ) {
|
|
my $subtotal = $recv * $data->{'unitprice'};
|
|
$data->{'subtotal'} = $subtotal;
|
|
$data->{'unitprice'} += 0;
|
|
$total += $subtotal;
|
|
if ($toggle) {
|
|
$toggle = 0;
|
|
}
|
|
else {
|
|
$toggle = 1;
|
|
}
|
|
$data->{'toggle'} = $toggle;
|
|
push @spent_loop, $data;
|
|
}
|
|
|
|
}
|
|
|
|
$template->param(
|
|
SPENTLOOP => \@spent_loop,
|
|
total => $total
|
|
);
|
|
$sth->finish;
|
|
|
|
$dbh->disconnect;
|
|
output_html_with_http_headers $input, $cookie, $template->output;
|