1 <& elements/search.html,
2 'title' => 'Tax exemptions',
3 'name' => 'tax exemptions',
5 'count_query' => $count_query,
6 'count_addl' => [ $money_char. '%.2f total', ],
14 FS::UI::Web::cust_header(),
18 sub { $_[0]->month. '/'. $_[0]->year; },
19 sub { $money_char. $_[0]->amount; },
22 $_[0]->billpkgnum. ': '.
25 : $_[0]->get('itemdesc')
29 ? $money_char. $_[0]->setup. ' setup'
32 ( $_[0]->setup > 0 && $_[0]->recur > 0
37 ? $money_char. $_[0]->recur. ' recur'
44 sub { time2str('%b %d %Y', shift->_date ) },
46 \&FS::UI::Web::cust_fields,
57 ( map { $_ ne 'Cust. Status' ? $clink : '' }
58 FS::UI::Web::cust_header()
61 'align' => 'rrrlrc'.FS::UI::Web::cust_aligns(), # 'rlrrrc',
69 FS::UI::Web::cust_colors(),
78 FS::UI::Web::cust_styles(),
84 JOIN cust_bill USING ( invnum )" .
85 FS::UI::Web::join_cust_main('cust_bill', 'cust_pkg');
88 LEFT JOIN cust_pkg USING ( pkgnum )
89 LEFT JOIN part_pkg USING ( pkgpart )
93 JOIN cust_bill_pkg USING ( billpkgnum )
102 unless $FS::CurrentUser::CurrentUser->access_right('View customer tax exemptions');
104 my @where = ( "exempt_monthly = 'Y'" );
106 my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi);
107 if ( $beginning || $ending ) {
108 push @where, "_date >= $beginning",
112 if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
113 push @where, "cust_main.agentnum = $1";
116 if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
117 push @where, "cust_main.custnum = $1";
120 if ( $cgi->param('country' ) ) {
122 my $county = dbh->quote( $cgi->param('county') );
123 my $state = dbh->quote( $cgi->param('state') );
124 my $country = dbh->quote( $cgi->param('country') );
125 push @where, "( county = $county OR $county = '' )",
126 "( state = $state OR $state = '' )",
127 " country = $country";
128 push @where, 'taxclass = '. dbh->quote( $cgi->param('taxclass') )
129 if $cgi->param('taxclass');
133 if ( $cgi->param('taxnum') ) {
135 my @taxnums = grep /^\d+$/, map { split(',', $_) } $cgi->param('taxnum');
136 if ( $cgi->param('taxnum') =~ /^([\d,]+)$/) {
137 push @where, "cust_tax_exempt_pkg.taxnum IN ($1)";
142 if ( $cgi->param('classnum') =~ /^(\d+)$/ ) {
143 push @where, "COALESCE(part_pkg.classnum,0) = $1";
146 # no reason ever to show the negative exemptions created by credits.
147 # they'll just confuse people.
148 push @where, "creditbillpkgnum IS NULL";
150 my $where = scalar(@where) ? 'WHERE '.join(' AND ', @where) : '';
152 my $count_query = "SELECT COUNT(*), SUM(amount)".
153 " FROM cust_tax_exempt_pkg $join $where";
156 'table' => 'cust_tax_exempt_pkg',
157 'addl_from' => $join,
159 'select' => join(', ',
160 'cust_tax_exempt_pkg.*',
165 FS::UI::Web::cust_sql_fields(),
167 'extra_sql' => $where,
170 my $ilink = [ "${p}view/cust_bill.cgi?", 'invnum' ];
171 my $clink = [ "${p}view/cust_main.cgi?", 'custnum' ];
173 my $conf = new FS::Conf;
174 my $money_char = $conf->config('money_char') || '$';