diff options
Diffstat (limited to 'httemplate/graph/money_time-graph.cgi')
-rwxr-xr-x | httemplate/graph/money_time-graph.cgi | 6 |
1 files changed, 4 insertions, 2 deletions
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 ); |