From b6724d944286a0eb30ac1620405ba9c2efe1a2da Mon Sep 17 00:00:00 2001 From: hdl Date: Tue, 8 Mar 2005 18:14:40 +0000 Subject: [PATCH] including Null Values and improving result display --- .../default/en/reports/catalogue_stats.tmpl | 2 +- reports/catalogue_stats.pl | 15 ++++++++------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/default/en/reports/catalogue_stats.tmpl b/koha-tmpl/intranet-tmpl/default/en/reports/catalogue_stats.tmpl index 7d5a6e11ec..b821bd36e3 100644 --- a/koha-tmpl/intranet-tmpl/default/en/reports/catalogue_stats.tmpl +++ b/koha-tmpl/intranet-tmpl/default/en/reports/catalogue_stats.tmpl @@ -11,7 +11,7 @@
- +
diff --git a/reports/catalogue_stats.pl b/reports/catalogue_stats.pl index 2a69841732..3d34997ddb 100755 --- a/reports/catalogue_stats.pl +++ b/reports/catalogue_stats.pl @@ -583,9 +583,9 @@ sub calculate { my $emptycol; while (my ($row, $col, $value) = $dbcalc->fetchrow) { # warn "filling table $row / $col / $value "; - $row = "zzEMPTY" if ($row eq undef); - $col = "zzEMPTY" if ($col eq undef); $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; @@ -597,18 +597,19 @@ sub calculate { # undef %cell; # my %cell; # %cell = {coltitle => "zzEMPTY"}; - push @loopcol,{coltitle => "zzEMPTY"} if ($emptycol); + 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 ) { - push @loopcell, {value => $table{$row}->{$col->{coltitle}}} ; + my $value =$table{$row}->{($col->{coltitle} eq "NULL")?"zzEMPTY":$col->{coltitle}}; + push @loopcell, {value => ($value)?$value:"" } ; } - push @looprow,{ 'rowtitle' => $row, + push @looprow,{ 'rowtitle' => ($row eq "zzEMPTY")?"NULL":$row, 'loopcell' => \@loopcell, - 'hilighted' => 1 , + 'hilighted' => ($hilighted >0), 'totalrow' => $table{$row}->{totalrow} }; $hilighted = -$hilighted; @@ -618,7 +619,7 @@ sub calculate { foreach my $col ( @loopcol ) { my $total=0; foreach my $row ( @looprow ) { - $total += $table{$row->{rowtitle}}->{$col->{coltitle}}; + $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; -- 2.39.2
/