#!/usr/bin/perl #script to show list of budgets and bookfunds #written 4/2/00 by chris@katipo.co.nz #called as an include by the acquisitions index page use C4::Acquisitions; #use CGI; #my $inp=new CGI; #print $inp->header; my ($count,@results)=bookfunds; open (FILE,'>/usr/local/www/hdl/htdocs/includes/budgets.inc') || die "Cant open file"; print FILE <
BUDGETS AND BOOKFUNDS printend ; my $total=0; my $totspent=0; my $totcomtd=0; my $totavail=0; for (my $i=0;$i<$count;$i++){ my ($spent,$comtd)=bookfundbreakdown($results[$i]->{'bookfundid'}); my $avail=$results[$i]->{'budgetamount'}-($spent+$comtd); print FILE <"; $total+=$results[$i]->{'budgetamount'}; $totspent+=$spent; $totcomtd+=$comtd; $totavail+=$avail; } print FILE <"; print FILE <
Use your reload button [ctrl + r] to get the most recent figures. Committed figures are approximate only, as exchange rates will affect the amount actually paid.
Budgets Total SpentComtdAvail
$results[$i]->{'bookfundname'} $results[$i]->{'budgetamount'} EOP ; printf FILE ("%.2f", $spent); print FILE ""; printf FILE ("%.2f",$comtd); print FILE ""; printf FILE ("%.2f",$avail); print FILE "

Total $total printend ; printf FILE ("%.2f",$totspent); print FILE ""; printf FILE ("%.2f",$totcomtd); print FILE ""; printf FILE ("%.2f",$totavail); print FILE "
printend ; close FILE;