X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fgraph%2Fcust_pkg.html;h=6aea10492f335bfa2691e0c982481030ce3be8e3;hb=79c8be3bd0c5db42794b36bf5b5dd25addba67cb;hp=68c5b21360a88797fb20c9dacedb40dcf0993e3b;hpb=dfbcb60e8b9207bd9aa7ebd297ff9d2599121bf5;p=freeside.git 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;