finish package location tax reporing, RT#4499
[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 } elsif ( $cgi->param('country' ) ) {
132
133   my %ph = map { $_ => dbh->quote( $cgi->param($_) ) }
134                qw( county state country );
135
136   my ( $loc_sql, @param ) = FS::cust_pkg->location_sql;
137   while ( $loc_sql =~ /\?/ ) { #easier to do our own substitution
138     $loc_sql =~ s/\?/$ph{shift(@param)}/e;
139   }
140
141   push @where, $loc_sql;
142    
143   if ( $cgi->param('istax') ) {
144     if ( $cgi->param('taxname') ) {
145       push @where, 'itemdesc = '. dbh->quote( $cgi->param('taxname') );
146     #} elsif ( $cgi->param('taxnameNULL') {
147     } else {
148       push @where, "( itemdesc IS NULL OR itemdesc = '' OR itemdesc = 'Tax' )";
149     }
150   } elsif ( $cgi->param('nottax') ) {
151     #what can we usefully do with "taxname" ????  look up a class???
152   } else {
153     #warn "neither nottax nor istax parameters specified";
154   }
155
156   push @where, ' taxclass = '. dbh->quote( $cgi->param('taxclass') )
157     if $cgi->param('taxclass');
158
159   if ( $cgi->param('taxclassNULL') ) {
160
161     my %hash = ( 'country' => scalar($cgi->param('country')) );
162     foreach (qw( state county )) {
163       $hash{$_} = scalar($cgi->param($_)) if $cgi->param($_);
164     }
165     my $cust_main_county = qsearchs('cust_main_county', \%hash);
166     die "unknown base region for empty taxclass" unless $cust_main_county;
167
168     my $same_sql = $cust_main_county->sql_taxclass_sameregion;
169     push @where, $same_sql if $same_sql;
170
171   }
172
173 }
174
175 if ($cgi->param('itemdesc')) {
176   if ($cgi->param('itemdesc') eq 'Tax') {
177     push @where, "(itemdesc='Tax' OR itemdesc is null)";
178   }else{
179     push @where, 'itemdesc='. dbh->quote($cgi->param('itemdesc'));
180   }
181 }
182 push @where, 'cust_bill_pkg.pkgnum != 0' if $cgi->param('nottax');
183 push @where, 'cust_bill_pkg.pkgnum  = 0' if $cgi->param('istax');
184
185 push @where, " tax = 'Y' " if $cgi->param('cust_tax');
186
187 my $count_query;
188 if ( $cgi->param('pkg_tax') ) {
189
190   $count_query =
191     "SELECT COUNT(*), SUM(
192                            ( CASE WHEN part_pkg.setuptax = 'Y'
193                                   THEN cust_bill_pkg.setup
194                                   ELSE 0
195                              END
196                            )
197                            +
198                            ( CASE WHEN part_pkg.recurtax = 'Y'
199                                   THEN cust_bill_pkg.recur
200                                   ELSE 0
201                              END
202                            )
203                          )
204     ";
205
206   push @where, "(    ( part_pkg.setuptax = 'Y' AND cust_bill_pkg.setup > 0 )
207                   OR ( part_pkg.recurtax = 'Y' AND cust_bill_pkg.recur > 0 ) )",
208                "( tax != 'Y' OR tax IS NULL )";
209
210 } else {
211
212   $count_query =
213     "SELECT COUNT(*), SUM(cust_bill_pkg.setup + cust_bill_pkg.recur)";
214
215 }
216
217 my $where = ' WHERE '. join(' AND ', @where);
218
219 my $join_cust =  '      JOIN cust_bill USING ( invnum ) 
220                    LEFT JOIN cust_main USING ( custnum ) ';
221
222
223 my $join_pkg;
224 if ( $cgi->param('nottax') ) {
225
226   $join_pkg =  ' LEFT JOIN cust_pkg USING ( pkgnum )
227                  LEFT JOIN part_pkg USING ( pkgpart ) ';
228   $join_pkg .= ' LEFT JOIN cust_location USING ( locationnum ) '
229     if $conf->exists('tax-pkg_address');
230
231 } elsif ( $cgi->param('istax') ) {
232
233   #false laziness w/report_tax.cgi $taxfromwhere
234   if ( $conf->exists('tax-pkg_address') ) {
235     $join_pkg .= ' LEFT JOIN cust_bill_pkg_tax_location USING ( billpkgnum )
236                    LEFT JOIN cust_location              USING ( locationnum ) ';
237
238     #quelle kludge, false laziness w/report_tax.cgi
239     $where =~ s/cust_pkg\.locationnum/cust_bill_pkg_tax_location.locationnum/g; 
240   }
241
242 } else { 
243
244   #die?
245   warn "neiether nottax nor istax parameters specified";
246   #same as before?
247   $join_pkg =  ' LEFT JOIN cust_pkg USING ( pkgnum )
248                  LEFT JOIN part_pkg USING ( pkgpart ) ';
249
250 }
251
252 $count_query .= " FROM cust_bill_pkg $join_cust $join_pkg $where";
253
254 my @select = (
255                'cust_bill_pkg.*',
256                'cust_bill._date',
257              );
258 push @select, 'part_pkg.pkg' unless $cgi->param('istax');
259 push @select, 'cust_main.custnum',
260               FS::UI::Web::cust_sql_fields();
261
262 my $query = {
263   'table'     => 'cust_bill_pkg',
264   'addl_from' => "$join_cust $join_pkg",
265   'hashref'   => {},
266   'select'    => join(', ', @select ),
267   'extra_sql' => $where,
268   'order_by'  => 'ORDER BY _date, billpkgnum',
269 };
270
271 my $ilink = [ "${p}view/cust_bill.cgi?", 'invnum' ];
272 my $clink = [ "${p}view/cust_main.cgi?", 'custnum' ];
273
274 my $conf = new FS::Conf;
275 my $money_char = $conf->config('money_char') || '$';
276
277 </%init>