fix tax report for more complex situations with counties and taxclasses, make taxable...
[freeside.git] / httemplate / search / cust_bill_pkg.cgi
1 <% include( 'elements/search.html',
2                  'title'       => 'Line items',
3                  'name'        => 'line items',
4                  'query'       => $query,
5                  'count_query' => $count_query,
6                  'count_addl'  => [ $money_char. '%.2f total', ],
7                  'header'      => [
8                    '#',
9                    'Description',
10                    'Setup charge',
11                    'Recurring charge',
12                    'Invoice',
13                    'Date',
14                    FS::UI::Web::cust_header(),
15                  ],
16                  'fields'      => [
17                    'billpkgnum',
18                    sub { $_[0]->pkgnum > 0
19                            ? $_[0]->get('pkg')
20                            : $_[0]->get('itemdesc')
21                        },
22                    #strikethrough or "N/A ($amount)" or something these when
23                    # they're not applicable to pkg_tax search
24                    sub { sprintf($money_char.'%.2f', shift->setup ) },
25                    sub { sprintf($money_char.'%.2f', shift->recur ) },
26                    'invnum',
27                    sub { time2str('%b %d %Y', shift->_date ) },
28                    \&FS::UI::Web::cust_fields,
29                  ],
30                  'links'       => [
31                    '',
32                    '',
33                    '',
34                    '',
35                    $ilink,
36                    $ilink,
37                    ( map { $_ ne 'Cust. Status' ? $clink : '' }
38                          FS::UI::Web::cust_header()
39                    ),
40                  ],
41                  'align' => 'rlrrrc'.FS::UI::Web::cust_aligns(),
42                  'color' => [ 
43                               '',
44                               '',
45                               '',
46                               '',
47                               '',
48                               '',
49                               FS::UI::Web::cust_colors(),
50                             ],
51                  'style' => [ 
52                               '',
53                               '',
54                               '',
55                               '',
56                               '',
57                               '',
58                               FS::UI::Web::cust_styles(),
59                             ],
60            )
61 %>
62 <%init>
63
64 die "access denied"
65   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
66
67 my $conf = new FS::Conf;
68
69 #here is the agent virtualization
70 my $agentnums_sql =
71   $FS::CurrentUser::CurrentUser->agentnums_sql( 'table' => 'cust_main' );
72
73 my @where = ( $agentnums_sql );
74
75 my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi);
76 push @where, "_date >= $beginning",
77              "_date <= $ending";
78
79 push @where , " payby != 'COMP' "
80   unless $cgi->param('include_comp_cust');
81
82 if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
83   push @where, "cust_main.agentnum = $1";
84 }
85
86 if ( $cgi->param('classnum') =~ /^(\d+)$/ ) {
87   if ( $1 == 0 ) {
88     push @where, "classnum IS NULL";
89   } else {
90     push @where, "classnum = $1";
91   }
92 }
93
94 #sub _where {
95 # my $table = shift;
96 # my $prefix = @_ ? shift : '';
97 # "
98 #      (    cust_main_county.county  = $table.${prefix}.county
99 #      OR ( cust_main_county.county IS NULL AND $table.${prefix}.county  =  '' )
100 #      OR ( cust_main_county.county  =  ''  AND $table.${prefix}.county IS NULL)
101 #      OR ( cust_main_county.county IS NULL AND $table.${prefix}.county IS NULL)
102 #      )
103 #  AND (    cust_main_county.state   = $table.${prefix}.state
104 #      OR ( cust_main_county.state  IS NULL AND $table.${prefix}.state  =  ''  )
105 #      OR ( cust_main_county.state   =  ''  AND $table.${prefix}.state IS NULL )
106 #      OR ( cust_main_county.state  IS NULL AND $table.${prefix}.state IS NULL )
107 #      )
108 #  AND cust_main_county.country = $table.${prefix}.country
109 # ";
110 #
111 #}
112
113 if ( $cgi->param('out') ) {
114
115   my ( $loc_sql, @param ) = FS::cust_pkg->location_sql( 'ornull' => 1 );
116   while ( $loc_sql =~ /\?/ ) { #easier to do our own substitution
117     $loc_sql =~ s/\?/'cust_main_county.'.shift(@param)/e;
118   }
119
120   $loc_sql =~ s/cust_pkg\.locationnum/cust_bill_pkg_tax_location.locationnum/g
121     if $cgi->param('istax');
122
123   push @where, "
124     0 = (
125           SELECT COUNT(*) FROM cust_main_county
126            WHERE cust_main_county.tax > 0
127              AND $loc_sql
128         )
129   ";
130
131   #not linked to by anything, but useful for debugging "out of taxable region"
132   if ( grep $cgi->param($_), qw( county state country ) ) {
133
134     my %ph = map { $_ => dbh->quote( $cgi->param($_) ) }
135                  qw( county state country );
136
137     my ( $loc_sql, @param ) = FS::cust_pkg->location_sql;
138     while ( $loc_sql =~ /\?/ ) { #easier to do our own substitution
139       $loc_sql =~ s/\?/$ph{shift(@param)}/e;
140     }
141
142     push @where, $loc_sql;
143
144   }
145
146 } elsif ( $cgi->param('country' ) ) {
147
148   my %ph = map { $_ => dbh->quote( $cgi->param($_) ) }
149                qw( county state country );
150
151   my ( $loc_sql, @param ) = FS::cust_pkg->location_sql;
152   while ( $loc_sql =~ /\?/ ) { #easier to do our own substitution
153     $loc_sql =~ s/\?/$ph{shift(@param)}/e;
154   }
155
156   push @where, $loc_sql;
157    
158   if ( $cgi->param('istax') ) {
159     if ( $cgi->param('taxname') ) {
160       push @where, 'itemdesc = '. dbh->quote( $cgi->param('taxname') );
161     #} elsif ( $cgi->param('taxnameNULL') {
162     } else {
163       push @where, "( itemdesc IS NULL OR itemdesc = '' OR itemdesc = 'Tax' )";
164     }
165   } elsif ( $cgi->param('nottax') ) {
166     #what can we usefully do with "taxname" ????  look up a class???
167   } else {
168     #warn "neither nottax nor istax parameters specified";
169   }
170
171   push @where, ' taxclass = '. dbh->quote( $cgi->param('taxclass') )
172     if $cgi->param('taxclass')
173     && ! $cgi->param('istax'); #no part_pkg.taxclass in this case
174                                #(should we save a taxclass or a link to taxnum
175                                # in cust_bill_pkg or something like
176                                # cust_bill_pkg_tax_location?)
177
178   if ( $cgi->param('taxclassNULL') ) {
179
180     my %hash = ( 'country' => scalar($cgi->param('country')) );
181     foreach (qw( state county )) {
182       $hash{$_} = scalar($cgi->param($_)) if $cgi->param($_);
183     }
184     my $cust_main_county = qsearchs('cust_main_county', \%hash);
185     die "unknown base region for empty taxclass" unless $cust_main_county;
186
187     my $same_sql = $cust_main_county->sql_taxclass_sameregion;
188     push @where, $same_sql if $same_sql;
189
190   }
191
192 }
193
194 if ($cgi->param('itemdesc')) {
195   if ($cgi->param('itemdesc') eq 'Tax') {
196     push @where, "(itemdesc='Tax' OR itemdesc is null)";
197   }else{
198     push @where, 'itemdesc='. dbh->quote($cgi->param('itemdesc'));
199   }
200 }
201 push @where, 'cust_bill_pkg.pkgnum != 0' if $cgi->param('nottax');
202 push @where, 'cust_bill_pkg.pkgnum  = 0' if $cgi->param('istax');
203
204 push @where, " tax = 'Y' " if $cgi->param('cust_tax');
205
206 my $count_query;
207 if ( $cgi->param('pkg_tax') ) {
208
209   $count_query =
210     "SELECT COUNT(*),
211             SUM(
212                  ( CASE WHEN part_pkg.setuptax = 'Y'
213                         THEN cust_bill_pkg.setup
214                         ELSE 0
215                    END
216                  )
217                  +
218                  ( CASE WHEN part_pkg.recurtax = 'Y'
219                         THEN cust_bill_pkg.recur
220                         ELSE 0
221                    END
222                  )
223                )
224     ";
225
226   push @where, "(    ( part_pkg.setuptax = 'Y' AND cust_bill_pkg.setup > 0 )
227                   OR ( part_pkg.recurtax = 'Y' AND cust_bill_pkg.recur > 0 ) )",
228                "( tax != 'Y' OR tax IS NULL )";
229
230 } elsif ( $cgi->param('taxable') ) {
231
232   my $setup_taxable = "(
233     CASE WHEN part_pkg.setuptax = 'Y'
234          THEN 0
235          ELSE cust_bill_pkg.setup
236     END
237   )";
238
239   my $recur_taxable = "(
240     CASE WHEN part_pkg.recurtax = 'Y'
241          THEN 0
242          ELSE cust_bill_pkg.recur
243     END
244   )";
245
246   my $exempt = "(
247     SELECT COALESCE( SUM(amount), 0 ) FROM cust_tax_exempt_pkg
248       WHERE cust_tax_exempt_pkg.billpkgnum = cust_bill_pkg.billpkgnum
249   )";
250
251   $count_query =
252     "SELECT COUNT(*), SUM( $setup_taxable + $recur_taxable - $exempt )";
253
254   push @where,
255     #not tax-exempt package (setup or recur)
256     "(
257           ( ( part_pkg.setuptax != 'Y' OR part_pkg.setuptax IS NULL )
258             AND cust_bill_pkg.setup > 0 )
259        OR
260           ( ( part_pkg.recurtax != 'Y' OR part_pkg.recurtax IS NULL )
261             AND cust_bill_pkg.recur > 0 )
262     )",
263     #not a tax_exempt customer
264     "( tax != 'Y' OR tax IS NULL )";
265     #not covered in full by a monthly tax exemption (texas tax)
266     "0 < ( $setup_taxable + $recur_taxable - $exempt )",
267
268 } else {
269
270   $count_query =
271     "SELECT COUNT(*), SUM(cust_bill_pkg.setup + cust_bill_pkg.recur)";
272
273 }
274
275 my $where = ' WHERE '. join(' AND ', @where);
276
277 my $join_cust =  '      JOIN cust_bill USING ( invnum ) 
278                    LEFT JOIN cust_main USING ( custnum ) ';
279
280
281 my $join_pkg;
282 if ( $cgi->param('nottax') ) {
283
284   $join_pkg =  ' LEFT JOIN cust_pkg USING ( pkgnum )
285                  LEFT JOIN part_pkg USING ( pkgpart ) ';
286   $join_pkg .= ' LEFT JOIN cust_location USING ( locationnum ) '
287     if $conf->exists('tax-pkg_address');
288
289 } elsif ( $cgi->param('istax') ) {
290
291   #false laziness w/report_tax.cgi $taxfromwhere
292   if ( $conf->exists('tax-pkg_address') ) {
293     $join_pkg .= ' LEFT JOIN cust_bill_pkg_tax_location USING ( billpkgnum )
294                    LEFT JOIN cust_location              USING ( locationnum ) ';
295
296     #quelle kludge, false laziness w/report_tax.cgi
297     $where =~ s/cust_pkg\.locationnum/cust_bill_pkg_tax_location.locationnum/g; 
298   }
299
300 } else { 
301
302   #die?
303   warn "neiether nottax nor istax parameters specified";
304   #same as before?
305   $join_pkg =  ' LEFT JOIN cust_pkg USING ( pkgnum )
306                  LEFT JOIN part_pkg USING ( pkgpart ) ';
307
308 }
309
310 $count_query .= " FROM cust_bill_pkg $join_cust $join_pkg $where";
311
312 my @select = (
313                'cust_bill_pkg.*',
314                'cust_bill._date',
315              );
316 push @select, 'part_pkg.pkg' unless $cgi->param('istax');
317 push @select, 'cust_main.custnum',
318               FS::UI::Web::cust_sql_fields();
319
320 my $query = {
321   'table'     => 'cust_bill_pkg',
322   'addl_from' => "$join_cust $join_pkg",
323   'hashref'   => {},
324   'select'    => join(', ', @select ),
325   'extra_sql' => $where,
326   'order_by'  => 'ORDER BY _date, billpkgnum',
327 };
328
329 my $ilink = [ "${p}view/cust_bill.cgi?", 'invnum' ];
330 my $clink = [ "${p}view/cust_main.cgi?", 'custnum' ];
331
332 my $conf = new FS::Conf;
333 my $money_char = $conf->config('money_char') || '$';
334
335 </%init>