(and REALLY fix the line-item links too, whew) fix overreporting of tax invoiced...
[freeside.git] / httemplate / search / report_tax.cgi
1 <% include("/elements/header.html", "$agentname Sales 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
14 <% include('/elements/table-grid.html') %>
15
16   <TR>
17     <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=2></TH>
18     <TH CLASS="grid" BGCOLOR="#cccccc" COLSPAN=9>Sales</TH>
19     <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=2></TH>
20     <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=2>Rate</TH>
21     <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=2></TH>
22     <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=2>Tax owed</TH>
23 % unless ( $cgi->param('show_taxclasses') ) { 
24
25       <TH CLASS="grid" BGCOLOR="#cccccc" ROWSPAN=2>Tax invoiced</TH>
26 % } 
27
28   </TR>
29   <TR>
30     <TH CLASS="grid" BGCOLOR="#cccccc">Total</TH>
31     <TH CLASS="grid" BGCOLOR="#cccccc"></TH>
32     <TH CLASS="grid" BGCOLOR="#cccccc">Non-taxable<BR><FONT SIZE=-1>(tax-exempt customer)</FONT></TH>
33     <TH CLASS="grid" BGCOLOR="#cccccc"></TH>
34     <TH CLASS="grid" BGCOLOR="#cccccc">Non-taxable<BR><FONT SIZE=-1>(tax-exempt package)</FONT></TH>
35     <TH CLASS="grid" BGCOLOR="#cccccc"></TH>
36     <TH CLASS="grid" BGCOLOR="#cccccc">Non-taxable<BR><FONT SIZE=-1>(monthly exemption)</FONT></TH>
37     <TH CLASS="grid" BGCOLOR="#cccccc"></TH>
38     <TH CLASS="grid" BGCOLOR="#cccccc">Taxable</TH>
39   </TR>
40 % my $bgcolor1 = '#eeeeee';
41 %   my $bgcolor2 = '#ffffff';
42 %   my $bgcolor;
43 %
44 % foreach my $region ( @regions ) {
45 %
46 %       if ( $bgcolor eq $bgcolor1 ) {
47 %         $bgcolor = $bgcolor2;
48 %       } else {
49 %         $bgcolor = $bgcolor1;
50 %       }
51 %
52 %       my $link = '';
53 %       if ( $region->{'label'} ne 'Total' ) {
54 %         if ( $region->{'label'} eq $out ) {
55 %           $link = ';out=1';
56 %         } else {
57 %           $link = ';'. $region->{'url_param'};
58 %         }
59 %       }
60 %
61 %
62 %
63 %
64 %  
65
66
67     <TR>
68       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"><% $region->{'label'} %></TD>
69       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" ALIGN="right">
70         <A HREF="<% $baselink. $link %>;nottax=1"><% $money_char %><% sprintf('%.2f', $region->{'total'} ) %></A>
71       </TD>
72       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"><FONT SIZE="+1"><B> - </B></FONT></TD>
73       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" ALIGN="right">
74         <A HREF="<% $baselink. $link %>;nottax=1;cust_tax=Y"><% $money_char %><% sprintf('%.2f', $region->{'exempt_cust'} ) %></A>
75       </TD>
76       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"><FONT SIZE="+1"><B> - </B></FONT></TD>
77       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" ALIGN="right">
78         <A HREF="<% $baselink. $link %>;nottax=1;pkg_tax=Y"><% $money_char %><% sprintf('%.2f', $region->{'exempt_pkg'} ) %></A>
79       </TD>
80       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"><FONT SIZE="+1"><B> - </B></FONT></TD>
81       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" ALIGN="right">
82         <A HREF="<% $exemptlink. $link %>"><% $money_char %><% sprintf('%.2f', $region->{'exempt_monthly'} ) %></A>
83         </TD>
84       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"><FONT SIZE="+1"><B> = </B></FONT></TD>
85       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" ALIGN="right">
86         <% $money_char %><% sprintf('%.2f', $region->{'taxable'} ) %></A>
87       </TD>
88       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"><% $region->{'label'} eq 'Total' ? '' : '<FONT FACE="sans-serif" SIZE="+1"><B> X </B></FONT>' %></TD>
89       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" ALIGN="right"><% $region->{'rate'} %></TD>
90       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"><% $region->{'label'} eq 'Total' ? '' : '<FONT FACE="sans-serif" SIZE="+1"><B> = </B></FONT>' %></TD>
91       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" ALIGN="right">
92         <% $money_char %><% sprintf('%.2f', $region->{'owed'} ) %>
93       </TD>
94 % unless ( $cgi->param('show_taxclasses') ) { 
95
96         <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" ALIGN="right">
97           <A HREF="<% $baselink. $link %>;istax=1"><% $money_char %><% sprintf('%.2f', $region->{'tax'} ) %></A>
98         </TD>
99 % } 
100
101     </TR>
102 % } 
103
104
105 </TABLE>
106 % if ( $cgi->param('show_taxclasses') ) { 
107
108
109   <BR>
110   <% include('/elements/table-grid.html') %>
111   <TR>
112     <TH CLASS="grid" BGCOLOR="#cccccc"></TH>
113     <TH CLASS="grid" BGCOLOR="#cccccc">Tax invoiced</TH>
114   </TR>
115 % #some false laziness w/above
116 %     $bgcolor1 = '#eeeeee';
117 %     $bgcolor2 = '#ffffff';
118 %     foreach my $region ( @base_regions ) {
119 %
120 %       if ( $bgcolor eq $bgcolor1 ) {
121 %         $bgcolor = $bgcolor2;
122 %       } else {
123 %         $bgcolor = $bgcolor1;
124 %       }
125 %
126 %       my $link = '';
127 %       #if ( $region->{'label'} ne 'Total' ) {
128 %         if ( $region->{'label'} eq $out ) {
129 %           $link = ';out=1';
130 %         } else {
131 %           $link = ';'. $region->{'url_param'};
132 %         }
133 %       #}
134 %  
135
136
137     <TR>
138       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"><% $region->{'label'} %></TD>
139       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" ALIGN="right">
140         <A HREF="<% $baselink. $link %>;istax=1"><% $money_char %><% sprintf('%.2f', $region->{'tax'} ) %></A>
141       </TD>
142     </TR>
143 % } 
144 %
145 %     if ( $bgcolor eq $bgcolor1 ) {
146 %       $bgcolor = $bgcolor2;
147 %     } else {
148 %       $bgcolor = $bgcolor1;
149 %     }
150 %  
151
152
153   <TR>
154    <TD CLASS="grid" BGCOLOR="<% $bgcolor %>">Total</TD>
155     <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" ALIGN="right">
156       <A HREF="<% $baselink %>;istax=1"><% $money_char %><% sprintf('%.2f', $tax ) %></A>
157     </TD>
158   </TR>
159
160   </TABLE>
161 % } 
162
163
164 </BODY>
165 </HTML>
166 <%init>
167
168 die "access denied"
169   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
170
171 my $conf = new FS::Conf;
172 my $money_char = $conf->config('money_char') || '$';
173
174 my $user = getotaker;
175
176 my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi);
177
178 my $join_cust = "
179     JOIN cust_bill USING ( invnum ) 
180     LEFT JOIN cust_main USING ( custnum )
181 ";
182 my $from_join_cust = "
183     FROM cust_bill_pkg
184     $join_cust
185 "; 
186 my $join_pkg = "
187     LEFT JOIN cust_pkg USING ( pkgnum )
188     LEFT JOIN part_pkg USING ( pkgpart )
189 ";
190
191 my $where = "WHERE _date >= $beginning AND _date <= $ending ";
192 my @base_param = qw( county county state state country );
193 if ( $conf->exists('tax-ship_address') ) {
194
195   $where .= "
196       AND (    (     ( ship_last IS NULL     OR  ship_last  = '' )
197                  AND ( county       = ? OR ? = '' )
198                  AND ( state        = ? OR ? = '' )
199                  AND   country      = ?
200                )
201             OR (       ship_last IS NOT NULL AND ship_last != ''
202                  AND ( ship_county  = ? OR ? = '' )
203                  AND ( ship_state   = ? OR ? = '' )
204                  AND   ship_country = ?
205                )
206           )
207   ";
208   #    AND payby != 'COMP'
209
210   push @base_param, @base_param;
211
212 } else {
213
214   $where .= "
215       AND ( county  = ? OR ? = '' )
216       AND ( state   = ? OR ? = '' )
217       AND   country = ?
218   ";
219   #    AND payby != 'COMP'
220
221 }
222
223 my $agentname = '';
224 if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
225   my $agent = qsearchs('agent', { 'agentnum' => $1 } );
226   die "agent not found" unless $agent;
227   $agentname = $agent->agent;
228   $where .= ' AND cust_main.agentnum = '. $agent->agentnum;
229 }
230
231 my $gotcust = "
232   WHERE 0 < ( SELECT COUNT(*) FROM cust_main
233 ";
234 if ( $conf->exists('tax-ship_address') ) {
235
236   $gotcust .= "
237                 WHERE
238
239                 (    cust_main_county.country = cust_main.country
240                   OR cust_main_county.country = cust_main.ship_country
241                 )
242
243                 AND
244
245                 ( 
246
247                   (     ( ship_last IS NULL     OR  ship_last = '' )
248                     AND (    cust_main_county.country = cust_main.country )
249                     AND (    cust_main_county.state = cust_main.state
250                           OR cust_main_county.state = ''
251                           OR cust_main_county.state IS NULL )
252                     AND (    cust_main_county.county = cust_main.county
253                           OR cust_main_county.county = ''
254                           OR cust_main_county.county IS NULL )
255                   )
256   
257                   OR
258   
259                   (       ship_last IS NOT NULL AND ship_last != ''
260                     AND (    cust_main_county.country = cust_main.ship_country )
261                     AND (    cust_main_county.state = cust_main.ship_state
262                           OR cust_main_county.state = ''
263                           OR cust_main_county.state IS NULL )
264                     AND (    cust_main_county.county = cust_main.ship_county
265                           OR cust_main_county.county = ''
266                           OR cust_main_county.county IS NULL )
267                   )
268
269                 )
270
271                 LIMIT 1
272             )
273   ";
274
275 } else {
276
277   $gotcust .= "
278                 WHERE ( cust_main.county  = cust_main_county.county
279                         OR cust_main_county.county = ''
280                         OR cust_main_county.county IS NULL )
281                   AND ( cust_main.state   = cust_main_county.state
282                         OR cust_main_county.state = ''
283                         OR cust_main_county.state IS NULL )
284                   AND ( cust_main.country = cust_main_county.country )
285                 LIMIT 1
286             )
287   ";
288
289 }
290
291 my($total, $tot_taxable, $owed, $tax) = ( 0, 0, 0, 0 );
292 my( $exempt_cust, $exempt_pkg, $exempt_monthly ) = ( 0, 0, 0 );
293 my $out = 'Out of taxable region(s)';
294 my %regions = ();
295 foreach my $r ( qsearch({ 'table'     => 'cust_main_county',
296                           'extra_sql' => $gotcust,
297                        })
298               )
299 {
300   #warn $r->county. ' '. $r->state. ' '. $r->country. "\n";
301
302   my $label = getlabel($r);
303   $regions{$label}->{'label'} = $label;
304   $regions{$label}->{'url_param'} =
305     join(';', map "$_=".uri_escape($r->$_()),
306                   qw( county state country taxname )
307         );
308
309   my @param = @base_param;
310   my $mywhere = $where;
311
312   if ( $r->taxclass ) {
313
314     $mywhere .= " AND taxclass = ? ";
315     push @param, 'taxclass';
316     $regions{$label}->{'url_param'} .= ';taxclass='. uri_escape($r->taxclass)
317       if $cgi->param('show_taxclasses');
318
319   } else {
320
321     $regions{$label}->{'url_param'} .= ';taxclassNULL=1'
322       if $cgi->param('show_taxclasses');
323
324     my $same_sql = $r->sql_taxclass_sameregion;
325     $mywhere .= " AND $same_sql" if $same_sql;
326
327   }
328
329   my $fromwhere = $from_join_cust. $join_pkg. $mywhere. " AND payby != 'COMP' ";
330
331 #  my $label = getlabel($r);
332 #  $regions{$label}->{'label'} = $label;
333
334   my $nottax = 'pkgnum != 0';
335
336   ## calculate total for this region
337
338   my $t = scalar_sql($r, \@param,
339     "SELECT SUM(cust_bill_pkg.setup+cust_bill_pkg.recur) $fromwhere AND $nottax"
340   );
341   $total += $t;
342   $regions{$label}->{'total'} += $t;
343
344   ## calculate customer-exemption for this region
345
346 ##  my $taxable = $t;
347
348 #  my($taxable, $x_cust) = (0, 0);
349 #  foreach my $e ( grep { $r->get($_.'tax') !~ /^Y/i }
350 #                       qw( cust_bill_pkg.setup cust_bill_pkg.recur ) ) {
351 #    $taxable += scalar_sql($r, \@param, 
352 #      "SELECT SUM($e) $fromwhere AND $nottax AND ( tax != 'Y' OR tax IS NULL )"
353 #    );
354 #
355 #    $x_cust += scalar_sql($r, \@param, 
356 #      "SELECT SUM($e) $fromwhere AND $nottax AND tax = 'Y'"
357 #    );
358 #  }
359
360   my $x_cust = scalar_sql($r, \@param,
361     "SELECT SUM(cust_bill_pkg.setup+cust_bill_pkg.recur)
362      $fromwhere AND $nottax AND tax = 'Y' "
363   );
364
365   $exempt_cust += $x_cust;
366   $regions{$label}->{'exempt_cust'} += $x_cust;
367   
368   ## calculate package-exemption for this region
369
370   my $x_pkg = scalar_sql($r, \@param,
371     "SELECT SUM(
372                  ( CASE WHEN part_pkg.setuptax = 'Y'
373                         THEN cust_bill_pkg.setup
374                         ELSE 0
375                    END
376                  )
377                  +
378                  ( CASE WHEN part_pkg.recurtax = 'Y'
379                         THEN cust_bill_pkg.recur
380                         ELSE 0
381                    END
382                  )
383                )
384        $fromwhere
385        AND $nottax
386        AND (
387                 ( part_pkg.setuptax = 'Y' AND cust_bill_pkg.setup > 0 )
388              OR ( part_pkg.recurtax = 'Y' AND cust_bill_pkg.recur > 0 )
389            )
390        AND ( tax != 'Y' OR tax IS NULL )
391     "
392   );
393   $exempt_pkg += $x_pkg;
394   $regions{$label}->{'exempt_pkg'} += $x_pkg;
395
396   ## calculate monthly exemption (texas tax) for this region
397
398   # count up all the cust_tax_exempt_pkg records associated with
399   # the actual line items.
400
401   my $x_monthly = scalar_sql($r, \@param,
402     "SELECT SUM(amount)
403        FROM cust_tax_exempt_pkg
404        JOIN cust_bill_pkg USING ( billpkgnum )
405        $join_cust $join_pkg
406      $mywhere"
407   );
408 #  if ( $x_monthly ) {
409 #    #warn $r->taxnum(). ": $x_monthly\n";
410 #    $taxable -= $x_monthly;
411 #  }
412
413   $exempt_monthly += $x_monthly;
414   $regions{$label}->{'exempt_monthly'} += $x_monthly;
415
416   my $taxable = $t - $x_cust - $x_pkg - $x_monthly;
417
418   $tot_taxable += $taxable;
419   $regions{$label}->{'taxable'} += $taxable;
420
421   $owed += $taxable * ($r->tax/100);
422   $regions{$label}->{'owed'} += $taxable * ($r->tax/100);
423
424   if ( defined($regions{$label}->{'rate'})
425        && $regions{$label}->{'rate'} != $r->tax.'%' ) {
426     $regions{$label}->{'rate'} = 'variable';
427   } else {
428     $regions{$label}->{'rate'} = $r->tax.'%';
429   }
430
431 }
432
433 my $distinct = "country, state, county,
434                 CASE WHEN taxname IS NULL THEN '' ELSE taxname END AS taxname";
435 my $taxclass_distinct = 
436   #a little bit unsure of this part... test?
437   #ah, it looks like it winds up being irrelevant as ->{'tax'} 
438   # from $regions is not displayed when show_taxclasses is on
439   ( $cgi->param('show_taxclasses')
440       ? " CASE WHEN taxclass IS NULL THEN '' ELSE taxclass END "
441       : " '' "
442   )." AS taxclass";
443
444 my %qsearch = (
445   'select'    => "DISTINCT $distinct, $taxclass_distinct",
446   'table'     => 'cust_main_county',
447   'hashref'   => {},
448   'extra_sql' => $gotcust,
449 );
450
451 my $taxwhere = "$from_join_cust $where AND payby != 'COMP' ";
452 my @taxparam = @base_param;
453
454 #should i be a cust_main_county method or something
455 #need to pass in $taxwhere & @taxparam???
456 my $_taxamount_sub = sub {
457   my $r = shift;
458
459   #match itemdesc if necessary!
460   my $named_tax =
461     $r->taxname
462       ? 'AND itemdesc = '. dbh->quote($r->taxname)
463       : "AND ( itemdesc IS NULL OR itemdesc = '' OR itemdesc = 'Tax' )";
464
465   my $sql = "SELECT SUM(cust_bill_pkg.setup+cust_bill_pkg.recur) ".
466             " $taxwhere AND pkgnum = 0 $named_tax";
467
468   scalar_sql($r, \@taxparam, $sql );
469 };
470
471 #foreach my $label ( keys %regions ) {
472 foreach my $r ( qsearch(\%qsearch) ) {
473
474   #warn join('-', map { $r->$_() } qw( country state county taxname ) )."\n";
475
476   my $label = getlabel($r);
477
478   #my $fromwhere = $join_pkg. $where. " AND payby != 'COMP' ";
479   #my @param = @base_param; 
480
481   my $x = &{$_taxamount_sub}($r);
482
483   $tax += $x unless $cgi->param('show_taxclasses');
484   $regions{$label}->{'tax'} += $x;
485
486 }
487
488 my %base_regions = ();
489 if ( $cgi->param('show_taxclasses') ) {
490
491   $qsearch{'select'} = "DISTINCT $distinct";
492   foreach my $r ( qsearch(\%qsearch) ) {
493
494     my $x = &{$_taxamount_sub}($r);
495
496     my $base_label = getlabel($r, 'no_taxclass'=>1 );
497     $base_regions{$base_label}->{'label'} = $base_label;
498
499     $base_regions{$base_label}->{'url_param'} =
500       join(';', map "$_=". uri_escape($r->$_()),
501                      qw( county state country taxname )
502           );
503
504     $base_regions{$base_label}->{'tax'} += $x;
505     $tax += $x;
506   }
507
508 }
509
510
511 #ordering
512 my @regions =
513   map $regions{$_},
514   sort { ( ($a eq $out) cmp ($b eq $out) ) || ($b cmp $a) }
515   keys %regions;
516
517 my @base_regions =
518   map $base_regions{$_},
519   sort { ( ($a eq $out) cmp ($b eq $out) ) || ($b cmp $a) }
520   keys %base_regions;
521
522 push @regions, {
523   'label'          => 'Total',
524   'url_param'      => '',
525   'total'          => $total,
526   'exempt_cust'    => $exempt_cust,
527   'exempt_pkg'     => $exempt_pkg,
528   'exempt_monthly' => $exempt_monthly,
529   'taxable'        => $tot_taxable,
530   'rate'           => '',
531   'owed'           => $owed,
532   'tax'            => $tax,
533 };
534
535 #-- 
536
537 sub getlabel {
538   my $r = shift;
539   my %opt = @_;
540
541   my $label;
542   if (
543     $r->tax == 0 
544     && ! scalar( qsearch('cust_main_county', { 'state'   => $r->state,
545                                                'county'  => $r->county,
546                                                'country' => $r->country,
547                                                'tax' => { op=>'>', value=>0 },
548                                              }
549                         )
550                )
551
552   ) {
553     #kludge to avoid "will not stay shared" warning
554     my $out = 'Out of taxable region(s)';
555     $label = $out;
556   } elsif ( $r->taxname ) {
557     $label = $r->taxname;
558 #    $regions{$label}->{'taxname'} = $label;
559 #    push @{$regions{$label}->{$_}}, $r->$_() foreach qw( county state country );
560   } else {
561     $label = $r->country;
562     $label = $r->state.", $label" if $r->state;
563     $label = $r->county." county, $label" if $r->county;
564     $label = "$label (". $r->taxclass. ")"
565       if $r->taxclass
566       && $cgi->param('show_taxclasses')
567       && ! $opt{'no_taxclass'};
568     #$label = $r->taxname. " ($label)" if $r->taxname;
569   }
570   return $label;
571 }
572
573 #false laziness w/FS::Report::Table::Monthly (sub should probably be moved up
574 #to FS::Report or FS::Record or who the fuck knows where)
575 sub scalar_sql {
576   my( $r, $param, $sql ) = @_;
577   #warn "$sql\n";
578   my $sth = dbh->prepare($sql) or die dbh->errstr;
579   $sth->execute( map $r->$_(), @$param )
580     or die "Unexpected error executing statement $sql: ". $sth->errstr;
581   $sth->fetchrow_arrayref->[0] || 0;
582 }
583
584 my $dateagentlink = "begin=$beginning;end=$ending";
585 $dateagentlink .= ';agentnum='. $cgi->param('agentnum')
586   if length($agentname);
587 my $baselink   = $p. "search/cust_bill_pkg.cgi?$dateagentlink";
588 my $exemptlink = $p. "search/cust_tax_exempt_pkg.cgi?$dateagentlink";
589
590 </%init>