X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fgraph%2Felements%2Fmonthly.html;h=1a9428115832aa8f97ba63efa52700b90b6ead2b;hp=7039bfe56a6a23e0d0114f6e063bc24063fc5a1a;hb=9aee669886202be7035e6c6049fc71bc99dd3013;hpb=c648976f0b7975f2328ebd7ba8c711fad0ca4195 diff --git a/httemplate/graph/elements/monthly.html b/httemplate/graph/elements/monthly.html index 7039bfe56..1a9428115 100644 --- a/httemplate/graph/elements/monthly.html +++ b/httemplate/graph/elements/monthly.html @@ -19,15 +19,25 @@ Example: '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, + '12mo' => 0, + + #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, + 'cust_classnum' => \@classnums, 'nototal' => 1, 'graph_type' => 'LinesPoints', 'remove_empty' => 1, @@ -37,280 +47,40 @@ Example: ); -% if ( $cgi->param('_type') =~ /^(csv)$/ ) { -% -% #http_header('Content-Type' => 'text/comma-separated-values' ); #IE chokes -% http_header('Content-Type' => 'text/plain' ); -% -% my $csv = new Text::CSV_XS { 'always_quote' => 1, -% 'eol' => "\n", #"\015\012", #"\012" -% }; -% -% $csv->combine(map { my $m=$_; $m =~ s/^(\d+)\//$mon[$1-1] /; $m; } -% ('', @{$data->{label}}, $opt{'nototal'} ? () : 'Total') -% ); -% -<% $csv->string %> -% -% my @bottom_total = (); -% foreach ( @{ $data->{'items'} } ) { -% -% my $col = 0; -% my $total = 0; -% $csv->combine( -% shift( @{ $data->{'item_labels'} } ), -% map { $total += $_; $bottom_total[$col++] += $_; sprintf($sprintf, $_); } -% ( @{ shift( @{$data->{data}} ) } ), -% ( $opt{'nototal'} ? () : sprintf($sprintf, $total) ), -% ); -% unless ( $opt{'nototal'} ) { -% $bottom_total[$col++] += $total; -% } -% -<% $csv->string %> -% -% } -% -% if ( $opt{'bottom_total'} ) { -% $csv->combine( -% 'Total', -% map { sprintf($sprintf, $_) } @bottom_total, -% ); -% -<% $csv->string %> -% -% } -% -% } elsif ( $cgi->param('_type') =~ /(\.xls)$/ ) { -% -% #http_header('Content-Type' => 'application/excel' ); #eww -% http_header('Content-Type' => 'application/vnd.ms-excel' ); -% #http_header('Content-Type' => 'application/msexcel' ); #alas -% -% my $output = ''; -% my $XLS = new IO::Scalar \$output; -% my $workbook = Spreadsheet::WriteExcel->new($XLS) -% or die "Error opening .xls file: $!"; -% -% my $worksheet = $workbook->add_worksheet(substr($opt{'title'},0,31)); -% -% my($r,$c) = (0,0); -% -% foreach ('', @{$data->{label}}, ($opt{'nototal'} ? () : 'Total') ) { -% my $header = $_; -% $header =~ s/^(\d+)\//$mon[$1-1] /; -% $worksheet->write($r, $c++, $header) -% } -% -% my @bottom_total = (); -% foreach ( @{ $data->{'items'} } ) { -% $r++; -% $c = 0; -% my $total = 0; -% $worksheet->write( $r, $c++, shift( @{ $data->{'item_labels'} } ) ); -% foreach ( @{ shift( @{$data->{data}} ) } ) { -% $total += $_; -% $bottom_total[$c] += $_; -% $worksheet->write($r, $c++, sprintf($sprintf, $_) ); -% } -% unless ( $opt{'nototal'} ) { -% $bottom_total[$c] += $total; -% $worksheet->write($r, $c++, sprintf($sprintf, $total) ); -% } -% } -% -% $c = 0; -% if ( $opt{'bottom_total'} ) { -% $r++; -% $worksheet->write($r, $c++, 'Total'); -% $worksheet->write($r, $c++, sprintf($sprintf, $_)) foreach @bottom_total; -% } -% -% $workbook->close();# or die "Error creating .xls file: $!"; -% -% http_header('Content-Length' => length($output) ); -% -<% $output %> -% } elsif ( $cgi->param('_type') =~ /^(png)$/ ) { -% -% #my $chart = Chart::LinesPoints->new(1024,480); -% #my $chart = Chart::LinesPoints->new(768,480); -% -% my $graph_type = 'LinesPoints'; -% if ( $opt{'graph_type'} =~ /^(LinesPoints|Mountain)$/ ) { -% $graph_type = $1; -% } -% my $class = "Chart::$graph_type"; -% -% my $chart = $class->new(976,384); -% -% my $d = 0; -% $chart->set( -% #'min_val' => 0, -% 'legend' => 'bottom', -% 'colors' => { ( -% map { my $color = $_; -% 'dataset'.$d++ => -% [ map hex($_), unpack 'a2a2a2', $color ] -% } -% #@{ $opt{'colors'} } -% @{ $data->{'colors'} } -% ), -% #'grey_background' => [ 211, 211, 211 ], -% 'grey_background' => 'white', -% 'background' => [ 0xe8, 0xe8, 0xe8 ], #grey -% }, -% #'grey_background' => 'false', -% 'legend_labels' => $data->{'item_labels'}, -% 'brush_size' => 4, -% #'pt_size' => 12, -% ); -% -% #my @data = map { $data->{$_} } ( 'label', @items ); -% my @data = @{ $data->{data} }; -% unshift @data, $data->{'label'}; -% -% http_header('Content-Type' => 'image/png' ); -% -% $chart->_set_colors(); -% -<% $chart->scalar_png(\@data) %> -% -% } else { -% -<% include('/elements/header.html', $opt{'title'} ) %> -% $cgi->param('_type', 'png'); - - -

