1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
<%
#find first month
my $syear = $cgi->param('start_year'); # || 1899+$curyear;
my $smonth = $cgi->param('start_month'); # || $curmon+1;
#find last month
my $eyear = $cgi->param('end_year'); # || 1900+$curyear;
my $emonth = $cgi->param('end_month'); # || $curmon+1;
#XXX or virtual
my( $agentnum, $agent ) = ('', '');
if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
$agentnum = $1;
$agent = qsearchs('agent', { 'agentnum' => $agentnum } );
die "agentnum $agentnum not found!" unless $agent;
}
my $agentname = $agent ? $agent->agent.' ' : '';
my @items = qw( invoiced netsales credits payments receipts );
if ( $cgi->param('12mo') == 1 ) {
@items = map $_.'_12mo', @items;
}
my %label = (
'invoiced' => 'Gross Sales',
'netsales' => 'Net Sales',
'credits' => 'Credits',
'payments' => 'Gross Receipts',
'receipts' => 'Net Receipts',
);
my %graph_suffix = (
'invoiced' => ' (invoiced)',
'netsales' => ' (invoiced - applied credits)',
'credits' => '',
'payments' => ' (payments)',
'receipts' => '/Cashflow (payments - refunds)',
);
my %graph_label = map { $_ => $label{$_}.$graph_suffix{$_} } keys %label;
$label{$_.'_12mo'} = $label{$_}. " (previous 12 months)"
foreach keys %label;
$graph_label{$_.'_12mo'} = $graph_label{$_}. " (previous 12 months)"
foreach keys %graph_label;
my %color = (
'invoiced' => '9999ff', #light blue
'netsales' => '0000cc', #blue
'credits' => 'cc0000', #red
'payments' => '99cc99', #light green
'receipts' => '00cc00', #green
);
$color{$_.'_12mo'} = $color{$_}
foreach keys %color;
my %link = (
'invoiced' => "${p}search/cust_bill.html?agentnum=$agentnum;",
'credits' => "${p}search/cust_credit.html?agentnum=$agentnum;",
'payments' => "${p}search/cust_pay.cgi?magic=_date;agentnum=$agentnum;",
);
# XXX link 12mo?
%><%= include('elements/monthly.html',
'title' => $agentname.
'Sales, Credits and Receipts Summary',
'items' => \@items,
'labels' => \%label,
'graph_labels' => \%graph_label,
'colors' => \%color,
'links' => \%link,
'start_month' => $smonth,
'start_year' => $syear,
'end_month' => $emonth,
'end_year' => $eyear,
'agentnum' => $agentnum,
'nototal' => scalar($cgi->param('12mo')),
)
%>
|