RT# 77532 - can search cust main phone numbers in advanced customer search
[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                   'sort_fields' => [
17                     FS::UI::Web::cust_sort_fields(),
18                     @extra_sort_fields,
19                   ],
20                   'color'       => [ FS::UI::Web::cust_colors(),
21                                      map '', @extra_fields
22                                    ],
23                   'style'       => [ FS::UI::Web::cust_styles(),
24                                      map '', @extra_fields
25                                    ],
26                   'align'       => [ FS::UI::Web::cust_aligns(),
27                                      map '', @extra_fields
28                                    ],
29                   'links'       => [ ( map { $_ ne 'Cust. Status' ? $link : '' }
30                                            FS::UI::Web::cust_header(
31                                                       $cgi->param('cust_fields')
32                                                                    )
33                                      ),
34                                      map  { $_ eq 'num_referrals'
35                                               ? $referral_link
36                                               : ''
37                                           }
38                                        @extra_fields
39                                    ],
40 &>
41 <%init>
42
43 die "access denied"
44   unless $FS::CurrentUser::CurrentUser->access_right('Advanced customer search');
45
46 my %search_hash = ();
47
48 #$search_hash{'query'} = $cgi->keywords;
49
50 #scalars
51 my @scalars = qw (
52   agentnum salesnum status
53   address city county state zip country location_history
54   daytime night mobile
55   paydate_year paydate_month invoice_terms
56   no_censustract with_geocode with_email tax no_tax POST no_POST
57   custbatch usernum
58   cancelled_pkgs
59   cust_fields flattened_pkgs
60   all_tags
61   all_pkg_classnums
62   any_pkg_status
63   with_referrals referral_status
64 );
65
66 for my $param ( @scalars ) {
67   $search_hash{$param} = scalar( $cgi->param($param) )
68     if length($cgi->param($param));
69 }
70
71 #lists
72 for my $param (qw( classnum refnum payby tagnum pkg_classnum )) {
73   $search_hash{$param} = [ $cgi->param($param) ];
74 }
75
76 my $params = $cgi->Vars;
77
78 #contacts
79 $search_hash{'contacts'} = {
80   map { $_ => $cgi->param($_), }
81     grep { /^(contacts_*)/ && $cgi->param($_) }
82       keys %$params
83 };
84
85 ###
86 # parse dates
87 ###
88
89 foreach my $field (qw( signupdate birthdate spouse_birthdate anniversary_date )) {
90
91   my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi, $field);
92
93   next if $beginning == 0 && $ending == 4294967295 && ( $field ne 'signupdate' || !defined($cgi->param('signuphour')) );
94        #or $disable{$cgi->param('status')}->{$field};
95
96   unless ( $field eq 'signupdate' ) {
97     $beginning -= 43200;
98     $ending    -= 43200;
99   }
100
101   my @ary = ( $beginning, $ending );
102   push @ary, scalar($cgi->param('signuphour')) if $field eq 'signupdate';
103
104   $search_hash{$field} = \@ary;
105
106 }
107
108 ##
109 # amounts
110 ##
111
112 $search_hash{'current_balance'} =
113   [ FS::UI::Web::parse_lt_gt($cgi, 'current_balance') ];
114
115 ###
116 # etc
117 ###
118
119 my $sql_query = FS::cust_main::Search->search(\%search_hash);
120 my $count_query = delete($sql_query->{'count_query'});
121 my @extra_headers     = @{ delete($sql_query->{'extra_headers'}) };
122 my @extra_fields      = @{ delete($sql_query->{'extra_fields'})  };
123 my @extra_sort_fields = @{ delete($sql_query->{'extra_sort_fields'})  };
124
125 my $link = [ "${p}view/cust_main.cgi?", 'custnum' ];
126
127 my $referral_link = [ "${p}search/cust_main.cgi?referral_custnum=", 'custnum' ];
128
129 ###
130 # email links
131 ###
132
133 my $menubar = [];
134
135 if ( $FS::CurrentUser::CurrentUser->access_right('Bulk send customer notices') ) {
136
137   # URI::query_from does not support hashref
138   #   results in: ...&contacts=HASH(0x55e16cb81da8)&...
139   my %query_hash = %search_hash;
140   foreach (keys %{$query_hash{contacts}}) { $query_hash{$_} = $query_hash{contacts}{$_}; }
141
142   delete $query_hash{contacts}
143     if exists $query_hash{contacts} && ref $query_hash{contacts};
144
145   my $uri = new URI;
146   $uri->query_form( \%query_hash );
147   my $query = $uri->query;
148
149   push @$menubar, emt('Email a notice to these customers') =>
150                     "${p}misc/email-customers.html?table=cust_main&$query",
151
152 }
153
154 ###
155 # agent transfer link
156 ###
157
158 my $agent_transfer_link = include('/elements/agent_transfer_link.html', {
159      'search' => \%search_hash,
160 });
161 push @$menubar, emt('popup') => '<div style="display:inline-block">'.$agent_transfer_link.'</div>';
162
163 </%init>