simplify UI for projected sales report, #15393
[freeside.git] / httemplate / graph / elements / monthly.html
1 <%doc>
2
3 Example:
4
5   include('elements/monthly.html',
6     #required
7     'title'           => 'Page title',
8     'items'           => \@items,
9     'labels'          => \@labels,       # or \%labels (keys are items)
10
11     #required?
12     'colors'          => \@colors,       # or \%colors,
13
14     #recommended
15     'graph_labels'    => \@graph_labels, # or \%graph_labels,
16
17     #optional
18     'params'          => \@params, # opt,
19     'links'           => \@links,      # or \%link, #opt
20     'link_fromparam'  => 'param_from', #defaults to 'begin'
21     'link_toparam'    => 'param_to',   #defaults to 'end'
22     'daily'           => 1, # omit for monthly granularity
23
24     #optional, pulled from CGI params if not specified
25     'start_month'     => $smonth,
26     'start_year'      => $syear,
27     'end_month'       => $emonth,
28     'end_year'        => $eyear,
29
30
31     #optional, pulled from CGI params if not specified, 
32     #only if 'daily' option is given
33     'start_day'       => $sday,
34     'end_day'         => $eday,
35
36     #optional
37     'agentnum'        => $agentnum,
38     'nototal'         => 1,
39     'graph_type'      => 'LinesPoints',
40     'remove_empty'    => 1,
41     'bottom_total'    => 1,
42     'sprintf'         => '%u', #sprintf format, overrides default %.2f
43     'disable_money'   => 1,
44   );
45
46 </%doc>
47 <% include('report.html',
48             'items'         => $data->{'items'},
49             'data'          => $data->{'data'},
50             'row_labels'    => $data->{'item_labels'},
51             'graph_labels'  => $opt{'graph_labels'} || $data->{'item_labels'},
52             'col_labels'    => $col_labels,
53             'axis_labels'   => $data->{label},
54             'colors'        => $data->{colors},
55             'links'         => \@links,
56             'bottom_link'   => \@bottom_link,
57             'transpose'     => $opt{'daily'},
58             map { $_, $opt{$_} } (qw(title 
59                                     nototal 
60                                     graph_type 
61                                     bottom_total 
62                                     sprintf 
63                                     disable_money
64                                     chart_options)),
65           ) %>
66 <%init>
67
68 my(%opt) = @_;
69 $opt{'debug'} ||= $cgi->param('debug');
70
71 my $conf = new FS::Conf;
72 my $money_char = $opt{'disable_money'} ? '' : $conf->config('money_char');
73
74 my $fromparam = $opt{'link_fromparam'} || 'begin';
75 my $toparam   = $opt{'link_toparam'} || 'end';
76
77 my @items = @{ $opt{'items'} };
78
79 foreach my $other (qw( labels graph_labels colors links )) {
80   if ( ref($opt{$other}) eq 'HASH' ) {
81     $opt{$other} = [ map $opt{$other}{$_}, @items ];
82   }
83 }
84
85 my @mon = qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec);
86
87 #find first month
88 $opt{'start_month'} ||= $cgi->param('start_month'); # || $curmon+1;
89 $opt{'start_year'}  ||= $cgi->param('start_year'); # || 1899+$curyear;
90
91 #find last month
92 $opt{'end_month'} ||= $cgi->param('end_month'); # || $curmon+1;
93 $opt{'end_year'}  ||= $cgi->param('end_year'); # || 1900+$curyear;
94
95 $opt{'projection'} ||= $cgi->param('projection') ? 1 : 0;
96
97 if ( $opt{'daily'} ) { # daily granularity
98     $opt{'start_day'} ||= $cgi->param('start_day');
99     $opt{'end_day'} ||= $cgi->param('end_day');
100 }
101
102 my %reportopts = (
103       'items'        => \@items,
104       'params'       => $opt{'params'},
105       'item_labels'  => ( $cgi->param('_type') =~ /^(png)$/
106                             ? $opt{'graph_labels'}
107                             : $opt{'labels'}
108                         ),
109       'colors'       => $opt{'colors'},
110       'links'        => $opt{'links'},
111
112       'start_day'    => $opt{'start_day'},
113       'start_month'  => $opt{'start_month'},
114       'start_year'   => $opt{'start_year'},
115       'end_day'      => $opt{'end_day'},
116       'end_month'    => $opt{'end_month'},
117       'end_year'     => $opt{'end_year'},
118       'projection'   => $opt{'projection'},
119       'agentnum'     => $opt{'agentnum'},
120       'remove_empty' => $opt{'remove_empty'},
121       'doublemonths' => $opt{'doublemonths'},
122 );
123
124 warn Dumper({ 'REPORTOPTS' => \%reportopts }) if $opt{'debug'};
125
126 my $report;
127 $report = new FS::Report::Table::Daily(%reportopts) if $opt{'daily'};
128 $report = new FS::Report::Table::Monthly(%reportopts) unless $opt{'daily'};
129 my $data = $report->data;
130
131 warn Dumper({'DATA' => $data}) if $opt{'debug'};
132
133 if ( $data->{'error'} ) {
134   die $data->{'error'}; # could be smarter
135 }
136
137 my $col_labels = [ map { my $m = $_; $m =~ s/^(\d+)\//$mon[$1-1] / ; $m }
138                              @{$data->{label}} ];
139 $col_labels = $data->{label} if $opt{'daily'};
140
141 if ( $opt{'remove_empty'} ) {
142   # need to filter out series labels for collapsed rows
143   $opt{'graph_labels'} = [ 
144     map { $opt{'graph_labels'}[$_] } 
145     @{ $data->{indices} }
146   ];
147 }
148
149 my @links;
150 foreach my $link (@{ $data->{'links'} }) {
151   my @speriod = @{$data->{'speriod'}};
152   my @eperiod = @{$data->{'eperiod'}};
153   my ($begin, $end) = ($fromparam, $toparam);
154
155   my @new = ( $link );
156   if(ref($link)) {
157     $begin = $link->{'fromparam'};
158     $end   = $link->{'toparam'};
159     @new = ( $link->{'link'} );
160   }
161   while(@speriod) {
162     push @new, "$begin=". shift(@speriod).";$end=".shift(@eperiod);
163   }
164   if(! $opt{'nototal'}) {
165     push @new, "$begin=". $data->{'speriod'}[0] . ";$end=". $data->{'eperiod'}[-1];
166   }
167   push @links, \@new;
168 }
169
170 my @bottom_link;
171 if($opt{'bottom_link'}) {
172   my @speriod = (@{$data->{'speriod'}}, $data->{'speriod'}[0]);
173   my @eperiod = (@{$data->{'eperiod'}}, $data->{'eperiod'}[-1]);
174   
175   push @bottom_link, $opt{'bottom_link'};
176   while(@speriod) {
177     push @bottom_link, "$fromparam=". shift(@speriod). ";$toparam=". shift(@eperiod);
178   }
179 }
180
181 </%init>