minor initialization issue
[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('cust_main_county', {}, '', $gotcust) ) {
296   #warn $r->county. ' '. $r->state. ' '. $r->country. "\n";
297
298   my $label = getlabel($r);
299   $regions{$label}->{'label'} = $label;
300   $regions{$label}->{'url_param'} = join(';', map "$_=".$r->$_(), qw( county state country ) );
301
302   my @param = @base_param;
303   my $mywhere = $where;
304
305   if ( $r->taxclass ) {
306
307     $mywhere .= " AND taxclass = ? ";
308     push @param, 'taxclass';
309     $regions{$label}->{'url_param'} .= ';taxclass='. $r->taxclass
310       if $cgi->param('show_taxclasses');
311
312   } else {
313
314     $regions{$label}->{'url_param'} .= ';taxclassNULL=1'
315       if $cgi->param('show_taxclasses');
316
317     my $same_sql = $r->sql_taxclass_sameregion;
318     $mywhere .= " AND $same_sql" if $same_sql;
319
320   }
321
322   my $fromwhere = $from_join_cust. $join_pkg. $mywhere. " AND payby != 'COMP' ";
323
324 #  my $label = getlabel($r);
325 #  $regions{$label}->{'label'} = $label;
326
327   my $nottax = 'pkgnum != 0';
328
329   ## calculate total for this region
330
331   my $t = scalar_sql($r, \@param,
332     "SELECT SUM(cust_bill_pkg.setup+cust_bill_pkg.recur) $fromwhere AND $nottax"
333   );
334   $total += $t;
335   $regions{$label}->{'total'} += $t;
336
337   ## calculate customer-exemption for this region
338
339 ##  my $taxable = $t;
340
341 #  my($taxable, $x_cust) = (0, 0);
342 #  foreach my $e ( grep { $r->get($_.'tax') !~ /^Y/i }
343 #                       qw( cust_bill_pkg.setup cust_bill_pkg.recur ) ) {
344 #    $taxable += scalar_sql($r, \@param, 
345 #      "SELECT SUM($e) $fromwhere AND $nottax AND ( tax != 'Y' OR tax IS NULL )"
346 #    );
347 #
348 #    $x_cust += scalar_sql($r, \@param, 
349 #      "SELECT SUM($e) $fromwhere AND $nottax AND tax = 'Y'"
350 #    );
351 #  }
352
353   my $x_cust = scalar_sql($r, \@param,
354     "SELECT SUM(cust_bill_pkg.setup+cust_bill_pkg.recur)
355      $fromwhere AND $nottax AND tax = 'Y' "
356   );
357
358   $exempt_cust += $x_cust;
359   $regions{$label}->{'exempt_cust'} += $x_cust;
360   
361   ## calculate package-exemption for this region
362
363   my $x_pkg = scalar_sql($r, \@param,
364     "SELECT SUM(
365                  ( CASE WHEN part_pkg.setuptax = 'Y'
366                         THEN cust_bill_pkg.setup
367                         ELSE 0
368                    END
369                  )
370                  +
371                  ( CASE WHEN part_pkg.recurtax = 'Y'
372                         THEN cust_bill_pkg.recur
373                         ELSE 0
374                    END
375                  )
376                )
377        $fromwhere
378        AND $nottax
379        AND (
380                 ( part_pkg.setuptax = 'Y' AND cust_bill_pkg.setup > 0 )
381              OR ( part_pkg.recurtax = 'Y' AND cust_bill_pkg.recur > 0 )
382            )
383        AND ( tax != 'Y' OR tax IS NULL )
384     "
385   );
386   $exempt_pkg += $x_pkg;
387   $regions{$label}->{'exempt_pkg'} += $x_pkg;
388
389   ## calculate monthly exemption (texas tax) for this region
390
391   # count up all the cust_tax_exempt_pkg records associated with
392   # the actual line items.
393
394   my $x_monthly = scalar_sql($r, \@param,
395     "SELECT SUM(amount)
396        FROM cust_tax_exempt_pkg
397        JOIN cust_bill_pkg USING ( billpkgnum )
398        $join_cust $join_pkg
399      $mywhere"
400   );
401 #  if ( $x_monthly ) {
402 #    #warn $r->taxnum(). ": $x_monthly\n";
403 #    $taxable -= $x_monthly;
404 #  }
405
406   $exempt_monthly += $x_monthly;
407   $regions{$label}->{'exempt_monthly'} += $x_monthly;
408
409   my $taxable = $t - $x_cust - $x_pkg - $x_monthly;
410
411   $tot_taxable += $taxable;
412   $regions{$label}->{'taxable'} += $taxable;
413
414   $owed += $taxable * ($r->tax/100);
415   $regions{$label}->{'owed'} += $taxable * ($r->tax/100);
416
417   if ( defined($regions{$label}->{'rate'})
418        && $regions{$label}->{'rate'} != $r->tax.'%' ) {
419     $regions{$label}->{'rate'} = 'variable';
420   } else {
421     $regions{$label}->{'rate'} = $r->tax.'%';
422   }
423
424 }
425
426 my $taxwhere = "$from_join_cust $where AND payby != 'COMP' ";
427 my @taxparam = @base_param;
428 my %base_regions = ();
429 #foreach my $label ( keys %regions ) {
430 foreach my $r (
431   qsearch( 'cust_main_county',
432            {},
433            "DISTINCT
434               country,
435               state,
436               county,
437               CASE WHEN taxname IS NULL THEN '' ELSE taxname END AS taxname,".
438
439               #a little bit unsure of this part... test?
440               #ah, it looks like it winds up being irrelevant as ->{'tax'} 
441               # from $regions is not displayed when show_taxclasses is on
442               ( $cgi->param('show_taxclasses')
443                   ? " CASE WHEN taxclass IS NULL THEN '' ELSE taxclass END "
444                   : " '' "
445               )." AS taxclass"
446            ,
447            $gotcust
448          )
449 ) {
450
451   #warn join('-', map { $r->$_() } qw( country state county taxname ) )."\n";
452
453   my $label = getlabel($r);
454
455   #my $fromwhere = $join_pkg. $where. " AND payby != 'COMP' ";
456   #my @param = @base_param; 
457
458   #match itemdesc if necessary!
459   my $named_tax =
460     $r->taxname
461       ? 'AND itemdesc = '. dbh->quote($r->taxname)
462       : "AND ( itemdesc IS NULL OR itemdesc = '' OR itemdesc = 'Tax' )";
463
464   my $sql = "SELECT SUM(cust_bill_pkg.setup+cust_bill_pkg.recur) ".
465             " $taxwhere AND pkgnum = 0 $named_tax";
466
467   my $x = scalar_sql($r, \@taxparam, $sql );
468   $tax += $x;
469   $regions{$label}->{'tax'} += $x;
470
471   if ( $cgi->param('show_taxclasses') ) {
472     my $base_label = getlabel($r, 'no_taxclass'=>1 );
473     $base_regions{$base_label}->{'label'} = $base_label;
474     $base_regions{$base_label}->{'url_param'} =
475       join(';', map "$_=".$r->$_(), qw( county state country ) );
476     $base_regions{$base_label}->{'tax'} += $x;
477   }
478
479 }
480
481 #ordering
482 my @regions =
483   map $regions{$_},
484   sort { ( ($a eq $out) cmp ($b eq $out) ) || ($b cmp $a) }
485   keys %regions;
486
487 my @base_regions =
488   map $base_regions{$_},
489   sort { ( ($a eq $out) cmp ($b eq $out) ) || ($b cmp $a) }
490   keys %base_regions;
491
492 push @regions, {
493   'label'          => 'Total',
494   'url_param'      => '',
495   'total'          => $total,
496   'exempt_cust'    => $exempt_cust,
497   'exempt_pkg'     => $exempt_pkg,
498   'exempt_monthly' => $exempt_monthly,
499   'taxable'        => $tot_taxable,
500   'rate'           => '',
501   'owed'           => $owed,
502   'tax'            => $tax,
503 };
504
505 #-- 
506
507 sub getlabel {
508   my $r = shift;
509   my %opt = @_;
510
511   my $label;
512   if (
513     $r->tax == 0 
514     && ! scalar( qsearch('cust_main_county', { 'state'   => $r->state,
515                                                'county'  => $r->county,
516                                                'country' => $r->country,
517                                                'tax' => { op=>'>', value=>0 },
518                                              }
519                         )
520                )
521
522   ) {
523     #kludge to avoid "will not stay shared" warning
524     my $out = 'Out of taxable region(s)';
525     $label = $out;
526   } elsif ( $r->taxname ) {
527     $label = $r->taxname;
528 #    $regions{$label}->{'taxname'} = $label;
529 #    push @{$regions{$label}->{$_}}, $r->$_() foreach qw( county state country );
530   } else {
531     $label = $r->country;
532     $label = $r->state.", $label" if $r->state;
533     $label = $r->county." county, $label" if $r->county;
534     $label = "$label (". $r->taxclass. ")"
535       if $r->taxclass
536       && $cgi->param('show_taxclasses')
537       && ! $opt{'no_taxclass'};
538     #$label = $r->taxname. " ($label)" if $r->taxname;
539   }
540   return $label;
541 }
542
543 #false laziness w/FS::Report::Table::Monthly (sub should probably be moved up
544 #to FS::Report or FS::Record or who the fuck knows where)
545 sub scalar_sql {
546   my( $r, $param, $sql ) = @_;
547   #warn "$sql\n";
548   my $sth = dbh->prepare($sql) or die dbh->errstr;
549   $sth->execute( map $r->$_(), @$param )
550     or die "Unexpected error executing statement $sql: ". $sth->errstr;
551   $sth->fetchrow_arrayref->[0] || 0;
552 }
553
554 my $dateagentlink = "begin=$beginning;end=$ending";
555 $dateagentlink .= ';agentnum='. $cgi->param('agentnum')
556   if length($agentname);
557 my $baselink   = $p. "search/cust_bill_pkg.cgi?$dateagentlink";
558 my $exemptlink = $p. "search/cust_tax_exempt_pkg.cgi?$dateagentlink";
559
560 </%init>