diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-08-23 23:10:52 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-08-23 23:10:52 -0700 |
commit | 23f2db6452f097640447b9b35dd106f408dbc20b (patch) | |
tree | 4a64133267a9dd546e869f8936a0652af6af79f5 /httemplate/search/cust_main.html | |
parent | 5fa459e35a04b69cbdc6b5b938eabcbc1bac6c74 (diff) |
continue sales person work: customer and package selection, commissions, reporting. RT#23402
Diffstat (limited to 'httemplate/search/cust_main.html')
-rwxr-xr-x | httemplate/search/cust_main.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/search/cust_main.html b/httemplate/search/cust_main.html index 24348ff8a..66a3a9825 100755 --- a/httemplate/search/cust_main.html +++ b/httemplate/search/cust_main.html @@ -41,7 +41,7 @@ my %search_hash = (); #scalars my @scalars = qw ( - agentnum status address zip paydate_year paydate_month invoice_terms + agentnum salesnum status address zip paydate_year paydate_month invoice_terms no_censustract with_geocode with_email POST no_POST custbatch usernum cancelled_pkgs @@ -51,7 +51,7 @@ my @scalars = qw ( for my $param ( @scalars ) { $search_hash{$param} = scalar( $cgi->param($param) ) - if $cgi->param($param); + if length($cgi->param($param)); } #lists |