X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fgraph%2Fcust_pkg.html;fp=httemplate%2Fgraph%2Fcust_pkg.html;h=6aea10492f335bfa2691e0c982481030ce3be8e3;hp=68c5b21360a88797fb20c9dacedb40dcf0993e3b;hb=ef7e87f054b8dc7c68caa020ddc9876b4e09641f;hpb=6e7c716aed5b6b7d6477e767131b23ba69021a3c diff --git a/httemplate/graph/cust_pkg.html b/httemplate/graph/cust_pkg.html index 68c5b2136..6aea10492 100644 --- a/httemplate/graph/cust_pkg.html +++ b/httemplate/graph/cust_pkg.html @@ -13,7 +13,7 @@ 'disable_money' => 1, 'remove_empty' => (scalar(@group_keys) > 1 ? 1 : 0), 'nototal' => 1, - 'no_graph' => [ 1, 0, 0, 0, 0, 1 ], # don't graph 'active, total_revenue' + 'no_graph' => [ 1, 0, 0, 0, 0, 1, 1 ], # don't graph 'active, total_revenue, total_revenue_diff' &> <%init> @@ -34,7 +34,7 @@ if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) { my $agentname = $agent ? $agent->agent.' ' : ''; -my @base_items = qw( active_pkg setup_pkg susp_pkg unsusp_pkg cancel_pkg total_revenue_pkg ); +my @base_items = qw( active_pkg setup_pkg susp_pkg unsusp_pkg cancel_pkg total_revenue_pkg total_revenue_diff ); my %base_labels = ( 'active_pkg' => 'Active packages', @@ -42,7 +42,8 @@ my %base_labels = ( 'susp_pkg' => 'Suspensions', 'unsusp_pkg' => 'Unsuspensions', 'cancel_pkg' => 'Cancellations', - 'total_revenue_pkg' => 'Total Revenue' + 'total_revenue_pkg' => 'Total Revenue', + 'total_revenue_diff' => 'Revenue Difference', ); my %base_colors = ( @@ -52,10 +53,12 @@ my %base_colors = ( 'unsusp_pkg' => '44ff44', #light green 'cancel_pkg' => 'cc0000', #red 'total_revenue_pkg' => '0000ff', #blue + 'total_revenue_diff' => '0000ff', #blue ); my $sprintf_fields = { 'total_revenue_pkg' => '%.2f', #format to 2 decimal places + 'total_revenue_diff' => '%.2f', #format to 2 decimal places }; my %base_links;