bde1ac3e13
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
557 lines
17 KiB
Perl
Executable file
557 lines
17 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
|
|
# 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 strict;
|
|
use C4::Auth;
|
|
use CGI;
|
|
use C4::Context;
|
|
use C4::Branch; # GetBranches
|
|
use C4::Output;
|
|
use C4::Koha;
|
|
use C4::Circulation;
|
|
|
|
=head1 NAME
|
|
|
|
plugin that shows a stats on borrowers
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
=over 2
|
|
|
|
=cut
|
|
|
|
our $debug = 0;
|
|
my $input = new CGI;
|
|
my $fullreportname = "reports/catalogue_stats.tmpl";
|
|
my $do_it = $input->param('do_it');
|
|
my $line = $input->param("Line");
|
|
my $column = $input->param("Column");
|
|
my @filters = $input->param("Filter");
|
|
my $deweydigits = $input->param("deweydigits");
|
|
my $lccndigits = $input->param("lccndigits");
|
|
my $cotedigits = $input->param("cotedigits");
|
|
my $output = $input->param("output");
|
|
my $basename = $input->param("basename");
|
|
my $mime = $input->param("MIME");
|
|
my $del = $input->param("sep");
|
|
|
|
my ($template, $borrowernumber, $cookie)
|
|
= get_template_and_user({template_name => $fullreportname,
|
|
query => $input,
|
|
type => "intranet",
|
|
authnotrequired => 0,
|
|
flagsrequired => {reports => 1},
|
|
debug => 1,
|
|
});
|
|
$template->param(do_it => $do_it);
|
|
if ($do_it) {
|
|
my $results = calculate($line, $column, $deweydigits, $lccndigits, $cotedigits, \@filters);
|
|
if ($output eq "screen"){
|
|
$template->param(mainloop => $results);
|
|
output_html_with_http_headers $input, $cookie, $template->output;
|
|
exit(1);
|
|
} else {
|
|
print $input->header(-type => 'application/vnd.sun.xml.calc',
|
|
-encoding => 'utf-8',
|
|
-attachment=>"$basename.csv",
|
|
-name=>"$basename.csv" );
|
|
my $cols = @$results[0]->{loopcol};
|
|
my $lines = @$results[0]->{looprow};
|
|
my $sep = C4::Context->preference("delimiter");
|
|
print @$results[0]->{line} ."/". @$results[0]->{column} .$sep;
|
|
foreach my $col ( @$cols ) {
|
|
print $col->{coltitle}.$sep;
|
|
}
|
|
print "Total\n";
|
|
foreach my $line ( @$lines ) {
|
|
my $x = $line->{loopcell};
|
|
print $line->{rowtitle}.$sep;
|
|
foreach my $cell (@$x) {
|
|
print $cell->{value}.$sep;
|
|
}
|
|
print $line->{totalrow};
|
|
print "\n";
|
|
}
|
|
print "TOTAL";
|
|
$cols = @$results[0]->{loopfooter};
|
|
foreach my $col ( @$cols ) {
|
|
print $sep.$col->{totalcol};
|
|
}
|
|
print $sep.@$results[0]->{total};
|
|
exit(1);
|
|
}
|
|
} else {
|
|
my $dbh = C4::Context->dbh;
|
|
my @values;
|
|
my %labels;
|
|
my $count=0;
|
|
my $req;
|
|
my @select;
|
|
# FIXME: no such field "dewey"
|
|
# $req = $dbh->prepare("select count(dewey) from biblioitems ");
|
|
# $req->execute;
|
|
my $hasdewey = 0;
|
|
# push @select,"";
|
|
# while (my ($value) =$req->fetchrow) {
|
|
# if (($value>2) and (! $hasdewey)) {
|
|
# $hasdewey =1;
|
|
# $count++;
|
|
# }
|
|
# push @select, $value;
|
|
# }
|
|
# my $CGIdewey=CGI::scrolling_list( -name => 'Filter',
|
|
# -id => 'Filter',
|
|
# -values => \@select,
|
|
# -size => 1,
|
|
# -multiple => 0 );
|
|
|
|
$req = $dbh->prepare( "select count(lccn) from biblioitems ");
|
|
$req->execute;
|
|
# undef @select;
|
|
# push @select,"";
|
|
my $haslccn;
|
|
my $hlghtlccn;
|
|
while (my ($value) =$req->fetchrow) {
|
|
$hlghtlccn = !($hasdewey);
|
|
$haslccn =1 if (($value>2) and (! $haslccn));
|
|
$count++ if (($value) and (! $haslccn));
|
|
# push @select, $value;
|
|
}
|
|
# my $CGIlccn=CGI::scrolling_list( -name => 'Filter',
|
|
# -id => 'Filter',
|
|
# -values => \@select,
|
|
# -size => 1,
|
|
# -multiple => 0 );
|
|
|
|
$req = $dbh->prepare("select count(itemcallnumber) from items");
|
|
$req->execute;
|
|
# undef @select;
|
|
# push @select,"";
|
|
my $hascote;
|
|
my $hlghtcote;
|
|
while (my ($value) =$req->fetchrow) {
|
|
$hascote =1 if (($value>2) and (! $hascote));
|
|
$count++ if (($value) and (! $hascote));
|
|
$hlghtcote = (($hasdewey) and ($haslccn)) or (!($hasdewey) and !($haslccn));
|
|
# push @select, $value;
|
|
}
|
|
# my $CGIcote=CGI::scrolling_list( -name => 'Filter',
|
|
# -id => 'Filter',
|
|
# -values => \@select,
|
|
# -size => 1,
|
|
# -multiple => 0 );
|
|
my $hglghtDT = ++$count % 2;
|
|
my $hglghtPub = ++$count % 2;
|
|
my $hglghtPY = ++$count % 2;
|
|
my $hglghtHB = ++$count % 2;
|
|
my $hglghtLOC = ++$count % 2;
|
|
# warn "highlightDT " .$hglghtDT;
|
|
# warn "highlightPub " .$hglghtPub;
|
|
# warn "highlightPY " .$hglghtPY;
|
|
# warn "highlightHB " .$hglghtHB;
|
|
# warn "highlightLOC " .$hglghtLOC;
|
|
|
|
|
|
$req = $dbh->prepare("select itemtype, description from itemtypes order by description");
|
|
$req->execute;
|
|
my $CGIitemtype = $req->fetchall_arrayref({});
|
|
|
|
my $authvals = GetKohaAuthorisedValues("items.ccode");
|
|
my @authvals;
|
|
foreach (keys %$authvals) {
|
|
push @authvals, { code => $_, description => $authvals->{$_} };
|
|
}
|
|
|
|
# $req = $dbh->prepare("select distinctrow left(publishercode,75) from biblioitems order by publishercode");
|
|
# $req->execute;
|
|
# undef @select;
|
|
# push @select,"";
|
|
# while (my ($value) =$req->fetchrow) {
|
|
# push @select, $value;
|
|
# }
|
|
# my $CGIpublisher=CGI::scrolling_list( -name => 'Filter',
|
|
# -id => 'Filter',
|
|
# -values => \@select,
|
|
# -size => 1,
|
|
# -multiple => 0 );
|
|
|
|
my $branches=GetBranches();
|
|
my @branchloop;
|
|
foreach (keys %$branches) {
|
|
my $thisbranch = ''; # FIXME: populate $thisbranch to preselect one
|
|
my %row = (branchcode => $_,
|
|
selected => ($thisbranch eq $_ ? 1 : 0),
|
|
branchname => $branches->{$_}->{'branchname'},
|
|
);
|
|
push @branchloop, \%row;
|
|
}
|
|
|
|
$req = $dbh->prepare("select distinctrow location from items order by location");
|
|
$req->execute;
|
|
my $locationloop = $req->fetchall_arrayref({});
|
|
my $locations = GetKohaAuthorisedValues("items.location");
|
|
my @locations;
|
|
foreach (sort keys %$locations) {
|
|
push @locations, { code => $_, description => "$_ - " . $locations->{$_} };
|
|
}
|
|
|
|
my @mime = ( map { +{type =>$_} } (split /[;:]/,C4::Context->preference("MIME")) );
|
|
my @delim = ( map { +{delim=>$_} } (split //,C4::Context->preference("delimiter")) );
|
|
|
|
$template->param(hasdewey=>$hasdewey,
|
|
# CGIFromDeweyClass => $CGIdewey,
|
|
# CGIToDeweyClass => $CGIdewey,
|
|
haslccn => $haslccn,
|
|
hlghtlccn => $hlghtlccn,
|
|
# CGIFromLoCClass => $CGIlccn,
|
|
# CGIToLoCClass => $CGIlccn,
|
|
hascote => $hascote,
|
|
hlghtcote => $hlghtcote,
|
|
hglghtDT => $hglghtDT,
|
|
hglghtPub => $hglghtPub,
|
|
hglghtPY => $hglghtPY,
|
|
hglghtHB => $hglghtHB,
|
|
hglghtLOC => $hglghtLOC,
|
|
# CGIFromCoteClass => $CGIcote,
|
|
# CGIToCoteClass => $CGIcote,
|
|
CGIItemType => $CGIitemtype,
|
|
# CGIFromPublicationYear => $CGIpublicationyear,
|
|
# CGIToPublicationYear => $CGIpublicationyear,
|
|
# CGIPublisher => $CGIpublisher,
|
|
CGIBranch => \@branchloop,
|
|
locationloop => \@locations,
|
|
authvals => \@authvals,
|
|
CGIextChoice => \@mime,
|
|
CGIsepChoice => \@delim,
|
|
);
|
|
|
|
}
|
|
output_html_with_http_headers $input, $cookie, $template->output;
|
|
|
|
## End of Main Body
|
|
|
|
|
|
sub calculate {
|
|
my ($line, $column, $deweydigits, $lccndigits, $cotedigits, $filters) = @_;
|
|
my @mainloop;
|
|
my @loopfooter;
|
|
my @loopcol;
|
|
my @loopline;
|
|
my @looprow;
|
|
my %globalline;
|
|
my $grantotal =0;
|
|
# extract parameters
|
|
my $dbh = C4::Context->dbh;
|
|
|
|
# Filters
|
|
# Checking filters
|
|
#
|
|
my @loopfilter;
|
|
for (my $i=0;$i<=12;$i++) {
|
|
my %cell;
|
|
if ( @$filters[$i] ) {
|
|
if ((($i==1) or ($i==3) or ($i==5) or ($i==9)) and (@$filters[$i-1])) {
|
|
$cell{err} = 1 if (@$filters[$i]<@$filters[$i-1]) ;
|
|
}
|
|
$cell{filter} .= @$filters[$i];
|
|
$cell{crit} .=
|
|
($i== 0) ? "Dewey Classification From" :
|
|
($i== 1) ? "Dewey Classification To" :
|
|
($i== 2) ? "Lccn Classification From" :
|
|
($i== 3) ? "Lccn Classification To" :
|
|
($i== 4) ? "Cote Classification From" :
|
|
($i== 5) ? "Cote Classification To" :
|
|
($i== 6) ? "Document type" :
|
|
($i== 7) ? "Publisher" :
|
|
($i== 8) ? "Publication year From" :
|
|
($i== 9) ? "Publication year To" :
|
|
($i==10) ? "Branch :" :
|
|
($i==11) ? "Location :" :
|
|
($i==12) ? "Catalog Code :" : '';
|
|
push @loopfilter, \%cell;
|
|
}
|
|
}
|
|
|
|
# warn map {"filtres $_\n"} @filters[0..3];
|
|
|
|
my @linefilter;
|
|
$linefilter[0] = @$filters[0] if ($line =~ /dewey/ ) ;
|
|
$linefilter[1] = @$filters[1] if ($line =~ /dewey/ ) ;
|
|
$linefilter[0] = @$filters[2] if ($line =~ /lccn/ ) ;
|
|
$linefilter[1] = @$filters[3] if ($line =~ /lccn/ ) ;
|
|
$linefilter[0] = @$filters[4] if ($line =~ /items\.itemcallnumber/ ) ;
|
|
$linefilter[1] = @$filters[5] if ($line =~ /items\.itemcallnumber/ ) ;
|
|
$linefilter[0] = @$filters[6] if ($line =~ /itemtype/ ) ;
|
|
$linefilter[0] = @$filters[7] if ($line =~ /publishercode/ ) ;
|
|
$linefilter[0] = @$filters[8] if ($line =~ /publicationyear/ ) ;
|
|
$linefilter[1] = @$filters[9] if ($line =~ /publicationyear/ ) ;
|
|
$linefilter[0] = @$filters[10] if ($line =~ /items\.homebranch/ ) ;
|
|
$linefilter[0] = @$filters[11] if ($line =~ /items\.location/ ) ;
|
|
$linefilter[0] = @$filters[12] if ($line =~ /items\.ccode/ ) ;
|
|
|
|
my @colfilter ;
|
|
$colfilter[0] = @$filters[0] if ($column =~ /dewey/ ) ;
|
|
$colfilter[1] = @$filters[1] if ($column =~ /dewey/ ) ;
|
|
$colfilter[0] = @$filters[2] if ($column =~ /lccn/ ) ;
|
|
$colfilter[1] = @$filters[3] if ($column =~ /lccn/ ) ;
|
|
$colfilter[0] = @$filters[4] if ($column =~ /items\.itemcallnumber/ ) ;
|
|
$colfilter[1] = @$filters[5] if ($column =~ /items\.itemcallnumber/ ) ;
|
|
$colfilter[0] = @$filters[6] if ($column =~ /itemtype/ ) ;
|
|
$colfilter[0] = @$filters[7] if ($column =~ /publishercode/ ) ;
|
|
$colfilter[0] = @$filters[8] if ($column =~ /publicationyear/ ) ;
|
|
$colfilter[1] = @$filters[9] if ($column =~ /publicationyear/ ) ;
|
|
$colfilter[0] = @$filters[10] if ($column =~ /items\.homebranch/ ) ;
|
|
$colfilter[0] = @$filters[11] if ($column =~ /items\.location/ ) ;
|
|
$colfilter[0] = @$filters[12] if ($column =~ /items\.ccode/ ) ;
|
|
|
|
# 1st, loop rows.
|
|
my $linefield;
|
|
if (($line =~/dewey/) and ($deweydigits)) {
|
|
$linefield .="left($line,$deweydigits)";
|
|
} elsif (($line=~/lccn/) and ($lccndigits)) {
|
|
$linefield .="left($line,$lccndigits)";
|
|
} elsif (($line=~/items.itemcallnumber/) and ($cotedigits)) {
|
|
$linefield .="left($line,$cotedigits)";
|
|
}else {
|
|
$linefield .= $line;
|
|
}
|
|
|
|
my $strsth;
|
|
$strsth .= "select distinctrow $linefield from biblioitems left join items on (items.biblioitemnumber = biblioitems.biblioitemnumber) where $line is not null ";
|
|
if ( @linefilter ) {
|
|
if ($linefilter[1]){
|
|
$strsth .= " and $line >= ? " ;
|
|
$strsth .= " and $line <= ? " ;
|
|
} elsif ($linefilter[0]) {
|
|
$linefilter[0] =~ s/\*/%/g;
|
|
$strsth .= " and $line LIKE ? " ;
|
|
}
|
|
}
|
|
$strsth .=" order by $linefield";
|
|
$debug and print STDERR "catalogue_stats SQL: $strsth\n";
|
|
|
|
my $sth = $dbh->prepare( $strsth );
|
|
if (( @linefilter ) and ($linefilter[1])){
|
|
$sth->execute($linefilter[0],$linefilter[1]);
|
|
} elsif ($linefilter[0]) {
|
|
$sth->execute($linefilter[0]);
|
|
} else {
|
|
$sth->execute;
|
|
}
|
|
while ( my ($celvalue) = $sth->fetchrow) {
|
|
my %cell;
|
|
if ($celvalue) {
|
|
$cell{rowtitle} = $celvalue;
|
|
# } else {
|
|
# $cell{rowtitle} = "";
|
|
}
|
|
$cell{totalrow} = 0;
|
|
push @loopline, \%cell;
|
|
}
|
|
|
|
# 2nd, loop cols.
|
|
my $colfield;
|
|
if (($column =~/dewey/) and ($deweydigits)) {
|
|
$colfield = "left($column,$deweydigits)";
|
|
}elsif (($column=~/lccn/) and ($lccndigits)) {
|
|
$colfield = "left($column,$lccndigits)";
|
|
}elsif (($column=~/itemcallnumber/) and ($cotedigits)) {
|
|
$colfield = "left($column,$cotedigits)";
|
|
}else {
|
|
$colfield = $column;
|
|
}
|
|
|
|
my $strsth2 = "
|
|
SELECT distinctrow $colfield
|
|
FROM biblioitems
|
|
LEFT JOIN items
|
|
ON (items.biblioitemnumber = biblioitems.biblioitemnumber)
|
|
WHERE $column IS NOT NULL ";
|
|
if (( @colfilter ) and ($colfilter[1])) {
|
|
$strsth2 .= " and $column> ? and $column< ?";
|
|
}elsif ($colfilter[0]){
|
|
$colfilter[0] =~ s/\*/%/g;
|
|
$strsth2 .= " and $column LIKE ? ";
|
|
}
|
|
$strsth2 .= " order by $colfield";
|
|
$debug and print STDERR "SQL: $strsth2";
|
|
my $sth2 = $dbh->prepare( $strsth2 );
|
|
if ((@colfilter) and ($colfilter[1])) {
|
|
$sth2->execute($colfilter[0],$colfilter[1]);
|
|
} elsif ($colfilter[0]){
|
|
$sth2->execute($colfilter[0]);
|
|
} else {
|
|
$sth2->execute;
|
|
}
|
|
while (my ($celvalue) = $sth2->fetchrow) {
|
|
my %cell;
|
|
my %ft;
|
|
if ($celvalue) {
|
|
$cell{coltitle} = $celvalue;
|
|
# } else {
|
|
# $cell{coltitle} = "";
|
|
}
|
|
$ft{totalcol} = 0;
|
|
push @loopcol, \%cell;
|
|
}
|
|
|
|
my $i=0;
|
|
my @totalcol;
|
|
my $hilighted=-1;
|
|
|
|
#Initialization of cell values.....
|
|
my %table;
|
|
# warn "init table";
|
|
foreach my $row ( @loopline ) {
|
|
foreach my $col ( @loopcol ) {
|
|
# warn " init table : $row->{rowtitle} / $col->{coltitle} ";
|
|
$table{$row->{rowtitle}}->{$col->{coltitle}}=0;
|
|
}
|
|
$table{$row->{rowtitle}}->{totalrow}=0;
|
|
}
|
|
|
|
# preparing calculation
|
|
my $strcalc .= "SELECT $linefield, $colfield, count(*) FROM biblioitems LEFT JOIN items ON (items.biblioitemnumber = biblioitems.biblioitemnumber) WHERE 1";
|
|
if (@$filters[0]){
|
|
@$filters[0]=~ s/\*/%/g;
|
|
$strcalc .= " AND dewey >" . @$filters[0];
|
|
}
|
|
if (@$filters[1]){
|
|
@$filters[1]=~ s/\*/%/g ;
|
|
$strcalc .= " AND dewey <" . @$filters[1];
|
|
}
|
|
if (@$filters[2]){
|
|
@$filters[2]=~ s/\*/%/g ;
|
|
$strcalc .= " AND lccn >" . @$filters[2];
|
|
}
|
|
if (@$filters[3]){
|
|
@$filters[3]=~ s/\*/%/g;
|
|
$strcalc .= " AND lccn <" . @$filters[3];
|
|
}
|
|
if (@$filters[4]){
|
|
@$filters[4]=~ s/\*/%/g ;
|
|
$strcalc .= " AND items.itemcallnumber >=" . $dbh->quote(@$filters[4]);
|
|
}
|
|
|
|
if (@$filters[5]){
|
|
@$filters[5]=~ s/\*/%/g;
|
|
$strcalc .= " AND items.itemcallnumber <=" . $dbh->quote(@$filters[5]);
|
|
}
|
|
|
|
if (@$filters[6]){
|
|
@$filters[6]=~ s/\*/%/g;
|
|
$strcalc .= " AND " .
|
|
(C4::Context::preference('Item-level_itypes') ? 'items.itype' : 'biblioitems.itemtype')
|
|
. " LIKE '" . @$filters[6] ."'";
|
|
}
|
|
|
|
if (@$filters[7]){
|
|
@$filters[7]=~ s/\*/%/g;
|
|
@$filters[7].="%" unless @$filters[7]=~/%/;
|
|
$strcalc .= " AND biblioitems.publishercode LIKE \"" . @$filters[7] ."\"";
|
|
}
|
|
if (@$filters[8]){
|
|
@$filters[8]=~ s/\*/%/g;
|
|
$strcalc .= " AND publicationyear >" . @$filters[8];
|
|
}
|
|
if (@$filters[9]){
|
|
@$filters[9]=~ s/\*/%/g;
|
|
$strcalc .= " AND publicationyear <" . @$filters[9];
|
|
}
|
|
if (@$filters[10]){
|
|
@$filters[10]=~ s/\*/%/g;
|
|
$strcalc .= " AND items.homebranch LIKE '" . @$filters[10] ."'";
|
|
}
|
|
if (@$filters[11]){
|
|
@$filters[11]=~ s/\*/%/g;
|
|
$strcalc .= " AND items.location LIKE '" . @$filters[11] ."'";
|
|
}
|
|
if (@$filters[12]){
|
|
@$filters[12]=~ s/\*/%/g;
|
|
$strcalc .= " AND items.ccode LIKE '" . @$filters[12] ."'";
|
|
}
|
|
|
|
$strcalc .= " group by $linefield, $colfield order by $linefield,$colfield";
|
|
$debug and warn "SQL: $strcalc";
|
|
my $dbcalc = $dbh->prepare($strcalc);
|
|
$dbcalc->execute;
|
|
# warn "filling table";
|
|
|
|
my $emptycol;
|
|
while (my ($row, $col, $value) = $dbcalc->fetchrow) {
|
|
# warn "filling table $row / $col / $value ";
|
|
$emptycol = 1 if ($col eq undef);
|
|
$col = "zzEMPTY" if ($col eq undef);
|
|
$row = "zzEMPTY" if ($row eq undef);
|
|
|
|
$table{$row}->{$col}+=$value;
|
|
$table{$row}->{totalrow}+=$value;
|
|
$grantotal += $value;
|
|
}
|
|
|
|
# my %cell = {rowtitle => 'zzROWEMPTY'};
|
|
# push @loopline,\%cell;
|
|
# undef %cell;
|
|
# my %cell;
|
|
# %cell = {coltitle => "zzEMPTY"};
|
|
push @loopcol,{coltitle => "NULL"} if ($emptycol);
|
|
|
|
foreach my $row ( sort keys %table ) {
|
|
my @loopcell;
|
|
#@loopcol ensures the order for columns is common with column titles
|
|
# and the number matches the number of columns
|
|
foreach my $col ( @loopcol ) {
|
|
my $value =$table{$row}->{($col->{coltitle} eq "NULL")?"zzEMPTY":$col->{coltitle}};
|
|
push @loopcell, {value => $value } ;
|
|
}
|
|
push @looprow,{ 'rowtitle' => ($row eq "zzEMPTY")?"NULL":$row,
|
|
'loopcell' => \@loopcell,
|
|
'hilighted' => ($hilighted *= -1 > 0),
|
|
'totalrow' => $table{$row}->{totalrow}
|
|
};
|
|
}
|
|
|
|
# warn "footer processing";
|
|
foreach my $col ( @loopcol ) {
|
|
my $total=0;
|
|
foreach my $row ( @looprow ) {
|
|
$total += $table{($row->{rowtitle} eq "NULL")?"zzEMPTY":$row->{rowtitle}}->{($col->{coltitle} eq "NULL")?"zzEMPTY":$col->{coltitle}};
|
|
# warn "value added ".$table{$row->{rowtitle}}->{$col->{coltitle}}. "for line ".$row->{rowtitle};
|
|
}
|
|
# warn "summ for column ".$col->{coltitle}." = ".$total;
|
|
push @loopfooter, {'totalcol' => $total};
|
|
}
|
|
|
|
|
|
# the header of the table
|
|
$globalline{loopfilter}=\@loopfilter;
|
|
# the core of the table
|
|
$globalline{looprow} = \@looprow;
|
|
$globalline{loopcol} = \@loopcol;
|
|
# # the foot (totals by borrower type)
|
|
$globalline{loopfooter} = \@loopfooter;
|
|
$globalline{total}= $grantotal;
|
|
$globalline{line} = $line;
|
|
$globalline{column} = $column;
|
|
push @mainloop,\%globalline;
|
|
return \@mainloop;
|
|
}
|
|
|
|
1;
|