[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha/serials acqui-search.pl [rel_3_0]
From: |
Antoine Farnault |
Subject: |
[Koha-cvs] koha/serials acqui-search.pl [rel_3_0] |
Date: |
Fri, 22 Dec 2006 14:43:09 +0000 |
CVSROOT: /sources/koha
Module name: koha
Branch: rel_3_0
Changes by: Antoine Farnault <toins> 06/12/22 14:43:09
Modified files:
serials : acqui-search.pl
Log message:
removing unused module, + re-indenting.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/serials/acqui-search.pl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.4.2.3&r2=1.4.2.4
Patches:
Index: acqui-search.pl
===================================================================
RCS file: /sources/koha/koha/serials/acqui-search.pl,v
retrieving revision 1.4.2.3
retrieving revision 1.4.2.4
diff -u -b -r1.4.2.3 -r1.4.2.4
--- acqui-search.pl 18 Dec 2006 16:35:19 -0000 1.4.2.3
+++ acqui-search.pl 22 Dec 2006 14:43:09 -0000 1.4.2.4
@@ -17,77 +17,81 @@
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA
-# $Id: acqui-search.pl,v 1.4.2.3 2006/12/18 16:35:19 toins Exp $
+# $Id: acqui-search.pl,v 1.4.2.4 2006/12/22 14:43:09 toins Exp $
use strict;
use CGI;
use C4::Auth;
use C4::Output;
use C4::Interface::CGI::Output;
-use C4::Database;
-
use C4::Bookfund;
+
my $query = new CGI;
-my ($template, $loggedinuser, $cookie)
- = get_template_and_user({template_name => "serials/acqui-search.tmpl",
+my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
+ {
+ template_name => "serials/acqui-search.tmpl",
query => $query,
type => "intranet",
authnotrequired => 0,
- flagsrequired => {serials => 1},
+ flagsrequired => { serials => 1 },
debug => 1,
- });
-
-# FIXME : Is this page still used ????
-# looks like no.
+ }
+);
# budget
my $dbh = C4::Context->dbh;
-my $sthtemp = $dbh->prepare("Select flags, branchcode from borrowers where
borrowernumber = ?");
+my $sthtemp =
+ $dbh->prepare(
+ "Select flags, branchcode from borrowers where borrowernumber = ?");
$sthtemp->execute($loggedinuser);
-my ($flags, $homebranch)=$sthtemp->fetchrow;
-my @results=GetBookFunds($homebranch);
+my ( $flags, $homebranch ) = $sthtemp->fetchrow;
+my @results = GetBookFunds($homebranch);
my $count = scalar(@results);
-my $classlist='';
-my $total=0;
-my $totspent=0;
-my $totcomtd=0;
-my $totavail=0;
+my $classlist = '';
+my $total = 0;
+my $totspent = 0;
+my $totcomtd = 0;
+my $totavail = 0;
my @loop_budget = ();
-for (my $i=0;$i<$count;$i++){
- my ($spent,$comtd)=GetBookFundBreakdown($results[$i]->{'bookfundid'});
- my $avail=$results[$i]->{'budgetamount'}-($spent+$comtd);
+for ( my $i = 0 ; $i < $count ; $i++ ) {
+ my ( $spent, $comtd ) =
+ GetBookFundBreakdown( $results[$i]->{'bookfundid'} );
+ my $avail = $results[$i]->{'budgetamount'} - ( $spent + $comtd );
my %line;
$line{bookfundname} = $results[$i]->{'bookfundname'};
$line{budgetamount} = $results[$i]->{'budgetamount'};
- $line{spent} = sprintf ("%.2f", $spent);
- $line{comtd} = sprintf ("%.2f",$comtd);
- $line{avail} = sprintf ("%.2f",$avail);
+ $line{spent} = sprintf( "%.2f", $spent );
+ $line{comtd} = sprintf( "%.2f", $comtd );
+ $line{avail} = sprintf( "%.2f", $avail );
push @loop_budget, \%line;
- $total+=$results[$i]->{'budgetamount'};
- $totspent+=$spent;
- $totcomtd+=$comtd;
- $totavail+=$avail;
+ $total += $results[$i]->{'budgetamount'};
+ $totspent += $spent;
+ $totcomtd += $comtd;
+ $totavail += $avail;
}
+
#currencies
-my @rates=GetCurrencies();
+my @rates = GetCurrencies();
my $count = scalar @rates;
my @loop_currency = ();
-for (my $i=0;$i<$count;$i++){
+for ( my $i = 0 ; $i < $count ; $i++ ) {
my %line;
$line{currency} = $rates[$i]->{'currency'};
$line{rate} = $rates[$i]->{'rate'};
push @loop_currency, \%line;
}
-$template->param(classlist => $classlist,
+$template->param(
+ classlist => $classlist,
type => 'intranet',
loop_budget => address@hidden,
loop_currency => address@hidden,
- total => sprintf("%.2f",$total),
- totspent =>
sprintf("%.2f",$totspent),
- totcomtd =>
sprintf("%.2f",$totcomtd),
- totavail =>
sprintf("%.2f",$totavail));
+ total => sprintf( "%.2f", $total ),
+ totspent => sprintf( "%.2f", $totspent ),
+ totcomtd => sprintf( "%.2f", $totcomtd ),
+ totavail => sprintf( "%.2f", $totavail )
+);
output_html_with_http_headers $query, $cookie, $template->output;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] koha/serials acqui-search.pl [rel_3_0],
Antoine Farnault <=