finish adding a feature to easily list all email addresses for an agent & send them...
[freeside.git] / httemplate / search / cust_main.html
1 <% include( 'elements/search.html',
2                   'title'       => 'Customer Search Results', 
3                   'menubar'     => $menubar,
4                   'name'        => 'customers',
5                   'query'       => $sql_query,
6                   'count_query' => $count_query,
7                   'header'      => [ FS::UI::Web::cust_header(
8                                        $cgi->param('cust_fields')
9                                      ),
10                                      @extra_headers,
11                                    ],
12                   'fields'      => [
13                     \&FS::UI::Web::cust_fields,
14                     @extra_fields,
15                   ],
16                   'color'       => [ FS::UI::Web::cust_colors(),
17                                      map '', @extra_fields
18                                    ],
19                   'style'       => [ FS::UI::Web::cust_styles(),
20                                      map '', @extra_fields
21                                    ],
22                   'align'       => [ FS::UI::Web::cust_aligns(),
23                                      map '', @extra_fields
24                                    ],
25                   'links'       => [ ( map { $_ ne 'Cust. Status' ? $link : '' }
26                                            FS::UI::Web::cust_header(
27                                                       $cgi->param('cust_fields')
28                                                                    )
29                                      ),
30                                      map '', @extra_fields
31                                    ],
32               )
33 %>
34 <%init>
35
36 die "access denied"
37   unless ( $FS::CurrentUser::CurrentUser->access_right('List customers') &&
38            $FS::CurrentUser::CurrentUser->access_right('List packages')
39          );
40
41 my %search_hash = ();
42
43 #$search_hash{'query'} = $cgi->keywords;
44
45 #scalars
46 for my $param (qw( agentnum status cancelled_pkgs cust_fields flattened_pkgs)) {
47   $search_hash{$param} = scalar( $cgi->param($param) )
48     if $cgi->param($param);
49 }
50
51 #lists
52 for my $param (qw( payby )) {
53   $search_hash{$param} = [ $cgi->param($param) ]
54     if $cgi->param($param);
55 }
56
57 ###
58 # parse dates
59 ###
60
61 foreach my $field (qw( signupdate )) {
62
63   my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi, $field);
64
65   next if $beginning == 0 && $ending == 4294967295;
66        #or $disable{$cgi->param('status')}->{$field};
67
68   $search_hash{$field} = [ $beginning, $ending ];
69
70 }
71
72 ##
73 # amounts
74 ##
75
76 $search_hash{'current_balance'} =
77   [ FS::UI::Web::parse_lt_gt($cgi, 'current_balance') ];
78
79 ###
80 # etc
81 ###
82
83 my $sql_query = FS::cust_main->search_sql(\%search_hash);
84 my $count_query   = delete($sql_query->{'count_query'});
85 my @extra_headers = @{ delete($sql_query->{'extra_headers'}) };
86 my @extra_fields  = @{ delete($sql_query->{'extra_fields'})  };
87
88 my $link = [ "${p}view/cust_main.cgi?", 'custnum' ];
89
90 ###
91 # email links
92 ###
93
94 my $menubar = [];
95
96 if ( $FS::CurrentUser::CurrentUser->access_right('Bulk send customer notices') ) {
97
98   my $uri = new URI::URL;
99   $uri->query_form( \%search_hash );
100   my $query = $uri->query;
101
102   push @$menubar, 'Email a notice to these customers' =>
103                     "${p}misc/email-customers.html?$query",
104
105 }
106
107 </%init>