From: Mark Wells Date: Wed, 11 Sep 2013 22:12:16 +0000 (-0700) Subject: FCC 477 report: omit zero values in part 1A matrix, #24773 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=b71d8ac92ca51e921fdf9b8ea621904d3d9b3597 FCC 477 report: omit zero values in part 1A matrix, #24773 --- diff --git a/httemplate/search/477partIA.html b/httemplate/search/477partIA.html index 5ee44dad5..6b4bffd41 100755 --- a/httemplate/search/477partIA.html +++ b/httemplate/search/477partIA.html @@ -10,10 +10,12 @@ % my $row = 1; % foreach my $cell ( @$col_data ) { % my $el = $xml_prefix . $col . $row; # PartIA_Af1, PartIA_Af2... +% if ( $cell->[0] > 0 ) { <<% $el %>><% $cell->[0] %><<% "/$el" %>> -% if ( $percentages ) { -% $el = $xml_percent . $col . $row; # Part_p_IA_Af1, ... +% if ( $percentages ) { +% $el = $xml_percent . $col . $row; # Part_p_IA_Af1, ... <<% $el %>><% $cell->[1] %><<% "/$el" %>> +% } % } % $row++; % } # foreach $cell @@ -57,9 +59,11 @@ % for (my $col = 0; $col < scalar(@download_option); $col++) { +% if ( $data[$col][$row][0] > 0 ) { <% $data[$col][$row][0] %> -% if ( $percentages ) { +% if ( $percentages ) {
<% $data[$col][$row][1] %> +% } % } % } # for $col