diff options
Diffstat (limited to 'httemplate/search')
-rwxr-xr-x | httemplate/search/cust_main.html | 5 | ||||
-rwxr-xr-x | httemplate/search/report_cust_main.html | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/httemplate/search/cust_main.html b/httemplate/search/cust_main.html index f098fd3a6..186467e00 100755 --- a/httemplate/search/cust_main.html +++ b/httemplate/search/cust_main.html @@ -54,9 +54,8 @@ for my $param ( @scalars ) { } #lists -for my $param (qw( payby )) { - $search_hash{$param} = [ $cgi->param($param) ] - if $cgi->param($param); +for my $param (qw( classnum payby )) { + $search_hash{$param} = [ $cgi->param($param) ]; } ### diff --git a/httemplate/search/report_cust_main.html b/httemplate/search/report_cust_main.html index f139d4bb5..92df58cfb 100755 --- a/httemplate/search/report_cust_main.html +++ b/httemplate/search/report_cust_main.html @@ -20,6 +20,13 @@ ) %> + <% include( '/elements/tr-select-cust_class.html', + 'label' => 'Class', + 'multiple' => 1, + 'pre_options' => [ '' => '(none)' ], + 'all_selected' => 1, + ) + %> % foreach my $field (qw( signupdate )) { |