X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fgraph%2Fmoney_time-graph.cgi;h=bb3d23aae7949afd28dc70af2389c7f287d523f0;hp=55e8982b452b085a93ea023bf17c08d880964c03;hb=87227cd405166484ca7b791b2bd3c8829ce8d969;hpb=5cd995865b91204f7ce9233a8ba4d5eee62f9be4 diff --git a/httemplate/graph/money_time-graph.cgi b/httemplate/graph/money_time-graph.cgi index 55e8982b4..bb3d23aae 100755 --- a/httemplate/graph/money_time-graph.cgi +++ b/httemplate/graph/money_time-graph.cgi @@ -15,17 +15,19 @@ my $emonth = $cgi->param('emonth') || $curmon+1; #my @labels; #my %data; -my @items = qw( invoiced netsales credits receipts ); +my @items = qw( invoiced netsales credits payments receipts ); my %label = ( 'invoiced' => 'Gross Sales (invoiced)', 'netsales' => 'Net Sales (invoiced - applied credits)', 'credits' => 'Credits', - 'receipts' => 'Receipts/Cashflow (payments - refunds)', + 'payments' => 'Gross Receipts (payments)', + 'receipts' => 'Net Receipts/Cashflow (payments - refunds)', ); my %color = ( 'invoiced' => [ 153, 153, 255 ], #light blue 'netsales' => [ 0, 0, 204 ], #blue 'credits' => [ 204, 0, 0 ], #red + 'payments' => [ 153, 204, 153 ], #light green 'receipts' => [ 0, 204, 0 ], #green );