From: ivan Date: Mon, 24 Jul 2006 22:40:37 +0000 (+0000) Subject: fix up smart searching to make the quick payment entry behave better X-Git-Tag: BEFORE_RT_3_4_5^2~59 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=c4dd2593a5cf5c4463a9180fbc5aef1f2c76f6e2;p=freeside.git fix up smart searching to make the quick payment entry behave better --- diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index 2b9564442..f4568a8a0 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -3866,6 +3866,11 @@ sub smart_search { } elsif ( $search =~ /^\s*(\S.*\S)\s*$/ ) { #value search my $value = lc($1); + + # remove "(Last, First)" in "Company (Last, First"), otherwise the + # full strings the browser remembers won't work + $value =~ s/\([\w \,\.\-\']*\)$//; #false laziness w/Record::ut_name + my $q_value = dbh->quote($value); #exact @@ -3938,6 +3943,10 @@ sub smart_search { } + #eliminate duplicates + my %saw = (); + @cust_main = grep { !$saw{$_->custnum}++ } @cust_main; + } @cust_main;