customer import: add progress bar & redirect to a search of the imported customers...
[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(
47   agentnum status cancelled_pkgs cust_fields flattened_pkgs custbatch
48 )) {
49   $search_hash{$param} = scalar( $cgi->param($param) )
50     if $cgi->param($param);
51 }
52
53 #lists
54 for my $param (qw( payby )) {
55   $search_hash{$param} = [ $cgi->param($param) ]
56     if $cgi->param($param);
57 }
58
59 ###
60 # parse dates
61 ###
62
63 foreach my $field (qw( signupdate )) {
64
65   my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi, $field);
66
67   next if $beginning == 0 && $ending == 4294967295;
68        #or $disable{$cgi->param('status')}->{$field};
69
70   $search_hash{$field} = [ $beginning, $ending ];
71
72 }
73
74 ##
75 # amounts
76 ##
77
78 $search_hash{'current_balance'} =
79   [ FS::UI::Web::parse_lt_gt($cgi, 'current_balance') ];
80
81 ###
82 # etc
83 ###
84
85 my $sql_query = FS::cust_main->search_sql(\%search_hash);
86 my $count_query   = delete($sql_query->{'count_query'});
87 my @extra_headers = @{ delete($sql_query->{'extra_headers'}) };
88 my @extra_fields  = @{ delete($sql_query->{'extra_fields'})  };
89
90 my $link = [ "${p}view/cust_main.cgi?", 'custnum' ];
91
92 ###
93 # email links
94 ###
95
96 my $menubar = [];
97
98 if ( $FS::CurrentUser::CurrentUser->access_right('Bulk send customer notices') ) {
99
100   my $uri = new URI::URL;
101   $uri->query_form( \%search_hash );
102   my $query = $uri->query;
103
104   push @$menubar, 'Email a notice to these customers' =>
105                     "${p}misc/email-customers.html?$query",
106
107 }
108
109 </%init>