% include("/elements/header.html", "$agentname Tax Report - ".
( $beginning
? time2str('%h %o %Y ', $beginning )
: ''
).
'through '.
( $ending == 4294967295
? 'now'
: time2str('%h %o %Y', $ending )
)
)
%>
<% include('/elements/table-grid.html') %>
|
|
Tax invoiced |
|
|
Tax credited |
% my $bgcolor1 = '#eeeeee';
% my $bgcolor2 = '#ffffff';
% my $bgcolor;
%
% foreach my $tax ( @taxes ) {
%
% if ( $bgcolor eq $bgcolor1 ) {
% $bgcolor = $bgcolor2;
% } else {
% $bgcolor = $bgcolor1;
% }
%
% my $link = '';
% if ( $tax->{'label'} ne 'Total' ) {
% $link = ';'. $tax->{'url_param'};
% }
%
<% $tax->{'label'} %> |
<% $tax->{base} ? qq! | ! : '' %>
<% $money_char %><% sprintf('%.2f', $tax->{'tax'} ) %>
|
<% !($tax->{base}) ? qq! | ! : '' %>
|
<% $tax->{base} ? qq! | ! : '' %>
<% $money_char %><% sprintf('%.2f', $tax->{'credit'} ) %>
|
<% !($tax->{base}) ? qq! | ! : '' %>
% }