1 <% include( 'elements/search.html',
2 'title' => 'Legacy tax exemptions',
3 'name' => 'legacy tax exemptions',
5 'count_query' => $count_query,
6 'count_addl' => [ $money_char. '%.2f total', ],
12 FS::UI::Web::cust_header(),
16 sub { $_[0]->month. '/'. $_[0]->year; },
17 sub { my $h = $_[0]->h_search('insert');
18 $h ? time2str('%L/%d/%Y', $h->history_date ) : ''
20 sub { $money_char. $_[0]->amount; },
22 \&FS::UI::Web::cust_fields,
30 ( map { $_ ne 'Cust. Status' ? $clink : '' }
31 FS::UI::Web::cust_header()
34 'align' => 'rrrr'.FS::UI::Web::cust_aligns(),
40 FS::UI::Web::cust_colors(),
47 FS::UI::Web::cust_styles(),
54 LEFT JOIN cust_main USING ( custnum )
58 unless $FS::CurrentUser::CurrentUser->access_right('View customer tax exemptions');
62 #my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi);
63 #if ( $beginning || $ending ) {
64 # push @where, "_date >= $beginning",
69 if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
70 push @where, "agentnum = $1";
73 if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
74 push @where, "cust_main.custnum = $1";
77 #prospect active inactive suspended cancelled
78 if ( grep { $cgi->param('status') eq $_ } FS::cust_main->statuses() ) {
79 my $method = $cgi->param('status'). '_sql';
80 #push @where, $class->$method();
81 push @where, FS::cust_main->$method();
84 if ( $cgi->param('out') ) {
88 SELECT COUNT(*) FROM cust_main_county AS county_out
89 WHERE ( county_out.county = cust_main.county
90 OR ( county_out.county IS NULL AND cust_main.county = '' )
91 OR ( county_out.county = '' AND cust_main.county IS NULL)
92 OR ( county_out.county IS NULL AND cust_main.county IS NULL)
94 AND ( county_out.state = cust_main.state
95 OR ( county_out.state IS NULL AND cust_main.state = '' )
96 OR ( county_out.state = '' AND cust_main.state IS NULL )
97 OR ( county_out.state IS NULL AND cust_main.state IS NULL )
99 AND county_out.country = cust_main.country
100 AND county_out.tax > 0
104 } elsif ( $cgi->param('country' ) ) {
106 my $county = dbh->quote( $cgi->param('county') );
107 my $state = dbh->quote( $cgi->param('state') );
108 my $country = dbh->quote( $cgi->param('country') );
109 push @where, "( county = $county OR $county = '' )",
110 "( state = $state OR $state = '' )",
111 " country = $country";
112 push @where, 'taxclass = '. dbh->quote( $cgi->param('taxclass') )
113 if $cgi->param('taxclass');
117 my $where = scalar(@where) ? 'WHERE '.join(' AND ', @where) : '';
119 my $count_query = "SELECT COUNT(*), SUM(amount)".
120 " FROM cust_tax_exempt $join_cust $where";
123 'table' => 'cust_tax_exempt',
124 'addl_from' => $join_cust,
126 'select' => join(', ',
129 FS::UI::Web::cust_sql_fields(),
131 'extra_sql' => $where,
134 my $clink = [ "${p}view/cust_main.cgi?", 'custnum' ];
136 my $conf = new FS::Conf;
137 my $money_char = $conf->config('money_char') || '$';