summaryrefslogtreecommitdiff
path: root/httemplate/graph/elements/monthly.html
blob: 7b1b98a614eaa62197034c5337e0506a066a0e71 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<%doc>

Example:

  include('elements/monthly.html',
    #required
    'title'           => 'Page title',
    'items'           => \@items,
    'labels'          => \@labels,       # or \%labels (keys are items)

    #required?
    'colors'          => \@colors,       # or \%colors,

    #recommended
    'graph_labels'    => \@graph_labels, # or \%graph_labels,

    #optional
    'params'          => \@params, # opt,
    'links'           => \@links,      # or \%link, #opt
    'link_fromparam'  => 'param_from', #defaults to 'begin'
    'link_toparam'    => 'param_to',   #defaults to 'end'

    #optional, pulled from CGI params if not specified
    'start_month'     => $smonth,
    'start_year'      => $syear,
    'end_month'       => $emonth,
    'end_year'        => $eyear,

    #optional
    'agentnum'        => $agentnum,
    'nototal'         => 1,
    'graph_type'      => 'LinesPoints',
    'remove_empty'    => 1,
    'bottom_total'    => 1,
    'sprintf'         => '%u', #sprintf format, overrides default %.2f
    'disable_money'   => 1,
  );

</%doc>
<% include('report.html',
            'items'         => $data->{'items'},
            'data'          => $data->{'data'},
            'row_labels'    => $data->{'item_labels'},
            'graph_labels'  => $opt{'graph_labels'} || $data->{'item_labels'},
            'col_labels'    => [ map { my $m = $_; $m =~ s/^(\d+)\//$mon[$1-1] / ; $m }
                                 @{$data->{label}} ],
            'axis_labels'   => $data->{label},
            'colors'        => $data->{colors},
            'links'         => \@links,
            'bottom_link'   => \@bottom_link,
            map { $_, $opt{$_} } (qw(title 
                                    nototal 
                                    graph_type 
                                    bottom_total 
                                    sprintf 
                                    disable_money)),
          ) %>
<%init>

my(%opt) = @_;

my $conf = new FS::Conf;
my $money_char = $opt{'disable_money'} ? '' : $conf->config('money_char');

my $fromparam = $opt{'link_fromparam'} || 'begin';
my $toparam   = $opt{'link_toparam'} || 'end';

my @items = @{ $opt{'items'} };

foreach my $other (qw( labels graph_labels colors links )) {
  if ( ref($opt{$other}) eq 'HASH' ) {
    $opt{$other} = [ map $opt{$other}{$_}, @items ];
  }
}

my @mon = qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec);

#find first month
$opt{'start_month'} ||= $cgi->param('start_month'); # || $curmon+1;
$opt{'start_year'}  ||= $cgi->param('start_year'); # || 1899+$curyear;

#find last month
$opt{'end_month'} ||= $cgi->param('end_month'); # || $curmon+1;
$opt{'end_year'}  ||= $cgi->param('end_year'); # || 1900+$curyear;

my $report = new FS::Report::Table::Monthly (

  'items'        => \@items,
  'params'       => $opt{'params'},
  'item_labels'  => ( $cgi->param('_type') =~ /^(png)$/
                        ? $opt{'graph_labels'}
                        : $opt{'labels'}
                    ),
  'colors'       => $opt{'colors'},
  'links'        => $opt{'links'},

  'start_month'  => $opt{'start_month'},
  'start_year'   => $opt{'start_year'},
  'end_month'    => $opt{'end_month'},
  'end_year'     => $opt{'end_year'},

  'agentnum'     => $opt{'agentnum'},
  'remove_empty' => $opt{'remove_empty'},
);
my $data = $report->data;

my @links;
foreach my $link (@{ $data->{'links'} }) {
  my @speriod = @{$data->{'speriod'}};
  my @eperiod = @{$data->{'eperiod'}};
  my ($begin, $end) = ($fromparam, $toparam);

  my @new = ( $link );
  if(ref($link)) {
    $begin = $link->{'fromparam'};
    $end   = $link->{'toparam'};
    @new = ( $link->{'link'} );
  }
  while(@speriod) {
    push @new, "$begin=". shift(@speriod).";$end=".shift(@eperiod);
  }
  if(! $opt{'nototal'}) {
    push @new, "$begin=". $data->{'speriod'}[0] . ";$end=". $data->{'eperiod'}[-1];
  }
  push @links, \@new;
}

my @bottom_link;
if($opt{'bottom_link'}) {
  my @speriod = (@{$data->{'speriod'}}, $data->{'speriod'}[0]);
  my @eperiod = (@{$data->{'eperiod'}}, $data->{'eperiod'}[-1]);
  
  push @bottom_link, $opt{'bottom_link'};
  while(@speriod) {
    push @bottom_link, "$fromparam=". shift(@speriod). ";$toparam=". shift(@eperiod);
  }
}

</%init>