usability: customer tags with checkboxes instead of a select-multiple (fix advanced...
[freeside.git] / httemplate / search / cust_main.html
index c0292aa..b0ce31a 100755 (executable)
@@ -41,8 +41,10 @@ my %search_hash = ();
 
 #scalars
 my @scalars = qw (
-  agentnum salesnum status address zip paydate_year paydate_month invoice_terms
-  no_censustract with_geocode with_email POST no_POST
+  agentnum salesnum status
+  address city county state zip country location_history
+  invoice_terms
+  no_censustract with_geocode with_email tax no_tax POST no_POST
   custbatch usernum
   cancelled_pkgs
   cust_fields flattened_pkgs
@@ -57,10 +59,17 @@ for my $param ( @scalars ) {
 }
 
 #lists
-for my $param (qw( classnum refnum payby tagnum pkg_classnum )) {
+for my $param (qw( classnum refnum pkg_classnum )) {
   $search_hash{$param} = [ $cgi->param($param) ];
 }
 
+#tags
+my $params = $cgi->Vars;
+$search_hash{'tagnum'} = [
+  map { /^tagnum(\d+)/ && $1 }
+    grep { /^tagnum(\d+)/ && $cgi->param($_) } keys %$params
+];
+
 ###
 # parse dates
 ###