summaryrefslogtreecommitdiff
path: root/httemplate/graph/elements/monthly.html
blob: c736de69655750363a73ac2884addcd791e6107b (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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<%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'
    'daily'           => 1, # omit for monthly granularity
    'no_graph'        => \@no_graph, # items to leave off the graph (subtotals)

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


    #optional, pulled from CGI params if not specified, 
    #only if 'daily' option is given
    'start_day'       => $sday,
    'end_day'         => $eday,

    #optional
    'agentnum'        => $agentnum,
    'refnum'          => $refnum,
    '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'  => \@graph_labels,
            'col_labels'    => $col_labels,
            'axis_labels'   => $data->{label},
            'colors'        => \@colors,
            'links'         => \@links,
            'no_graph'      => \@no_graph,
            'bottom_link'   => \@bottom_link,
            'transpose'     => $opt{'daily'},
            map { $_, $opt{$_} } (qw(title
                                    nototal
                                    graph_type
                                    bottom_total
                                    sprintf
                                    disable_money
                                    chart_options)),
          ) %>
<%init>

my(%opt) = @_;
$opt{'debug'} ||= $cgi->param('debug');

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;

$opt{'projection'} ||= $cgi->param('projection') ? 1 : 0;

if ( $opt{'daily'} ) { # daily granularity
    $opt{'start_day'} ||= $cgi->param('start_day');
    $opt{'end_day'} ||= $cgi->param('end_day');
}

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

      'start_day'    => $opt{'start_day'},
      'start_month'  => $opt{'start_month'},
      'start_year'   => $opt{'start_year'},
      'end_day'      => $opt{'end_day'},
      'end_month'    => $opt{'end_month'},
      'end_year'     => $opt{'end_year'},
      'projection'   => $opt{'projection'},
      'agentnum'     => $opt{'agentnum'},
      'refnum'       => $opt{'refnum'},
      'remove_empty' => $opt{'remove_empty'},
      'doublemonths' => $opt{'doublemonths'},
);

warn Dumper({ 'REPORTOPTS' => \%reportopts }) if $opt{'debug'};

my $report;
$report = new FS::Report::Table::Daily(%reportopts) if $opt{'daily'};
$report = new FS::Report::Table::Monthly(%reportopts) unless $opt{'daily'};
my $data = $report->data;

warn Dumper({'DATA' => $data}) if $opt{'debug'};

if ( $data->{'error'} ) {
  die $data->{'error'}; # could be smarter
}

my $col_labels = [ map { my $m = $_; $m =~ s/^(\d+)\//$mon[$1-1] / ; $m }
                             @{$data->{label}} ];
$col_labels = $data->{label} if $opt{'daily'};

my @colors;
my @graph_labels;
my @no_graph;
if ( $opt{'remove_empty'} ) {
  # then filter out per-item things for collapsed rows
  foreach my $i (@{ $data->{'indices'} }) {
    push @colors,       $opt{'colors'}[$i];
    push @graph_labels, $opt{'graph_labels'}[$i];
    push @no_graph,     $opt{'no_graph'}[$i];
  }
} else {
  @colors       = @{ $opt{'colors'} };
  @graph_labels = @{ $opt{'graph_labels'} };
  @no_graph     = @{ $opt{'no_graph'} || [] };
}

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>