Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / httemplate / search / customer_accounting_summary.html
1 % if ( $cgi->param('_type') =~ /(xls)$/ ) {
2 <%perl>
3   # egregious false laziness w/ search/report_tax-xls.cgi
4   my $format = $FS::CurrentUser::CurrentUser->spreadsheet_format;
5   my $filename = $cgi->url(-relative => 1);
6   $filename =~ s/\.html$//;
7   $filename .= $format->{extension};
8   http_header('Content-Type' => $format->{mime_type});
9   http_header('Content-Disposition' => qq!attachment;filename="$filename"!);
10
11   my $output = '';
12   my $XLS = IO::String->new($output);
13   my $workbook = $format->{class}->new($XLS)
14     or die "Error opening .xls file: $!";
15
16   my $worksheet = $workbook->add_worksheet('Summary');
17
18   my %format = (
19     header => {
20       size      => 11,
21       bold      => 1,
22       align     => 'center',
23       valign    => 'vcenter',
24       text_wrap => 1,
25     },
26     money => {
27       size      => 11,
28       align     => 'right',
29       valign    => 'bottom',
30       num_format=> 8,
31     },
32     '' => {},
33   );
34   my %default = (
35       font      => 'Calibri',
36       border    => 1,
37   );
38   foreach (keys %format) {
39     my %f = (%default, %{$format{$_}});
40     $format{$_} = $workbook->add_format(%f);
41     $format{"m_$_"} = $workbook->add_format(%f);
42   }
43
44   my ($r, $c) = (0, 0);
45   for my $row (@rows) {
46     $c = 0;
47     my $thisrow = shift @cells;
48     for my $cell (@$thisrow) {
49       if (!ref($cell)) {
50         # placeholder, so increment $c so that we write to the correct place
51         $c++;
52         next;
53       }
54       # format name
55       my $f = '';
56       $f = 'header' if $row->{header} or $cell->{header};
57       $f = 'money' if $cell->{format} eq 'money';
58       if ( $cell->{rowspan} > 1 or $cell->{colspan} > 1 ) {
59         my $range = xl_range_formula(
60           'Summary',
61           $r, $r - 1 + ($cell->{rowspan} || 1),
62           $c, $c - 1 + ($cell->{colspan} || 1)
63         );
64         #warn "merging $range\n";
65         $worksheet->merge_range($range, $cell->{value}, $format{"m_$f"});
66       } else {
67       #warn "writing ".xl_rowcol_to_cell($r, $c)."\n";
68         $worksheet->write( $r, $c, $cell->{value}, $format{$f} );
69       }
70       $c++;
71     } #$cell
72   $r++;
73   } #$row
74   $workbook->close;
75
76   http_header('Content-Length' => length($output));
77   $m->print($output);
78 </%perl>
79 % } else {
80 <& /elements/header.html, $title &>
81 % my $myself = $cgi->self_url;
82 <P ALIGN="right" CLASS="noprint">
83 Download full reports<BR>
84 as <A HREF="<% "$myself;_type=xls" %>">Excel spreadsheet</A><BR>
85 % # as <A HREF="<% "$myself;_type=csv" %>">CSV file</A> # is this still needed?
86 </P>
87 <style type="text/css">
88 .report * {
89   background-color: #f8f8f8;
90   border: 1px solid black;
91   padding: 2px;
92 }
93 .report td {
94   text-align: right;
95 }
96 .total * { background-color: #f5f6be; }
97 .shaded * { background-color: #c8c8c8; }
98 .totalshaded * { background-color: #bfc094; }
99 </style>
100 <table class="report" width="100%" cellspacing=0>
101 % foreach my $rowinfo (@rows) {
102   <tr<% $rowinfo->{class} ? ' class="'.$rowinfo->{class}.'"' : ''%>>
103 %   my $thisrow = shift @cells;
104 %   foreach my $cell (@$thisrow) {
105 %     next if !ref($cell); # placeholders
106 %     my $td = $cell->{header} ? 'th' : 'td';
107 %     my $style = '';
108 %     $style .= " rowspan=".$cell->{rowspan} if $cell->{rowspan} > 1;
109 %     $style .= " colspan=".$cell->{colspan} if $cell->{colspan} > 1;
110       <<%$td%><%$style%>><% $cell->{value} |h %></<%$td%>>
111 %   }
112   </tr>
113 % }
114 </table>
115
116 <& /elements/footer.html &>
117 % }
118 <%init>
119
120 die "access denied"
121   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
122
123 my ($agentnum,$sel_agent);
124 if ( $cgi->param('agentnum') eq 'all' ) {
125   $agentnum = 0;
126 }
127 elsif ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
128   $agentnum = $1;
129   $sel_agent = qsearchs('agent', { 'agentnum' => $agentnum } );
130   die "agentnum $agentnum not found!" unless $sel_agent;
131 }
132 my $title = $sel_agent ? $sel_agent->agent.' ' : '';
133
134 my ($refnum,$sel_part_referral);
135 if ( $cgi->param('refnum') =~ /^(\d+)$/ ) {
136   $refnum = $1;
137   $sel_part_referral = qsearchs('part_referral', { 'refnum' => $refnum } );
138   die "refnum $refnum not found!" unless $sel_part_referral;
139 }
140 $title .=  $sel_part_referral->referral.' '
141   if $sel_part_referral;
142
143 $title .= 'Customer Accounting Summary Report';
144
145 my @cust_classnums = grep /^\d+$/, $cgi->param('cust_classnum');
146
147 my @items  = ('netsales', 'cashflow');
148 my @params = ( [], [] );
149 my $setuprecur = '';
150 if ( $cgi->param('setuprecur') ) {
151   $setuprecur = 1;
152   # instead of 'cashflow' (payments - refunds), use 'receipts'
153   # (applied payments), because it's divisible into setup and recur.
154   @items = ('netsales', 'receipts', 'netsales', 'receipts');
155   @params = ( 
156     [ setuprecur => 'setup' ],
157     [ setuprecur => 'setup' ],
158     [ setuprecur => 'recur' ],
159     [ setuprecur => 'recur' ],
160   );
161 }
162 my @labels = ();
163 my @cross_params = ();
164 my @custnames = ();
165
166 my $status = $cgi->param('status');
167 die "invalid status" unless $status =~ /^\w+|$/;
168
169 my %search_hash;
170 foreach (qw(agentnum refnum status)) {
171   if ( defined $cgi->param($_) ) {
172     $search_hash{$_} = $cgi->param($_);
173   }
174 }
175 $search_hash{'classnum'} = [ $cgi->param('cust_classnum') ] 
176   if $cgi->param('cust_classnum');
177
178 my $query = FS::cust_main::Search->search(\%search_hash);
179 my @custs = qsearch($query);
180
181 foreach my $cust_main ( @custs ) {
182   # XXX should do this in the qsearch
183   next unless ($status eq '' || $status eq $cust_main->status); 
184   next unless ($agentnum == 0 || $cust_main->agentnum eq $agentnum);
185   next unless ($refnum   == 0 || $cust_main->refnum eq $refnum);
186
187   push @custnames, $cust_main->name;
188
189   push @cross_params, [ ('custnum' => $cust_main->custnum) ];
190 }
191
192 my %opt = (
193   items         => \@items,
194   params        => \@params,
195   cross_params  => \@cross_params,
196   agentnum      => $agentnum,
197   refnum        => $refnum,
198 );
199 for ( qw(start_month start_year end_month end_year) ) {
200   if ( $cgi->param($_) =~ /^(\d+)$/ ) {
201     $opt{$_} = $1;
202   }
203 }
204
205 warn Dumper(OPTIONS => \%opt) if $cgi->param('debug');
206 my $report = FS::Report::Table::Monthly->new(%opt);
207 my $data = $report->data;
208 warn Dumper(DATA => $data) if $cgi->param('debug') >= 2;
209
210 my @total;
211
212 my @rows; # hashes of row info
213 my @cells; # arrayrefs of cell info
214 # We use Excel currency format, but not Excel dates, because
215 # these are whole months and there's no nice way to express that.
216 # This is the historical behavior for monthly reports.
217
218 # header row
219 $rows[0] = {};
220 $cells[0] = [
221   { header => 1, rowspan => 2, colspan => ($setuprecur ? 2 : 1) },
222   ($setuprecur ? '' : ()),
223   map {
224     { header => 1, colspan => 2, value => time2str('%b %Y', $_) },
225     ''
226   } @{ $data->{speriod} }
227 ];
228 my $ncols = scalar(@{ $data->{speriod} });
229
230 $rows[1] = {};
231 $cells[1] = [ '',
232   ($setuprecur ? '' : ()),
233   map { 
234   ( { header => 1, value => mt('Billed') },
235     { header => 1, value => mt('Paid') }
236   ) } (1..$ncols)
237 ];
238
239 # use PDL; # ha ha, I just might.
240 my $row = 0;
241 foreach my $name (@custnames) { # correspond to cross_params
242   my $skip = 1; # skip the customer iff ALL of their values are zero
243   for my $subrow (0..($setuprecur ? 1 : 0)) { # the setup/recur axis
244     push @rows, { class => $subrow ? 'shaded' : '' };
245     my @thisrow;
246     if ( $subrow == 0 ) {
247       # customer name
248       push @thisrow,
249         { value => $name,
250           header => 1,
251           rowspan => ($setuprecur ? 2 : 1) };
252     } else {
253       push @thisrow, '';
254     }
255     if ( $setuprecur ) {
256       # subheading
257       push @thisrow,
258         { value => $subrow ? mt('recurring') : mt('setup'),
259           header => 1 };
260     }
261     for my $col (0..$ncols-1) { # the month
262       for my $subcol (0..1) { # the billed/paid axis
263         my $item = $subrow * 2 + $subcol;
264         my $value = $data->{data}[$item][$col][$row];
265         $skip = 0 if abs($value) > 0.005;
266         push @thisrow, { value => sprintf('%0.2f', $value), format => 'money' };
267         $total[( ($ncols * $subrow) + $col ) * 2 + $subcol] += $value;
268       } #subcol
269     } #col
270     push @cells, \@thisrow;
271   } #subrow
272   if ( $skip ) {
273     # all values are zero--remove the rows we just added
274     pop @rows;
275     pop @cells;
276     if ( $setuprecur ) {
277       pop @rows;
278       pop @cells;
279     }
280   }
281   $row++;
282 }
283 for my $subrow (0..($setuprecur ? 1 : 0)) {
284   push @rows, { class => ($subrow ? 'totalshaded' : 'total') };
285   my @thisrow;
286   if ( $subrow == 0 ) {
287     push @thisrow,
288       { value => mt('Total'),
289         header => 1,
290         rowspan => ($setuprecur ? 2 : 1), };
291   } else {
292     push @thisrow, '';
293   }
294   if ( $setuprecur ) {
295     push @thisrow,
296       { value => $subrow ? mt('recurring') : mt('setup'),
297         header => 1 };
298   }
299   for my $col (0..($ncols * 2)-1) { # month and billed/paid axis
300     my $value = $total[($subrow * $ncols * 2) + $col];
301     push @thisrow, { value => sprintf('%0.2f', $value), format => 'money' };
302   }
303   push @cells, \@thisrow;
304 } #subrow
305
306 if ( $cgi->param('debug') >= 3 ) {
307   warn Dumper(\@rows, \@cells);
308 }
309
310 my $title = 'Customer Accounting Summary';
311 </%init>