- -% unless ( $opt{'disable_download'} ) { -% $cgi->param('_type', "monthly.xls" ); - Download full results
- as Excel spreadsheet
-% $cgi->param('_type', 'csv'); - as CSV file

-% $cgi->param('_type', "html" ); -% } -% -

-<% include('/elements/table.html', 'e8e8e8') %> - - - - - -% foreach my $column ( @{$data->{label}} ) { -% #$column =~ s/^(\d+)\//$mon[$1-1]
/e; -% $column =~ s/^(\d+)\//$mon[$1-1]
/; - <% $column %> -% } - -% unless ( $opt{'nototal'} ) { - Total -% } - - - -% my @bottom_total = (); -% foreach my $row ( @{ $data->{'items'} } ) { -% -% #my $color = shift( @{ $opt{'colors'} } ); -% my $color = shift( @{ $data->{'colors'} } ); -% my $link = shift( @{ $data->{'links'} } ); -% my ( $begin, $end ) = ( $fromparam, $toparam ); -% if ( ref($link) ) { -% my $ref = $link; -% $link = $ref->{link}; -% $begin = $ref->{fromparam}; -% $end = $ref->{toparam}; -% } -% $link = $link ? qq("><% $label %> - - -% #my $link = exists($opt{'links'}{$row}) -% # ? qq( - <% $link ? $link. "$begin=". shift(@speriod). ";$end=". shift(@eperiod). '">' : '' %><% $money_char %><% sprintf($sprintf,, $column) %><% $link ? '' : '' %> - -% -% $total += $column; -% $bottom_total[$col++] += $column; -% -% } - -% unless ( $opt{'nototal'} ) { - - <% $link ? $link. "$begin=". ${$data->{speriod}}[0]. ";$end=". ${$data->{eperiod}}[-1]. '">' : '' %><% $money_char %><% sprintf($sprintf, $total) %><% $link ? '' : '' %> - -% $bottom_total[$col++] += $total; -% } - - - -% } - -% if ( $opt{'bottom_total'} ) { -% my @speriod = ( @{$data->{speriod}}, ${$data->{speriod}}[0] ); -% my @eperiod = ( @{$data->{eperiod}}, ${$data->{eperiod}}[-1] ); - - - Total - -% foreach my $total ( @bottom_total ) { - - - <% $opt{'bottom_link'} - ? '' - : '' - %>$<% sprintf($sprintf, $total) %><% $opt{'bottom_link'} ? '' : '' %> - - - -% } - - - -% } - - - -<% include('/elements/footer.html') %> -% } -<%once> - - +<% 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) = @_; - -my $sprintf = $opt{'sprintf'} || '%.2f'; -my $fromparam = $opt{'link_fromparam'} || 'begin'; -my $toparam = $opt{'link_toparam'} || 'end'; +$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 )) { -#foreach my $other (qw( labels graph_labels colors )) { if ( ref($opt{$other}) eq 'HASH' ) { $opt{$other} = [ map $opt{$other}{$_}, @items ]; } @@ -326,26 +96,99 @@ $opt{'start_year'} ||= $cgi->param('start_year'); # || 1899+$curyear; $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' => $opt{'items'}, - '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'}, +$opt{'12mo'} ||= $cgi->param('12mo') ? 1 : 0; + +$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'}, + '12mo' => $opt{'12mo'}, + 'projection' => $opt{'projection'}, + 'agentnum' => $opt{'agentnum'}, + 'refnum' => $opt{'refnum'}, + 'cust_classnum'=> $opt{'cust_classnum'}, + 'remove_empty' => $opt{'remove_empty'}, + 'doublemonths' => $opt{'doublemonths'}, + 'normalize' => $opt{'normalize'}, ); + +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'} ) { # no, always do this + # 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]; +} + +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); + } +} +