sales tax report in Excel, RT#10321
[freeside.git] / httemplate / search / report_tax.cgi
1 <% include("/elements/header.html", "$agentname Tax Report - ".
2               ( $beginning
3                   ? time2str('%h %o %Y ', $beginning )
4                   : ''
5               ).
6               'through '.
7               ( $ending == 4294967295
8                   ? 'now'
9                   : time2str('%h %o %Y', $ending )
10               )
11           )
12 %>
13 <TD ALIGN="right">
14 Download full results<BR>
15 as <A HREF="<% $p.'search/report_tax-xls.cgi?'.$cgi->query_string%>">Excel spreadsheet</A>
16 </TD>
17
18 <% include('/elements/table-grid.html') %>
19
20   <TR>
21     <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=3></TH>
22     <TH CLASS="grid" BGCOLOR="#cccccc" COLSPAN=9>Sales</TH>
23     <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=3></TH>
24     <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=3>Rate</TH>
25     <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=3></TH>
26     <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=3>Tax owed</TH>
27 % unless ( $cgi->param('show_taxclasses') ) { 
28       <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=3>Tax invoiced</TH>
29       <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=3></TH>
30       <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=3>Tax credited</TH>
31       <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=3></TH>
32       <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=3>Tax collected</TH>
33 % } 
34   </TR>
35
36   <TR>
37     <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=2>Total</TH>
38     <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=2></TH>
39     <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=1>Non-taxable</TH>
40     <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=2></TH>
41     <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=1>Non-taxable</TH>
42     <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=2></TH>
43     <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=1>Non-taxable</TH>
44     <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=2></TH>
45     <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=2>Taxable</TH>
46   </TR>
47
48   <TR>
49     <TH CLASS="grid" BGCOLOR="#cccccc"><FONT SIZE=-1>(tax-exempt customer)</FONT></TH>
50     <TH CLASS="grid" BGCOLOR="#cccccc"><FONT SIZE=-1>(tax-exempt package)</FONT></TH>
51     <TH CLASS="grid" BGCOLOR="#cccccc"><FONT SIZE=-1>(monthly exemption)</FONT></TH>
52   </TR>
53
54 % my $bgcolor1 = '#eeeeee';
55 % my $bgcolor2 = '#ffffff';
56 % my $bgcolor;
57 %
58 % foreach my $region ( @regions ) {
59 %
60 %   my $link = '';
61 %   if ( $region->{'label'} eq $out ) {
62 %     $link = ';out=1';
63 %   } else {
64 %     $link = ';'. $region->{'url_param'}
65 %       if $region->{'url_param'};
66 %   }
67 %
68 %   if ( $bgcolor eq $bgcolor1 ) {
69 %     $bgcolor = $bgcolor2;
70 %   } else {
71 %     $bgcolor = $bgcolor1;
72 %   }
73 %
74 %   #my $diff = 0;
75 %   my $hicolor = $bgcolor;
76 %   unless ( $cgi->param('show_taxclasses') ) {
77 %     my $diff = abs(   sprintf( '%.2f', $region->{'owed'} )
78 %                     - sprintf( '%.2f', $region->{'tax'}  )
79 %                   );
80 %     if ( $diff > 0.02 ) {
81 %     #  $hicolor = $hicolor eq '#eeeeee' ? '#eeee66' : '#ffff99';
82 %     #} elsif ( $diff ) {
83 %       $hicolor = $hicolor eq '#eeeeee' ? '#eeee99' : '#ffffcc';
84 %     }
85 %   }
86 %
87 %
88 %   my $td = qq(TD CLASS="grid" BGCOLOR="$bgcolor");
89 %   my $tdh = qq(TD CLASS="grid" BGCOLOR="$hicolor");
90 %   my $bigmath = '<FONT FACE="sans-serif" SIZE="+1"><B>';
91 %   my $bme = '</B></FONT>';
92
93     <TR>
94       <<%$td%>><% $region->{'label'} %></TD>
95       <<%$td%> ALIGN="right">
96         <A HREF="<% $baselink. $link %>;nottax=1"
97         ><% &$money_sprintf( $region->{'total'} ) %></A>
98       </TD>
99       <<%$td%>><FONT SIZE="+1"><B> - </B></FONT></TD>
100       <<%$td%> ALIGN="right">
101         <A HREF="<% $baselink. $link %>;nottax=1;cust_tax=Y"
102         ><% &$money_sprintf( $region->{'exempt_cust'} ) %></A>
103       </TD>
104       <<%$td%>><FONT SIZE="+1"><B> - </B></FONT></TD>
105       <<%$td%> ALIGN="right">
106         <A HREF="<% $baselink. $link %>;nottax=1;pkg_tax=Y"
107         ><% &$money_sprintf( $region->{'exempt_pkg'} ) %></A>
108       </TD>
109       <<%$td%>><FONT SIZE="+1"><B> - </B></FONT></TD>
110       <<%$td%> ALIGN="right">
111         <A HREF="<% $exemptlink. $link %>"
112         ><% &$money_sprintf( $region->{'exempt_monthly'} ) %></A>
113         </TD>
114       <<%$td%>><FONT SIZE="+1"><B> = </B></FONT></TD>
115       <<%$td%> ALIGN="right">
116         <A HREF="<% $baselink. $link %>;nottax=1;taxable=1"
117         ><% &$money_sprintf( $region->{'taxable'} ) %></A>
118       </TD>
119       <<%$td%>><% $region->{'label'} eq 'Total' ? '' : "$bigmath X $bme" %></TD>
120       <<%$td%> ALIGN="right"><% $region->{'rate'} %></TD>
121       <<%$td%>><% $region->{'label'} eq 'Total' ? '' : "$bigmath = $bme" %></TD>
122       <<%$tdh%> ALIGN="right">
123         <% &$money_sprintf( $region->{'owed'} ) %>
124       </TD>
125
126 % unless ( $cgi->param('show_taxclasses') ) { 
127 %       my $invlink = $region->{'url_param_inv'}
128 %                       ? ';'. $region->{'url_param_inv'}
129 %                       : $link;
130
131         <<%$tdh%> ALIGN="right">
132           <A HREF="<% $baselink. $invlink %>;istax=1"
133           ><% &$money_sprintf( $region->{'tax'} ) %></A>
134         </TD>
135         <<%$tdh%>><FONT SIZE="+1"><B> - </B></FONT></TD>
136         <<%$tdh%> ALIGN="right">
137           <A HREF="<% $creditlink. $invlink %>;istax=1"
138           ><% &$money_sprintf( $region->{'credit'} ) %></A>
139         </TD>
140         <<%$tdh%>><FONT SIZE="+1"><B> = </B></FONT></TD>
141         <<%$tdh%> ALIGN="right">
142           <% &$money_sprintf( $region->{'tax'} - $region->{'credit'} ) %>
143         </TD>
144 % } 
145
146     </TR>
147 % } 
148
149 </TABLE>
150
151 % if ( $cgi->param('show_taxclasses') ) {
152
153     <BR>
154     <% include('/elements/table-grid.html') %>
155     <TR>
156       <TH CLASS="grid" BGCOLOR="#cccccc"></TH>
157       <TH CLASS="grid" BGCOLOR="#cccccc">Tax invoiced</TH>
158       <TH CLASS="grid" BGCOLOR="#cccccc"></TH>
159       <TH CLASS="grid" BGCOLOR="#cccccc">Tax credited</TH>
160       <TH CLASS="grid" BGCOLOR="#cccccc"></TH>
161       <TH CLASS="grid" BGCOLOR="#cccccc">Tax collected</TH>
162     </TR>
163
164 %   #some false laziness w/above
165 %   $bgcolor1 = '#eeeeee';
166 %   $bgcolor2 = '#ffffff';
167 %
168 %   foreach my $region ( @base_regions ) {
169 %
170 %     my $link = '';
171 %     if ( $region->{'label'} eq $out ) {
172 %       $link = ';out=1';
173 %     } else {
174 %       $link = ';'. $region->{'url_param'}
175 %         if $region->{'url_param'};
176 %     }
177 %
178 %     if ( $bgcolor eq $bgcolor1 ) {
179 %       $bgcolor = $bgcolor2;
180 %     } else {
181 %       $bgcolor = $bgcolor1;
182 %     }
183 %     my $td = qq(TD CLASS="grid" BGCOLOR="$bgcolor");
184 %     my $tdh = qq(TD CLASS="grid" BGCOLOR="$bgcolor");
185 %
186 %     #?
187 %     my $invlink = $region->{'url_param_inv'}
188 %                     ? ';'. $region->{'url_param_inv'}
189 %                     : $link;
190
191       <TR>
192         <<%$td%>><% $region->{'label'} %></TD>
193         <<%$td%> ALIGN="right">
194           <A HREF="<% $baselink. $link %>;istax=1"
195           ><% &$money_sprintf( $region->{'tax'} ) %></A>
196         </TD>
197         <<%$td%>><FONT SIZE="+1"><B> - </B></FONT></TD>
198         <<%$tdh%> ALIGN="right">
199           <A HREF="<% $creditlink. $invlink %>;istax=1"
200           ><% &$money_sprintf( $region->{'credit'} ) %></A>
201         </TD>
202         <<%$td%>><FONT SIZE="+1"><B> = </B></FONT></TD>
203         <<%$tdh%> ALIGN="right">
204           <% &$money_sprintf( $region->{'tax'} - $region->{'credit'} ) %>
205         </TD>
206       </TR>
207
208 % } 
209
210 % if ( $bgcolor eq $bgcolor1 ) {
211 %   $bgcolor = $bgcolor2;
212 % } else {
213 %   $bgcolor = $bgcolor1;
214 % }
215 % my $td = qq(TD CLASS="grid" BGCOLOR="$bgcolor");
216
217   <TR>
218    <<%$td%>>Total</TD>
219    <<%$td%> ALIGN="right">
220      <A HREF="<% $baselink %>;istax=1"
221      ><% &$money_sprintf( $tot_tax ) %></A>
222    </TD>
223         <<%$td%>><FONT SIZE="+1"><B> - </B></FONT></TD>
224    <<%$td%> ALIGN="right">
225      <A HREF="<% $creditlink %>;istax=1"
226      ><% &$money_sprintf( $tot_credit ) %></A>
227    </TD>
228         <<%$td%>><FONT SIZE="+1"><B> = </B></FONT></TD>
229    <<%$td%> ALIGN="right">
230      <% &$money_sprintf( $tot_tax - $tot_credit ) %>
231    </TD>
232   </TR>
233
234   </TABLE>
235
236 % } 
237
238 <% include('/elements/footer.html') %>
239
240 <%init>
241
242 die "access denied"
243   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
244
245 my $conf = new FS::Conf;
246
247 my $user = getotaker;
248
249 my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi);
250
251 my $join_cust =     '     JOIN cust_bill      USING ( invnum  ) 
252                       LEFT JOIN cust_main     USING ( custnum ) ';
253 my $join_cust_pkg = $join_cust.
254                     ' LEFT JOIN cust_pkg      USING ( pkgnum  )
255                       LEFT JOIN part_pkg      USING ( pkgpart ) ';
256 $join_cust_pkg .=   ' LEFT JOIN cust_location USING ( locationnum )'
257   if $conf->exists('tax-pkg_address');
258
259 my $from_join_cust_pkg = " FROM cust_bill_pkg $join_cust_pkg "; 
260
261 my $where = "WHERE _date >= $beginning AND _date <= $ending ";
262
263 my( $location_sql, @base_param ) = FS::cust_pkg->location_sql;
264 $where .= " AND $location_sql ";
265
266 my $agentname = '';
267 if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
268   my $agent = qsearchs('agent', { 'agentnum' => $1 } );
269   die "agent not found" unless $agent;
270   $agentname = $agent->agent;
271   $where .= ' AND cust_main.agentnum = '. $agent->agentnum;
272 }
273
274 sub gotcust {
275   my $table = shift;
276   my $prefix = @_ ? shift : '';
277   "
278         ( $table.${prefix}city  = cust_main_county.city
279           OR cust_main_county.city = ''
280           OR cust_main_county.city IS NULL )
281     AND ( $table.${prefix}county  = cust_main_county.county
282           OR cust_main_county.county = ''
283           OR cust_main_county.county IS NULL )
284     AND ( $table.${prefix}state   = cust_main_county.state
285           OR cust_main_county.state = ''
286           OR cust_main_county.state IS NULL )
287     AND ( $table.${prefix}country = cust_main_county.country )
288   ";
289 }
290
291 my $gotcust;
292 if ( $conf->exists('tax-ship_address') ) {
293
294   $gotcust = "
295                (    cust_main_county.country = cust_main.country
296                  OR cust_main_county.country = cust_main.ship_country
297                )
298
299                AND
300
301                ( 
302                  (     ( ship_last IS NULL     OR  ship_last = '' )
303                    AND ". gotcust('cust_main'). "
304                  )
305                  OR
306                  (       ship_last IS NOT NULL AND ship_last != ''
307                    AND ". gotcust('cust_main', 'ship_'). "
308                  )
309                )
310   ";
311
312 } else {
313
314   $gotcust = gotcust('cust_main');
315
316 }
317 if ( $conf->exists('tax-pkg_address') ) {
318   $gotcust = "
319        ( cust_pkg.locationnum IS     NULL AND $gotcust)
320     OR ( cust_pkg.locationnum IS NOT NULL AND ". gotcust('cust_location'). " )";
321   $gotcust =
322     "WHERE 0 < ( SELECT COUNT(*) FROM cust_pkg
323                                  LEFT JOIN cust_main USING ( custnum )
324                                  LEFT JOIN cust_location USING ( locationnum )
325                    WHERE $gotcust
326                    LIMIT 1
327                )
328     ";
329 } else {
330   $gotcust =
331     "WHERE 0 < ( SELECT COUNT(*) FROM cust_main WHERE $gotcust LIMIT 1 )";
332 }
333
334 my $out = 'Out of taxable region(s)';
335 my %regions = ();
336
337 foreach my $r ( qsearch({ 'table'     => 'cust_main_county',
338                           'extra_sql' => $gotcust,
339                        })
340               )
341 {
342   #warn $r->county. ' '. $r->state. ' '. $r->country. "\n";
343
344   my $label = getlabel($r);
345   $regions{$label}->{'label'} = $label;
346
347   $regions{$label}->{$_} = $r->$_() for (qw( county state country )); #taxname?
348
349   my @url_param = qw( county state country taxname );
350   push @url_param, 'city' if $cgi->param('show_cities') && $r->city();
351
352   $regions{$label}->{'url_param'} =
353     join(';', map "$_=".uri_escape($r->$_()), @url_param );
354
355   my @param = @base_param;
356   my $mywhere = $where;
357
358   if ( $r->taxclass ) {
359
360     $mywhere .= " AND taxclass = ? ";
361     push @param, 'taxclass';
362     $regions{$label}->{'url_param'} .= ';taxclass='. uri_escape($r->taxclass);
363     #no, always#  if $cgi->param('show_taxclasses');
364
365     $regions{$label}->{'taxclass'} = $r->taxclass;
366
367   } else {
368
369     $regions{$label}->{'url_param'} .= ';taxclassNULL=1'
370       if $cgi->param('show_taxclasses');
371
372     my $same_sql = $r->sql_taxclass_sameregion;
373     $mywhere .= " AND $same_sql" if $same_sql;
374
375   }
376
377   my $fromwhere = "$from_join_cust_pkg $mywhere"; # AND payby != 'COMP' ";
378
379 #  my $label = getlabel($r);
380 #  $regions{$label}->{'label'} = $label;
381
382   my $nottax = 'pkgnum != 0';
383
384   ## calculate total for this region
385
386   my $t_sql =
387    "SELECT SUM(cust_bill_pkg.setup+cust_bill_pkg.recur) $fromwhere AND $nottax";
388   my $t = scalar_sql($r, \@param, $t_sql);
389   $regions{$label}->{'total'} += $t;
390
391   #if ( $label eq $out ) # && $t ) {
392   #  warn "adding $t for ".
393   #       join('/', map $r->$_, qw( taxclass county state country ) ). "\n";
394   #  #warn $t_sql if $r->state eq 'FL';
395   #}
396
397   ## calculate customer-exemption for this region
398
399 ##  my $taxable = $t;
400
401 #  my($taxable, $x_cust) = (0, 0);
402 #  foreach my $e ( grep { $r->get($_.'tax') !~ /^Y/i }
403 #                       qw( cust_bill_pkg.setup cust_bill_pkg.recur ) ) {
404 #    $taxable += scalar_sql($r, \@param, 
405 #      "SELECT SUM($e) $fromwhere AND $nottax AND ( tax != 'Y' OR tax IS NULL )"
406 #    );
407 #
408 #    $x_cust += scalar_sql($r, \@param, 
409 #      "SELECT SUM($e) $fromwhere AND $nottax AND tax = 'Y'"
410 #    );
411 #  }
412
413   #false laziness -ish w/report_tax.cgi
414   my $cust_exempt;
415   if ( $r->taxname ) {
416     my $q_taxname = dbh->quote($r->taxname);
417     $cust_exempt =
418       "( tax = 'Y'
419          OR EXISTS ( SELECT 1 FROM cust_main_exemption
420                        WHERE cust_main_exemption.custnum = cust_main.custnum
421                          AND cust_main_exemption.taxname = $q_taxname
422                    )
423        )
424       ";
425   } else {
426     $cust_exempt = " tax = 'Y' ";
427   }
428
429   my $x_cust = scalar_sql($r, \@param,
430     "SELECT SUM(cust_bill_pkg.setup+cust_bill_pkg.recur)
431      $fromwhere AND $nottax AND $cust_exempt "
432   );
433
434   $regions{$label}->{'exempt_cust'} += $x_cust;
435   
436   ## calculate package-exemption for this region
437
438   my $x_pkg = scalar_sql($r, \@param,
439     "SELECT SUM(
440                  ( CASE WHEN part_pkg.setuptax = 'Y'
441                         THEN cust_bill_pkg.setup
442                         ELSE 0
443                    END
444                  )
445                  +
446                  ( CASE WHEN part_pkg.recurtax = 'Y'
447                         THEN cust_bill_pkg.recur
448                         ELSE 0
449                    END
450                  )
451                )
452        $fromwhere
453        AND $nottax
454        AND (
455                 ( part_pkg.setuptax = 'Y' AND cust_bill_pkg.setup > 0 )
456              OR ( part_pkg.recurtax = 'Y' AND cust_bill_pkg.recur > 0 )
457            )
458        AND ( tax != 'Y' OR tax IS NULL )
459     "
460   );
461   $regions{$label}->{'exempt_pkg'} += $x_pkg;
462
463   ## calculate monthly exemption (texas tax) for this region
464
465   # count up all the cust_tax_exempt_pkg records associated with
466   # the actual line items.
467
468   my $x_monthly = scalar_sql($r, \@param,
469     "SELECT SUM(amount)
470        FROM cust_tax_exempt_pkg
471        JOIN cust_bill_pkg USING ( billpkgnum )
472        $join_cust_pkg
473      $mywhere"
474   );
475   $regions{$label}->{'exempt_monthly'} += $x_monthly;
476
477   my $taxable = $t - $x_cust - $x_pkg - $x_monthly;
478   $regions{$label}->{'taxable'} += $taxable;
479
480   $regions{$label}->{'owed'} += $taxable * ($r->tax/100);
481
482   if ( defined($regions{$label}->{'rate'})
483        && $regions{$label}->{'rate'} != $r->tax.'%' ) {
484     $regions{$label}->{'rate'} = 'variable';
485   } else {
486     $regions{$label}->{'rate'} = $r->tax.'%';
487   }
488
489 }
490
491 my $distinct = "country, state, county, city, 
492                 CASE WHEN taxname IS NULL THEN '' ELSE taxname END AS taxname";
493 my $taxclass_distinct = 
494   #a little bit unsure of this part... test?
495   #ah, it looks like it winds up being irrelevant as ->{'tax'} 
496   # from $regions is not displayed when show_taxclasses is on
497   ( $cgi->param('show_taxclasses')
498       ? " CASE WHEN taxclass IS NULL THEN '' ELSE taxclass END "
499       : " '' "
500   )." AS taxclass";
501
502
503 my %qsearch = (
504   'select'    => "DISTINCT $distinct, $taxclass_distinct",
505   'table'     => 'cust_main_county',
506   'hashref'   => {},
507   'extra_sql' => $gotcust,
508 );
509
510 my $taxfromwhere = " FROM cust_bill_pkg $join_cust ";
511 my $taxwhere = $where;
512 if ( $conf->exists('tax-pkg_address') ) {
513
514   $taxfromwhere .= 'LEFT JOIN cust_bill_pkg_tax_location USING ( billpkgnum )
515                     LEFT JOIN cust_location USING ( locationnum ) ';
516
517   #quelle kludge
518   $taxwhere =~ s/cust_pkg\.locationnum/cust_bill_pkg_tax_location.locationnum/g;
519
520 }
521 my $creditfromwhere = $taxfromwhere. 
522    " JOIN cust_credit_bill_pkg USING (billpkgnum";
523 $creditfromwhere .= " ,billpkgtaxlocationnum"
524    if $conf->exists('tax-pkg_address');
525 $creditfromwhere .= ")";
526
527 $taxfromwhere .= " $taxwhere "; #AND payby != 'COMP' ";
528 $creditfromwhere .= " $taxwhere AND billpkgtaxratelocationnum IS NULL"; #AND payby != 'COMP' ";
529
530 my @taxparam = @base_param;
531
532
533 #should i be a cust_main_county method or something
534 #need to pass in $taxfromwhere & @taxparam???
535 my $_taxamount_sub = sub {
536   my $r = shift;
537
538   #match itemdesc if necessary!
539   my $named_tax =
540     $r->taxname
541       ? 'AND itemdesc = '. dbh->quote($r->taxname)
542       : "AND ( itemdesc IS NULL OR itemdesc = '' OR itemdesc = 'Tax' )";
543
544   my $sql = "SELECT SUM(cust_bill_pkg.setup+cust_bill_pkg.recur) ".
545             " $taxfromwhere AND cust_bill_pkg.pkgnum = 0 $named_tax";
546
547   scalar_sql($r, \@taxparam, $sql );
548 };
549
550 my $_creditamount_sub = sub {
551   my $r = shift;
552
553   #match itemdesc if necessary!
554   my $named_tax =
555     $r->taxname
556       ? 'AND itemdesc = '. dbh->quote($r->taxname)
557       : "AND ( itemdesc IS NULL OR itemdesc = '' OR itemdesc = 'Tax' )";
558
559   my $sql = "SELECT SUM(cust_credit_bill_pkg.amount) ".
560             " $creditfromwhere AND cust_bill_pkg.pkgnum = 0 $named_tax";
561
562   scalar_sql($r, \@taxparam, $sql );
563 };
564
565 #tax-report_groups filtering
566 my($group_op, $group_value) = ( '', '' );
567 if ( $cgi->param('report_group') =~ /^(=|!=) (.*)$/ ) {
568   ( $group_op, $group_value ) = ( $1, $2 );
569 }
570 my $group_test = sub {
571   my $label = shift;
572   return 1 unless $group_op; #in case we get called inadvertantly
573   if ( $label eq $out ) { #don't display "out of taxable region" in this case
574     0;
575   } elsif ( $group_op eq '=' ) {
576     $label =~ /^$group_value/;
577   } elsif ( $group_op eq '!=' ) {
578     $label !~ /^$group_value/;
579   } else {
580     die "guru meditation #00de: group_op $group_op\n";
581   }
582 };
583
584 my $tot_tax = 0;
585 my $tot_credit = 0;
586 #foreach my $label ( keys %regions ) {
587 foreach my $r ( qsearch(\%qsearch) ) {
588
589   #warn join('-', map { $r->$_() } qw( country state county taxname ) )."\n";
590
591   my $label = getlabel($r);
592   if ( $group_op ) {
593     next unless &{$group_test}($label);
594   }
595
596   #my $fromwhere = $join_pkg. $where. " AND payby != 'COMP' ";
597   #my @param = @base_param; 
598
599   my $x = &{$_taxamount_sub}($r);
600
601   $regions{$label}->{'tax'} += $x;
602   $tot_tax += $x unless $cgi->param('show_taxclasses');
603
604   ## calculate credit for this region
605
606   $x = &{$_creditamount_sub}($r);
607
608   $regions{$label}->{'credit'} += $x;
609   $tot_credit += $x unless $cgi->param('show_taxclasses');
610
611 }
612
613 my %base_regions = ();
614 if ( $cgi->param('show_taxclasses') ) {
615
616   $qsearch{'select'} = "DISTINCT $distinct";
617   foreach my $r ( qsearch(\%qsearch) ) {
618
619     my $x = &{$_taxamount_sub}($r);
620
621     my $base_label = getlabel($r, 'no_taxclass'=>1 );
622     $base_regions{$base_label}->{'label'} = $base_label;
623
624     $base_regions{$base_label}->{'url_param'} =
625       join(';', map "$_=". uri_escape($r->$_()),
626                      qw( county state country taxname )
627           );
628
629     $base_regions{$base_label}->{'tax'} += $x;
630     $tot_tax += $x;
631
632     ## calculate credit for this region
633
634     $x = &{$_creditamount_sub}($r);
635
636     $base_regions{$base_label}->{'credit'} += $x;
637     $tot_credit += $x;
638
639   }
640
641 }
642
643 my @regions = keys %regions;
644
645 #tax-report_groups filtering
646 @regions = grep &{$group_test}($_), @regions
647   if $group_op;
648
649 #calculate totals
650 my( $total, $tot_taxable, $tot_owed ) = ( 0, 0, 0 );
651 my( $exempt_cust, $exempt_pkg, $exempt_monthly, $tot_credit ) = ( 0, 0, 0, 0 );
652 my %taxclasses = ();
653 my %county = ();
654 my %state = ();
655 my %country = ();
656 foreach (@regions) {
657   $total          += $regions{$_}->{'total'};
658   $tot_taxable    += $regions{$_}->{'taxable'};
659   $tot_owed       += $regions{$_}->{'owed'};
660   $exempt_cust    += $regions{$_}->{'exempt_cust'};
661   $exempt_pkg     += $regions{$_}->{'exempt_pkg'};
662   $exempt_monthly += $regions{$_}->{'exempt_monthly'};
663   $tot_credit     += $regions{$_}->{'credit'};
664   $taxclasses{$regions{$_}->{'taxclass'}} = 1
665     if $regions{$_}->{'taxclass'};
666   $county{$regions{$_}->{'county'}} = 1;
667   $state{$regions{$_}->{'state'}} = 1;
668   $country{$regions{$_}->{'country'}} = 1;
669 }
670
671 my $total_url_param = '';
672 my $total_url_param_invoiced = '';
673 if ( $group_op ) {
674
675   my @country = keys %country;
676   warn "WARNING: multiple countries on this grouped report; total links broken"
677     if scalar(@country) > 1;
678   my $country = $country[0];
679
680   my @state = keys %state;
681   warn "WARNING: multiple countries on this grouped report; total links broken"
682     if scalar(@state) > 1;
683   my $state = $state[0];
684
685   $total_url_param_invoiced =
686   $total_url_param =
687     'report_group='.uri_escape("$group_op $group_value").';'.
688     join(';', map 'taxclass='.uri_escape($_), keys %taxclasses );
689   $total_url_param .= ';'.
690     "country=$country;state=".uri_escape($state).';'.
691     join(';', map 'county='.uri_escape($_), keys %county ) ;
692
693 }
694
695 #ordering
696 @regions =
697   map $regions{$_},
698   sort { ( ($a eq $out) cmp ($b eq $out) ) || ($b cmp $a) }
699   @regions;
700
701 my @base_regions =
702   map $base_regions{$_},
703   sort { ( ($a eq $out) cmp ($b eq $out) ) || ($b cmp $a) }
704   keys %base_regions;
705
706 #add total line
707 push @regions, {
708   'label'          => 'Total',
709   'url_param'      => $total_url_param,
710   'url_param_inv'  => $total_url_param_invoiced,
711   'total'          => $total,
712   'exempt_cust'    => $exempt_cust,
713   'exempt_pkg'     => $exempt_pkg,
714   'exempt_monthly' => $exempt_monthly,
715   'taxable'        => $tot_taxable,
716   'rate'           => '',
717   'owed'           => $tot_owed,
718   'tax'            => $tot_tax,
719   'credit'         => $tot_credit,
720 };
721
722 #-- 
723
724 my $money_char = $conf->config('money_char') || '$';
725 my $money_sprintf = sub {
726   $money_char. sprintf('%.2f', shift );
727 };
728
729 sub getlabel {
730   my $r = shift;
731   my %opt = @_;
732
733   my $label;
734   if (
735     $r->tax == 0 
736     && ! scalar( qsearch('cust_main_county', { 'city'    => $r->city,
737                                                'county'  => $r->county,
738                                                'state'   => $r->state,
739                                                'country' => $r->country,
740                                                'tax' => { op=>'>', value=>0 },
741                                              }
742                         )
743                )
744
745   ) {
746     #kludge to avoid "will not stay shared" warning
747     my $out = 'Out of taxable region(s)';
748     $label = $out;
749 #  } elsif ( $r->taxname && count_taxname($r->taxname) == 1 ) {
750 #    $label = $r->taxname;
751 ##    $regions{$label}->{'taxname'} = $label;
752 ##    push @{$regions{$label}->{$_}}, $r->$_() foreach qw( county state country );
753   } else {
754     $label = $r->country;
755     $label = $r->state.", $label" if $r->state;
756     $label = $r->county." county, $label" if $r->county;
757     $label = $r->city. ", $label" if $r->city && $cgi->param('show_cities');
758     $label = "$label (". $r->taxclass. ")"
759       if $r->taxclass
760       && $cgi->param('show_taxclasses')
761       && ! $opt{'no_taxclass'};
762     $label = $r->taxname. " ($label)" if $r->taxname;
763   }
764   return $label;
765 }
766
767 #my %count_taxname = (); #cache
768 #sub count_taxname {
769 #  my $taxname = shift;
770 #  return $count_taxname{$taxname} if exists $count_taxname{$taxname};
771 #  my $sql = 'SELECT COUNT(*) FROM cust_main_county WHERE taxname = ?';
772 #  my $sth = dbh->prepare($sql) or die dbh->errstr;
773 #  $sth->execute( $taxname )
774 #    or die "Unexpected error executing statement $sql: ". $sth->errstr;
775 #  $count_taxname{$taxname} = $sth->fetchrow_arrayref->[0];
776 #}
777
778 #false laziness w/FS::Report::Table::Monthly (sub should probably be moved up
779 #to FS::Report or FS::Record or who the fuck knows where)
780 sub scalar_sql {
781   my( $r, $param, $sql ) = @_;
782   #warn "$sql\n";
783   my $sth = dbh->prepare($sql) or die dbh->errstr;
784   $sth->execute( map $r->$_(), @$param )
785     or die "Unexpected error executing statement $sql: ". $sth->errstr;
786   $sth->fetchrow_arrayref->[0] || 0;
787 }
788
789 my $dateagentlink = "begin=$beginning;end=$ending";
790 $dateagentlink .= ';agentnum='. $cgi->param('agentnum')
791   if length($agentname);
792 my $baselink   = $p. "search/cust_bill_pkg.cgi?$dateagentlink";
793 my $exemptlink = $p. "search/cust_tax_exempt_pkg.cgi?$dateagentlink";
794 my $creditlink = $p. "search/cust_credit_bill_pkg.html?$dateagentlink";
795
796 </%init>