fix total line links on tax report when using report_group kludge? (possibly not...
[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 #classnum
87 # not specified: all classes
88 # 0: empty class
89 # N: classnum
90 if ( $cgi->param('classnum') =~ /^(\d+)$/ ) {
91   if ( $1 == 0 ) {
92     push @where, "classnum IS NULL";
93   } else {
94     push @where, "classnum = $1";
95   }
96 }
97
98 push @where, map ' taxclass = '.dbh->quote($_), $cgi->param('taxclass')
99   if $cgi->param('taxclass')
100   && ! $cgi->param('istax'); #no part_pkg.taxclass in this case
101                              #(should we save a taxclass or a link to taxnum
102                              # in cust_bill_pkg or something like
103                              # cust_bill_pkg_tax_location?)
104
105 #sub _where {
106 # my $table = shift;
107 # my $prefix = @_ ? shift : '';
108 # "
109 #      (    cust_main_county.county  = $table.${prefix}.county
110 #      OR ( cust_main_county.county IS NULL AND $table.${prefix}.county  =  '' )
111 #      OR ( cust_main_county.county  =  ''  AND $table.${prefix}.county IS NULL)
112 #      OR ( cust_main_county.county IS NULL AND $table.${prefix}.county IS NULL)
113 #      )
114 #  AND (    cust_main_county.state   = $table.${prefix}.state
115 #      OR ( cust_main_county.state  IS NULL AND $table.${prefix}.state  =  ''  )
116 #      OR ( cust_main_county.state   =  ''  AND $table.${prefix}.state IS NULL )
117 #      OR ( cust_main_county.state  IS NULL AND $table.${prefix}.state IS NULL )
118 #      )
119 #  AND cust_main_county.country = $table.${prefix}.country
120 # ";
121 #
122 #}
123
124 if ( $cgi->param('out') ) {
125
126   my ( $loc_sql, @param ) = FS::cust_pkg->location_sql( 'ornull' => 1 );
127   while ( $loc_sql =~ /\?/ ) { #easier to do our own substitution
128     $loc_sql =~ s/\?/'cust_main_county.'.shift(@param)/e;
129   }
130
131   $loc_sql =~ s/cust_pkg\.locationnum/cust_bill_pkg_tax_location.locationnum/g
132     if $cgi->param('istax');
133
134   push @where, "
135     0 = (
136           SELECT COUNT(*) FROM cust_main_county
137            WHERE cust_main_county.tax > 0
138              AND $loc_sql
139         )
140   ";
141
142   #not linked to by anything, but useful for debugging "out of taxable region"
143   if ( grep $cgi->param($_), qw( county state country ) ) {
144
145     my %ph = map { $_ => dbh->quote( $cgi->param($_) ) }
146                  qw( county state country );
147
148     my ( $loc_sql, @param ) = FS::cust_pkg->location_sql;
149     while ( $loc_sql =~ /\?/ ) { #easier to do our own substitution
150       $loc_sql =~ s/\?/$ph{shift(@param)}/e;
151     }
152
153     push @where, $loc_sql;
154
155   }
156
157 } elsif ( $cgi->param('country') ) {
158
159   my %ph = map { $_ => dbh->quote( $cgi->param($_) ) }
160                qw( county state country );
161
162   my ( $loc_sql, @param ) = FS::cust_pkg->location_sql;
163   while ( $loc_sql =~ /\?/ ) { #easier to do our own substitution
164     $loc_sql =~ s/\?/$ph{shift(@param)}/e;
165   }
166
167   push @where, $loc_sql;
168    
169   if ( $cgi->param('istax') ) {
170     if ( $cgi->param('taxname') ) {
171       push @where, 'itemdesc = '. dbh->quote( $cgi->param('taxname') );
172     #} elsif ( $cgi->param('taxnameNULL') {
173     } else {
174       push @where, "( itemdesc IS NULL OR itemdesc = '' OR itemdesc = 'Tax' )";
175     }
176   } elsif ( $cgi->param('nottax') ) {
177     #what can we usefully do with "taxname" ????  look up a class???
178   } else {
179     #warn "neither nottax nor istax parameters specified";
180   }
181
182   if ( $cgi->param('taxclassNULL') ) {
183
184     my %hash = ( 'country' => scalar($cgi->param('country')) );
185     foreach (qw( state county )) {
186       $hash{$_} = scalar($cgi->param($_)) if $cgi->param($_);
187     }
188     my $cust_main_county = qsearchs('cust_main_county', \%hash);
189     die "unknown base region for empty taxclass" unless $cust_main_county;
190
191     my $same_sql = $cust_main_county->sql_taxclass_sameregion;
192     push @where, $same_sql if $same_sql;
193
194   }
195
196 } elsif ( scalar( grep( /locationtaxid/, $cgi->param ) ) ) {
197
198   # this should really be shoved out to FS::cust_pkg->location_sql or something
199   # along with the code in report_newtax.cgi
200
201   my %pn = (
202    'county'        => 'tax_rate_location.county',
203    'state'         => 'tax_rate_location.state',
204    'city'          => 'tax_rate_location.city',
205    'locationtaxid' => 'cust_bill_pkg_tax_rate_location.locationtaxid',
206   );
207
208   my %ph = map { ( $pn{$_} => dbh->quote( $cgi->param($_) || '' ) ) }
209            qw( county state city locationtaxid );
210
211   push @where,
212     join( ' AND ', map { "( $_ = $ph{$_} OR $ph{$_} = '' AND $_ IS NULL)" }
213                    keys %ph
214     );
215
216 }
217
218 if ( $cgi->param('itemdesc') ) {
219   if ( $cgi->param('itemdesc') eq 'Tax' ) {
220     push @where, "(itemdesc='Tax' OR itemdesc is null)";
221   } else {
222     push @where, 'itemdesc='. dbh->quote($cgi->param('itemdesc'));
223   }
224 }
225
226 if ( $cgi->param('report_group') =~ /^(=|!=) (.*)$/ && $cgi->param('istax') ) {
227   my ( $group_op, $group_value ) = ( $1, $2 );
228   if ( $group_op eq '=' ) {
229     #push @where, 'itemdesc LIKE '. dbh->quote($group_value.'%');
230     push @where, 'itemdesc = '. dbh->quote($group_value);
231   } elsif ( $group_op eq '!=' ) {
232     push @where, '( itemdesc != '. dbh->quote($group_value) .' OR itemdesc IS NULL )';
233   } else {
234     die "guru meditation #00de: group_op $group_op\n";
235   }
236   
237 }
238
239 push @where, 'cust_bill_pkg.pkgnum != 0' if $cgi->param('nottax');
240 push @where, 'cust_bill_pkg.pkgnum  = 0' if $cgi->param('istax');
241
242 push @where, " tax = 'Y' " if $cgi->param('cust_tax');
243
244 my $count_query;
245 if ( $cgi->param('pkg_tax') ) {
246
247   $count_query =
248     "SELECT COUNT(*),
249             SUM(
250                  ( CASE WHEN part_pkg.setuptax = 'Y'
251                         THEN cust_bill_pkg.setup
252                         ELSE 0
253                    END
254                  )
255                  +
256                  ( CASE WHEN part_pkg.recurtax = 'Y'
257                         THEN cust_bill_pkg.recur
258                         ELSE 0
259                    END
260                  )
261                )
262     ";
263
264   push @where, "(    ( part_pkg.setuptax = 'Y' AND cust_bill_pkg.setup > 0 )
265                   OR ( part_pkg.recurtax = 'Y' AND cust_bill_pkg.recur > 0 ) )",
266                "( tax != 'Y' OR tax IS NULL )";
267
268 } elsif ( $cgi->param('taxable') ) {
269
270   my $setup_taxable = "(
271     CASE WHEN part_pkg.setuptax = 'Y'
272          THEN 0
273          ELSE cust_bill_pkg.setup
274     END
275   )";
276
277   my $recur_taxable = "(
278     CASE WHEN part_pkg.recurtax = 'Y'
279          THEN 0
280          ELSE cust_bill_pkg.recur
281     END
282   )";
283
284   my $exempt = "(
285     SELECT COALESCE( SUM(amount), 0 ) FROM cust_tax_exempt_pkg
286       WHERE cust_tax_exempt_pkg.billpkgnum = cust_bill_pkg.billpkgnum
287   )";
288
289   $count_query =
290     "SELECT COUNT(*), SUM( $setup_taxable + $recur_taxable - $exempt )";
291
292   push @where,
293     #not tax-exempt package (setup or recur)
294     "(
295           ( ( part_pkg.setuptax != 'Y' OR part_pkg.setuptax IS NULL )
296             AND cust_bill_pkg.setup > 0 )
297        OR
298           ( ( part_pkg.recurtax != 'Y' OR part_pkg.recurtax IS NULL )
299             AND cust_bill_pkg.recur > 0 )
300     )",
301     #not a tax_exempt customer
302     "( tax != 'Y' OR tax IS NULL )";
303     #not covered in full by a monthly tax exemption (texas tax)
304     "0 < ( $setup_taxable + $recur_taxable - $exempt )",
305
306 } else {
307
308   $count_query =
309     "SELECT COUNT(*), SUM(cust_bill_pkg.setup + cust_bill_pkg.recur)";
310
311 }
312
313 my $where = ' WHERE '. join(' AND ', @where);
314
315 my $join_cust =  '      JOIN cust_bill USING ( invnum ) 
316                    LEFT JOIN cust_main USING ( custnum ) ';
317
318
319 my $join_pkg;
320 if ( $cgi->param('nottax') ) {
321
322   $join_pkg =  ' LEFT JOIN cust_pkg USING ( pkgnum )
323                  LEFT JOIN part_pkg USING ( pkgpart ) ';
324   $join_pkg .= ' LEFT JOIN cust_location USING ( locationnum ) '
325     if $conf->exists('tax-pkg_address');
326
327 } elsif ( $cgi->param('istax') ) {
328
329   #false laziness w/report_tax.cgi $taxfromwhere
330   if ( $conf->exists('tax-pkg_address') ) {
331     $join_pkg .= ' LEFT JOIN cust_bill_pkg_tax_location USING ( billpkgnum )
332                    LEFT JOIN cust_location              USING ( locationnum ) ';
333
334     #quelle kludge, false laziness w/report_tax.cgi
335     $where =~ s/cust_pkg\.locationnum/cust_bill_pkg_tax_location.locationnum/g; 
336   } elsif ( scalar( grep( /locationtaxid/, $cgi->param ) ) ) {
337     $join_pkg .=
338       ' LEFT JOIN cust_bill_pkg_tax_rate_location USING ( billpkgnum ) '.
339       ' LEFT JOIN tax_rate_location USING ( taxratelocationnum ) ';
340   }
341
342 } else { 
343
344   #die?
345   warn "neiether nottax nor istax parameters specified";
346   #same as before?
347   $join_pkg =  ' LEFT JOIN cust_pkg USING ( pkgnum )
348                  LEFT JOIN part_pkg USING ( pkgpart ) ';
349
350 }
351
352 $count_query .= " FROM cust_bill_pkg $join_cust $join_pkg $where";
353
354 my @select = (
355                'cust_bill_pkg.*',
356                'cust_bill._date',
357              );
358 push @select, 'part_pkg.pkg' unless $cgi->param('istax');
359 push @select, 'cust_main.custnum',
360               FS::UI::Web::cust_sql_fields();
361
362 my $query = {
363   'table'     => 'cust_bill_pkg',
364   'addl_from' => "$join_cust $join_pkg",
365   'hashref'   => {},
366   'select'    => join(', ', @select ),
367   'extra_sql' => $where,
368   'order_by'  => 'ORDER BY _date, billpkgnum',
369 };
370
371 my $ilink = [ "${p}view/cust_bill.cgi?", 'invnum' ];
372 my $clink = [ "${p}view/cust_main.cgi?", 'custnum' ];
373
374 my $conf = new FS::Conf;
375 my $money_char = $conf->config('money_char') || '$';
376
377 </%init>