summaryrefslogtreecommitdiff
path: root/httemplate/graph/cust_pkg_cost.cgi
blob: 0aa7e3262997475ab38ce35690c870c59c8d5553 (plain)
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
<% include('elements/monthly.html',
                'title'        => $agentname.
                                  'Package Costs Report',
                'graph_type'   => 'Lines',
                'items'        => \@items,
                'labels'       => \%label,
                'graph_labels' => \%label,
                'colors'       => \%color,
                'links'        => \%link,
                'agentnum'     => $agentnum,
                'nototal'      => scalar($cgi->param('12mo')),
             )
%>
<%init>

die "access denied"
  unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');

#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( cust_pkg_setup_cost cust_pkg_recur_cost );
if ( $cgi->param('12mo') == 1 ) {
  @items = map $_.'_12mo', @items;
}

my %label = (
  'cust_pkg_setup_cost' => 'Setup Costs',
  'cust_pkg_recur_cost' => 'Recurring Costs',
);

$label{$_.'_12mo'} = $label{$_}. " (prev 12 months)"
  foreach keys %label;

my %color = (
  'cust_pkg_setup_cost' => '0000cc',
  'cust_pkg_recur_cost' => '00cc00',
);
$color{$_.'_12mo'} = $color{$_}
  foreach keys %color;

my %link = (
  'cust_pkg_setup_cost' => { 'link' => "${p}search/cust_pkg.cgi?agentnum=$agentnum;",
                             'fromparam' => 'setup_begin',
                             'toparam'   => 'setup_end',
                           },
  'cust_pkg_recur_cost' => { 'link' => "${p}search/cust_pkg.cgi?agentnum=$agentnum;",
                             'fromparam' => 'active_begin',
                             'toparam'   => 'active_end',
                           },
);
# XXX link 12mo?

</%init>