This commit was generated by cvs2svn to compensate for changes in r12472,
[freeside.git] / httemplate / search / cust_main.html
1 <& elements/search.html,
2                   'title'       => emt('Customer Search Results'), 
3                   'menubar'     => $menubar,
4                   'name'        => emt('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 <%init>
34
35 die "access denied"
36   unless ( $FS::CurrentUser::CurrentUser->access_right('List customers') &&
37            $FS::CurrentUser::CurrentUser->access_right('List packages')
38          );
39
40 my %search_hash = ();
41
42 #$search_hash{'query'} = $cgi->keywords;
43
44 #scalars
45 my @scalars = qw (
46   agentnum status address paydate_year paydate_month invoice_terms
47   no_censustract with_geocode custbatch usernum
48   cancelled_pkgs
49   cust_fields flattened_pkgs
50 );
51
52 for my $param ( @scalars ) {
53   $search_hash{$param} = scalar( $cgi->param($param) )
54     if $cgi->param($param);
55 }
56
57 #lists
58 for my $param (qw( classnum payby tagnum )) {
59   $search_hash{$param} = [ $cgi->param($param) ];
60 }
61
62 ###
63 # parse dates
64 ###
65
66 foreach my $field (qw( signupdate )) {
67
68   my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi, $field);
69
70   next if $beginning == 0 && $ending == 4294967295 && !defined($cgi->param('signuphour'));
71        #or $disable{$cgi->param('status')}->{$field};
72
73   $search_hash{$field} = [ $beginning, $ending, $cgi->param('signuphour') ];
74
75 }
76
77 ##
78 # amounts
79 ##
80
81 $search_hash{'current_balance'} =
82   [ FS::UI::Web::parse_lt_gt($cgi, 'current_balance') ];
83
84 ###
85 # etc
86 ###
87
88 my $sql_query = FS::cust_main::Search->search(\%search_hash);
89 my $count_query   = delete($sql_query->{'count_query'});
90 my @extra_headers = @{ delete($sql_query->{'extra_headers'}) };
91 my @extra_fields  = @{ delete($sql_query->{'extra_fields'})  };
92
93 my $link = [ "${p}view/cust_main.cgi?", 'custnum' ];
94
95 ###
96 # email links
97 ###
98
99 my $menubar = [];
100
101 if ( $FS::CurrentUser::CurrentUser->access_right('Bulk send customer notices') ) {
102
103   my $uri = new URI;
104   $uri->query_form( \%search_hash );
105   my $query = $uri->query;
106
107   push @$menubar, emt('Email a notice to these customers') =>
108                     "${p}misc/email-customers.html?table=cust_main&$query",
109
110 }
111
112 </%init>