1 <% include( 'elements/search.html',
2 'title' => 'Zip code Search Results',
5 'count_query' => $count_sql,
6 'header' => [ 'Zip code', 'Customers', ],
7 #'fields' => [ 'zip', 'num_cust', ],
8 'links' => [ '', sub { 'somewhere'; } ],
14 unless $FS::CurrentUser::CurrentUser->access_right('List zip codes');
16 # XXX link to customers
22 if ( $cgi->param('status') =~ /^(prospect|uncancel|active|susp|cancel)$/ ) {
23 my $method = $1.'_sql';
24 push @where, FS::cust_main->$method();
28 # XXX this needs to be virtualized by agent too (like lots of stuff)
31 if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
33 push @where, "cust_main.agentnum = $agentnum";
38 if ( $cgi->param('svcdb') =~ /^(\w+)$/ ) {
40 push @where, "EXISTS( SELECT 1 FROM $svcdb LEFT JOIN cust_svc USING ( svcnum )
41 LEFT JOIN cust_pkg USING ( pkgnum )
42 WHERE cust_pkg.custnum = cust_main.custnum
46 my $where = scalar(@where) ? 'WHERE '. join(' AND ', @where) : '';
48 # bill zip vs ship zip
52 "CASE WHEN $field IS NULL THEN '' ELSE $field END";
57 "CASE WHEN $field is NULL
59 ELSE CASE WHEN $field LIKE '_____-____'
60 THEN SUBSTRING($field FROM 1 FOR 5)
67 if ( $cgi->param('column') eq 'ship_zip' ) {
70 "CASE WHEN ( ship_last IS NULL OR ship_last = '' ) THEN ";
72 $czip = "$casewhen_noship zip ELSE ship_zip END";
74 if ( $cgi->param('ignore_plus4') ) {
75 $zip = $casewhen_noship. strip_plus4('zip').
76 " ELSE ". strip_plus4('ship_zip'). ' END';
79 $zip = $casewhen_noship. fieldorempty('zip').
80 " ELSE ". fieldorempty('ship_zip'). ' END';
87 if ( $cgi->param('ignore_plus4') ) {
88 $zip = strip_plus4('zip');
90 $zip = fieldorempty('zip');
95 # construct the queries and send 'em off
98 "SELECT $zip AS zipcode,
103 ORDER BY num_cust DESC
106 my $count_sql = "select count(distinct $czip) from cust_main $where";