diff options
author | Mark Wells <mark@freeside.biz> | 2014-11-04 13:57:46 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2014-11-04 13:57:46 -0800 |
commit | 642f5b08d9e9ac63252d07523d8f04b9e09752c2 (patch) | |
tree | af316dd6861fbda0655b28c83319529b6ac51eb0 /httemplate/search/report_tax.cgi | |
parent | c7560e90bea5f1450cf66254468d427b854c83c4 (diff) |
tax liability report adjustments, #25935, #26589, #27698
Diffstat (limited to 'httemplate/search/report_tax.cgi')
-rw-r--r--[-rwxr-xr-x] | httemplate/search/report_tax.cgi | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/httemplate/search/report_tax.cgi b/httemplate/search/report_tax.cgi index 124e5d819..bf3b3d85c 100755..100644 --- a/httemplate/search/report_tax.cgi +++ b/httemplate/search/report_tax.cgi @@ -14,7 +14,7 @@ TD.sectionhead { .grid TH { background-color: #cccccc; padding: 0px 3px 2px } .row0 TD { background-color: #eeeeee; padding: 0px 3px 2px; text-align: right} .row1 TD { background-color: #ffffff; padding: 0px 3px 2px; text-align: right} -TD.rowhead { font-weight: bold; text-align: left } +TD.rowhead { font-weight: bold; text-align: left; padding: 0px 3px } .bigmath { font-size: large; font-weight: bold; font: sans-serif; text-align: center } .total { font-style: italic } </STYLE> @@ -141,6 +141,19 @@ TD.rowhead { font-weight: bold; text-align: left } % $rownum++; % $prev_row = $row; % } # foreach my $row +% # at the end of everything + </TBODY> +% if ( $report->{outside} > 0 ) { + <TBODY CLASS="total" STYLE="background-color: #cccccc; line-height: 3"> + <TR> + <TD CLASS="rowhead"> + <% emt('Out of taxable region') %> + </TD> + <TD><% $money_sprintf->( $report->{outside } ) %></TD> + <TD COLSPAN=0></TD> + </TR> + </TBODY> +% } </TABLE> <& /elements/footer.html &> |