combine ticket notification scrips, #15353
[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     LEFT JOIN cust_main USING ( custnum )
87 ";
88
89 my $join_pkg = "
90     LEFT JOIN cust_pkg USING ( pkgnum )
91     LEFT JOIN part_pkg USING ( pkgpart )
92 ";
93
94 my $join = "
95     JOIN cust_bill_pkg USING ( billpkgnum )
96     $join_cust
97     $join_pkg
98 ";
99
100 </%once>
101 <%init>
102
103 die "access denied"
104   unless $FS::CurrentUser::CurrentUser->access_right('View customer tax exemptions');
105
106 my @where = ();
107
108 my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi);
109 if ( $beginning || $ending ) {
110   push @where, "_date >= $beginning",
111                "_date <= $ending";
112                #"payby != 'COMP';
113 }
114
115 if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
116   push @where, "cust_main.agentnum = $1";
117 }
118
119 if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
120   push @where,  "cust_main.custnum = $1";
121 }
122
123 if ( $cgi->param('out') ) {
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 }
155
156 my $where = scalar(@where) ? 'WHERE '.join(' AND ', @where) : '';
157
158 my $count_query = "SELECT COUNT(*), SUM(amount)".
159                   "  FROM cust_tax_exempt_pkg $join $where";
160
161 my $query = {
162   'table'     => 'cust_tax_exempt_pkg',
163   'addl_from' => $join,
164   'hashref'   => {},
165   'select'    => join(', ',
166                    'cust_tax_exempt_pkg.*',
167                    'cust_bill_pkg.*',
168                    'cust_bill.*',
169                    'part_pkg.pkg',
170                    'cust_main.custnum',
171                    FS::UI::Web::cust_sql_fields(),
172                  ),
173   'extra_sql' => $where,
174 };
175
176 my $ilink = [ "${p}view/cust_bill.cgi?", 'invnum' ];
177 my $clink = [ "${p}view/cust_main.cgi?", 'custnum' ];
178
179 my $conf = new FS::Conf;
180 my $money_char = $conf->config('money_char') || '$';
181
182 </%init>