diff options
author | Mitch Jackson <mitch@freeside.biz> | 2018-09-17 21:30:15 -0400 |
---|---|---|
committer | Mitch Jackson <mitch@freeside.biz> | 2018-09-17 21:36:08 -0400 |
commit | 9ea31f98372bc897fd0b4d7e63284eecabf27aa2 (patch) | |
tree | b00e53aa478b645ae540073c069aa2e0d99fb3c6 /httemplate/search/elements | |
parent | 643d1b29847685065eb9b0d46a1129a885147ec0 (diff) |
RT# 78547 Future autobill report - report runs in job queue
Diffstat (limited to 'httemplate/search/elements')
-rw-r--r-- | httemplate/search/elements/grid-report.html | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/httemplate/search/elements/grid-report.html b/httemplate/search/elements/grid-report.html index b1e543012..efc009725 100644 --- a/httemplate/search/elements/grid-report.html +++ b/httemplate/search/elements/grid-report.html @@ -141,13 +141,17 @@ Usage: $m->print($output); </%perl> % } else { +% unless ( $suppress_header ) { <& /elements/header.html, $title &> +% } <% $head %> % my $myself = $cgi->self_url; +% unless ( $suppress_header ) { <P ALIGN="right" CLASS="noprint"> Download full reports<BR> as <A HREF="<% "$myself;_type=xls" %>">Excel spreadsheet</A><BR> </P> +% } <style type="text/css"> .report * { background-color: #f8f8f8; @@ -169,8 +173,10 @@ as <A HREF="<% "$myself;_type=xls" %>">Excel spreadsheet</A><BR> % next if !ref($cell); # placeholders % my $td = $cell->{header} ? 'th' : 'td'; % my $style = ''; -% $style .= " rowspan=".$cell->{rowspan} if $cell->{rowspan} > 1; -% $style .= " colspan=".$cell->{colspan} if $cell->{colspan} > 1; +% $style .= " rowspan=".$cell->{rowspan} +% if exists $cell->{rowspan} && $cell->{rowspan} > 1; +% $style .= " colspan=".$cell->{colspan} +% if exists $cell->{colspan} && $cell->{colspan} > 1; % $style .= ' class="' . $cell->{class} . '"' if $cell->{class}; % if ($cell->{bypass_filter}) { <<%$td%><%$style%>><% $cell->{value} %></<%$td%>> @@ -182,8 +188,10 @@ as <A HREF="<% "$myself;_type=xls" %>">Excel spreadsheet</A><BR> % } </table> <% $foot %> +% unless ( $suppress_footer ) { <& /elements/footer.html &> % } +% } <%args> $title @rows @@ -192,4 +200,6 @@ $head => '' $foot => '' $table_width => "100%" $table_class => "report" +$suppress_header => undef +$suppress_footer => undef </%args> |