combine ticket notification scrips, #15353
[freeside.git] / httemplate / search / cust_tax_exempt.cgi
1 <% include( 'elements/search.html',
2                  'title'       => 'Legacy tax exemptions',
3                  'name'        => 'legacy tax exemptions',
4                  'query'       => $query,
5                  'count_query' => $count_query,
6                  'count_addl'  => [ $money_char. '%.2f total', ],
7                  'header'      => [
8                    '#',
9                    'Month',
10                    'Inserted',
11                    'Amount',
12                    FS::UI::Web::cust_header(),
13                  ],
14                  'fields'      => [
15                    'exemptnum',
16                    sub { $_[0]->month. '/'. $_[0]->year; },
17                    sub { my $h = $_[0]->h_search('insert');
18                          $h ? time2str('%L/%d/%Y', $h->history_date ) : ''
19                        },
20                    sub { $money_char. $_[0]->amount; },
21
22                    \&FS::UI::Web::cust_fields,
23                  ],
24                  'links'       => [
25                    '',
26                    '',
27                    '',
28                    '',
29
30                    ( map { $_ ne 'Cust. Status' ? $clink : '' }
31                          FS::UI::Web::cust_header()
32                    ),
33                  ],
34                  'align' => 'rrrr'.FS::UI::Web::cust_aligns(),
35                  'color' => [ 
36                               '',
37                               '',
38                               '',
39                               '',
40                               FS::UI::Web::cust_colors(),
41                             ],
42                  'style' => [ 
43                               '',
44                               '',
45                               '',
46                               '',
47                               FS::UI::Web::cust_styles(),
48                             ],
49            )
50 %>
51 <%init>
52
53 my $join_cust = "
54     LEFT JOIN cust_main USING ( custnum )
55 ";
56
57 die "access denied"
58   unless $FS::CurrentUser::CurrentUser->access_right('View customer tax exemptions');
59
60 my @where = ();
61
62 #my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi);
63 #if ( $beginning || $ending ) {
64 #  push @where, "_date >= $beginning",
65 #               "_date <= $ending";
66 #               #"payby != 'COMP';
67 #}
68
69 if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
70   push @where, "agentnum = $1";
71 }
72
73 if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
74   push @where,  "cust_main.custnum = $1";
75 }
76
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();
82 }
83
84 if ( $cgi->param('out') ) {
85
86   push @where, "
87     0 = (
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)
93             )
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 )
98             )
99         AND county_out.country = cust_main.country
100         AND county_out.tax > 0
101     )
102   ";
103
104 } elsif ( $cgi->param('country' ) ) {
105
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');
114
115 }
116
117 my $where = scalar(@where) ? 'WHERE '.join(' AND ', @where) : '';
118
119 my $count_query = "SELECT COUNT(*), SUM(amount)".
120                   "  FROM cust_tax_exempt $join_cust $where";
121
122 my $query = {
123   'table'     => 'cust_tax_exempt',
124   'addl_from' => $join_cust,
125   'hashref'   => {},
126   'select'    => join(', ',
127                    'cust_tax_exempt.*',
128                    'cust_main.custnum',
129                    FS::UI::Web::cust_sql_fields(),
130                  ),
131   'extra_sql' => $where,
132 };
133
134 my $clink = [ "${p}view/cust_main.cgi?", 'custnum' ];
135
136 my $conf = new FS::Conf;
137 my $money_char = $conf->config('money_char') || '$';
138
139 </%init>