last bugfixes before 1.3.3 : systempref table correctly filled
[koha_fer] / showbudget.pl
index be8e250..efcd96e 100755 (executable)
@@ -1,17 +1,38 @@
 #!/usr/bin/perl
 
+# $Id$
+
 #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;
+
+# Copyright 2000-2002 Katipo Communications
+#
+# This file is part of Koha.
+#
+# Koha is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along with
+# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA  02111-1307 USA
+
+use C4::Catalogue;
+use C4::Biblio;
 #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 <<printend
+
+print <<printend
 
 <TABLE  width="40%"  cellspacing=0 cellpadding=5 border=1 >
 <FORM ACTION="/cgi-bin/koha/search.pl">
@@ -32,25 +53,25 @@ 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 <<EOP
+  print  <<EOP
 <tr><td>
-$results[$i]->{'bookfundname'} </TD> 
+$results[$i]->{'bookfundname'} </TD>
 <TD>$results[$i]->{'budgetamount'}</TD> <TD>
 EOP
 ;
-printf FILE ("%.2f", $spent);
-print FILE "</TD><TD>";
-printf FILE ("%.2f",$comtd);
-print FILE "</TD><TD>";
-printf FILE ("%.2f",$avail);
-print FILE "</TD></TR>";
+printf  ("%.2f", $spent);
+print  "</TD><TD>";
+printf  ("%.2f",$comtd);
+print  "</TD><TD>";
+printf  ("%.2f",$avail);
+print  "</TD></TR>";
   $total+=$results[$i]->{'budgetamount'};
   $totspent+=$spent;
   $totcomtd+=$comtd;
   $totavail+=$avail;
 }
 
-print FILE <<printend
+print  <<printend
 <tr><td colspan=5>
 <hr size=1 noshade></TD></TR>
 
@@ -58,13 +79,13 @@ print FILE <<printend
 Total </TD> <TD>$total</TD> <TD>
 printend
 ;
-printf FILE ("%.2f",$totspent);
-print FILE "</TD><TD>";
-printf FILE ("%.2f",$totcomtd);
-print FILE "</TD><TD>";
-printf FILE ("%.2f",$totavail);
-print FILE "</TD></TR>";
-print FILE <<printend
+printf  ("%.2f",$totspent);
+print  "</TD><TD>";
+printf  ("%.2f",$totcomtd);
+print  "</TD><TD>";
+printf  ("%.2f",$totavail);
+print  "</TD></TR>";
+print  <<printend
 </table><br>
 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.
@@ -76,4 +97,4 @@ Committed figures are approximate only, as exchange rates will affect the amount
 printend
 ;
 
-close FILE;
+#close ;