RT 81913 - fixed error with batch email from advanced customer reports and contacts...
[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   invoice_terms
55   no_censustract with_geocode with_email tax no_tax POST no_POST
56   custbatch usernum
57   cancelled_pkgs
58   cust_fields flattened_pkgs
59   all_tags
60   all_pkg_classnums
61   any_pkg_status
62   with_referrals referral_status
63 );
64
65 for my $param ( @scalars ) {
66   $search_hash{$param} = scalar( $cgi->param($param) )
67     if length($cgi->param($param));
68 }
69
70 #lists
71 for my $param (qw( classnum refnum pkg_classnum )) {
72   $search_hash{$param} = [ $cgi->param($param) ];
73 }
74
75 my $params = $cgi->Vars;
76
77 #contacts
78 $search_hash{'contacts'} = {
79   map { $_ => $cgi->param($_), }
80     grep { /^(contacts_*)/ && $cgi->param($_) }
81       keys %$params
82 };
83
84 #tags
85 $search_hash{'tagnum'} = [
86   map { /^tagnum(\d+)/ && $1 }
87     grep { /^tagnum(\d+)/ && $cgi->param($_) }
88       keys %$params
89 ];
90
91 ###
92 # parse dates
93 ###
94
95 foreach my $field (qw( signupdate birthdate spouse_birthdate anniversary_date )) {
96
97   my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi, $field);
98
99   next if $beginning == 0 && $ending == 4294967295 && ( $field ne 'signupdate' || !defined($cgi->param('signuphour')) );
100        #or $disable{$cgi->param('status')}->{$field};
101
102   unless ( $field eq 'signupdate' ) {
103     $beginning -= 43200;
104     $ending    -= 43200;
105   }
106
107   my @ary = ( $beginning, $ending );
108   push @ary, scalar($cgi->param('signuphour')) if $field eq 'signupdate';
109
110   $search_hash{$field} = \@ary;
111
112 }
113
114 ##
115 # amounts
116 ##
117
118 $search_hash{'current_balance'} =
119   [ FS::UI::Web::parse_lt_gt($cgi, 'current_balance') ];
120
121 ###
122 # etc
123 ###
124
125 my $sql_query = FS::cust_main::Search->search(\%search_hash);
126 my $count_query = delete($sql_query->{'count_query'});
127 my @extra_headers     = @{ delete($sql_query->{'extra_headers'}) };
128 my @extra_fields      = @{ delete($sql_query->{'extra_fields'})  };
129 my @extra_sort_fields = @{ delete($sql_query->{'extra_sort_fields'})  };
130
131 my $link = [ "${p}view/cust_main.cgi?", 'custnum' ];
132
133 my $referral_link = [ "${p}search/cust_main.cgi?referral_custnum=", 'custnum' ];
134
135 ###
136 # email links
137 ###
138
139 my $menubar = [];
140
141 if ( $FS::CurrentUser::CurrentUser->access_right('Bulk send customer notices') ) {
142
143   # URI::query_from does not support hashref
144   #   results in: ...&contacts=HASH(0x55e16cb81da8)&...
145   my %query_hash = %search_hash;
146   foreach (keys %{$query_hash{contacts}}) { $query_hash{$_} = $query_hash{contacts}{$_}; }
147
148   delete $query_hash{contacts}
149     if exists $query_hash{contacts} && ref $query_hash{contacts};
150
151   my $uri = new URI;
152   $uri->query_form( \%query_hash );
153   my $query = $uri->query;
154
155   push @$menubar, emt('Email a notice to these customers') =>
156                     "${p}misc/email-customers.html?table=cust_main&$query",
157
158 }
159
160 </%init>