summaryrefslogtreecommitdiff
path: root/httemplate/graph/elements/report.html
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2017-10-17 09:41:12 -0400
committerChristopher Burger <burgerc@freeside.biz>2017-12-13 14:38:11 -0500
commit08ac1d0dc44626f442f8287c497eca9e98ab92b7 (patch)
tree2e1cd043635c7dd66fb08f5f06ee82210f57e269 /httemplate/graph/elements/report.html
parenteb95e404a35f9f1b7125e67d1e539ada860fcdf0 (diff)
RT# 78019 - Added total revenue line to Package churn report
Diffstat (limited to 'httemplate/graph/elements/report.html')
-rw-r--r--httemplate/graph/elements/report.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/graph/elements/report.html b/httemplate/graph/elements/report.html
index b5d214816..70c3a9e94 100644
--- a/httemplate/graph/elements/report.html
+++ b/httemplate/graph/elements/report.html
@@ -249,7 +249,7 @@ any delimiter and linked from the elements in @data.
% my $e = 0;
% foreach ( @$data_row ) {
% my $entry = $_;
-% $entry = $money_char . sprintf($sprintf, $entry);
+% $entry = $money_char . sprintf($sprintf_fields->{$row} ? $sprintf_fields->{$row} : $sprintf, $entry);
% $entry = $link_prefix . shift(@$links) . "\">$entry</A>" if $link_prefix;
% push @{$cell[$i]}, $entry;
% $bottom_total[$e++] += $_ unless $opt{no_graph}[$i-1];
@@ -343,6 +343,7 @@ my $conf = new FS::Conf;
my $money_char = $opt{'disable_money'} ? '' : $conf->config('money_char');
my @items = @{ $opt{'items'} };
+my $sprintf_fields = $opt{'sprintf_fields'};
foreach my $other (qw( col_labels row_labels graph_labels axis_labels colors links )) {
if ( ref($opt{$other}) eq 'HASH' ) {