Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / httemplate / search / cust_tax_exempt_pkg.cgi
1 <% include( 'elements/search.html',
2                  'title'       => 'Tax exemptions',
3                  'name'        => 'tax exemptions',
4                  'query'       => $query,
5                  'count_query' => $count_query,
6                  'count_addl'  => [ $money_char. '%.2f total', ],
7                  'header'      => [
8                    '#',
9                    'Month',
10                    'Amount',
11                    'Line item',
12                    'Invoice',
13                    'Date',
14                    FS::UI::Web::cust_header(),
15                  ],
16                  'fields'      => [
17                    'exemptpkgnum',
18                    sub { $_[0]->month. '/'. $_[0]->year; },
19                    sub { $money_char. $_[0]->amount; },
20
21                    sub {
22                      $_[0]->billpkgnum. ': '.
23                      ( $_[0]->pkgnum > 0
24                          ? $_[0]->get('pkg')
25                          : $_[0]->get('itemdesc')
26                      ).
27                      ' ('.
28                      ( $_[0]->setup > 0
29                          ? $money_char. $_[0]->setup. ' setup'
30                          : ''
31                      ).
32                      ( $_[0]->setup > 0 && $_[0]->recur > 0
33                        ? ' / '
34                        : ''
35                      ).
36                      ( $_[0]->recur > 0
37                          ? $money_char. $_[0]->recur. ' recur'
38                          : ''
39                      ).
40                      ')';
41                    },
42
43                    'invnum',
44                    sub { time2str('%b %d %Y', shift->_date ) },
45
46                    \&FS::UI::Web::cust_fields,
47                  ],
48                  'links'       => [
49                    '',
50                    '',
51                    '',
52
53                    '',
54                    $ilink,
55                    $ilink,
56
57                    ( map { $_ ne 'Cust. Status' ? $clink : '' }
58                          FS::UI::Web::cust_header()
59                    ),
60                  ],
61                  'align' => 'rrrlrc'.FS::UI::Web::cust_aligns(), # 'rlrrrc',
62                  'color' => [ 
63                               '',
64                               '',
65                               '',
66                               '',
67                               '',
68                               '',
69                               FS::UI::Web::cust_colors(),
70                             ],
71                  'style' => [ 
72                               '',
73                               '',
74                               '',
75                               '',
76                               '',
77                               '',
78                               FS::UI::Web::cust_styles(),
79                             ],
80            )
81 %>
82 <%once>
83
84 my $join_cust = "
85     JOIN cust_bill USING ( invnum )" .
86     FS::UI::Web::join_cust_main('cust_bill', 'cust_pkg');
87
88 my $join_pkg = "
89     LEFT JOIN cust_pkg USING ( pkgnum )
90     LEFT JOIN part_pkg USING ( pkgpart )
91 ";
92
93 my $join = "
94     JOIN cust_bill_pkg USING ( billpkgnum )
95     $join_pkg
96     $join_cust
97 ";
98
99 </%once>
100 <%init>
101
102 die "access denied"
103   unless $FS::CurrentUser::CurrentUser->access_right('View customer tax exemptions');
104
105 my @where = ("exempt_monthly = 'Y'");
106
107 my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi);
108 if ( $beginning || $ending ) {
109   push @where, "_date >= $beginning",
110                "_date <= $ending";
111                #"payby != 'COMP';
112 }
113
114 if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
115   push @where, "cust_main.agentnum = $1";
116 }
117
118 if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
119   push @where,  "cust_main.custnum = $1";
120 }
121
122 if ( $cgi->param('out') ) {
123   # wtf? how would you ever get exemptions on a non-taxable package location?
124
125   push @where, "
126     0 = (
127       SELECT COUNT(*) FROM cust_main_county AS county_out
128       WHERE (    county_out.county  = cust_main.county
129               OR ( county_out.county IS NULL AND cust_main.county  =  '' )
130               OR ( county_out.county  =  ''  AND cust_main.county IS NULL)
131               OR ( county_out.county IS NULL AND cust_main.county IS NULL)
132             )
133         AND (    county_out.state   = cust_main.state
134               OR ( county_out.state  IS NULL AND cust_main.state  =  ''  )
135               OR ( county_out.state   =  ''  AND cust_main.state IS NULL )
136               OR ( county_out.state  IS NULL AND cust_main.state IS NULL )
137             )
138         AND county_out.country = cust_main.country
139         AND county_out.tax > 0
140     )
141   ";
142
143 } elsif ( $cgi->param('country' ) ) {
144
145   my $county  = dbh->quote( $cgi->param('county')  );
146   my $state   = dbh->quote( $cgi->param('state')   );
147   my $country = dbh->quote( $cgi->param('country') );
148   push @where, "( county  = $county OR $county = '' )",
149                "( state   = $state  OR $state = ''  )",
150                "  country = $country";
151   push @where, 'taxclass = '. dbh->quote( $cgi->param('taxclass') )
152     if $cgi->param('taxclass');
153
154 } elsif ( $cgi->param('taxnum') ) {
155
156   my $taxnum_in = join(',', grep /^\d+$/, $cgi->param('taxnum') );
157   push @where, "taxnum IN ($taxnum_in)" if $taxnum_in;
158
159 }
160
161 my $where = scalar(@where) ? 'WHERE '.join(' AND ', @where) : '';
162
163 my $count_query = "SELECT COUNT(*), SUM(amount)".
164                   "  FROM cust_tax_exempt_pkg $join $where";
165
166 my $query = {
167   'table'     => 'cust_tax_exempt_pkg',
168   'addl_from' => $join,
169   'hashref'   => {},
170   'select'    => join(', ',
171                    'cust_tax_exempt_pkg.*',
172                    'cust_bill_pkg.*',
173                    'cust_bill.*',
174                    'part_pkg.pkg',
175                    'cust_main.custnum',
176                    FS::UI::Web::cust_sql_fields(),
177                  ),
178   'extra_sql' => $where,
179 };
180
181 my $ilink = [ "${p}view/cust_bill.cgi?", 'invnum' ];
182 my $clink = [ "${p}view/cust_main.cgi?", 'custnum' ];
183
184 my $conf = new FS::Conf;
185 my $money_char = $conf->config('money_char') || '$';
186
187 </%init>