Where would you hard code a "%" wildcard into the Leads module for searches on an Account Name for 5.2?
I've found other references to this but they seem to apply to older versions.
Thanks for the help...
Where would you hard code a "%" wildcard into the Leads module for searches on an Account Name for 5.2?
I've found other references to this but they seem to apply to older versions.
Thanks for the help...
Hi Robinson
Actually what do you want to do?
Cheers
André Lopes
DevToolKit / Project of the Month - June 2009
Lampada Global Services- Open Source Solutions
Avenida Ipiranga, 318
Bloco B - CJ 1602
São Paulo, SP 01046-010
Brazil
Office: +55 11 3237-3110
Mobile: +55 11 7636-5859
e-mail: andre@lampadaglobal.com
Lampada Global delivers offshore software development and support services to customers around the world.
Lampada is proud to be a SugarCRM Gold Partner, revolutionizing Customer Relationship Management.
I DO NOT answer questions through PM and Email. If you need some help post your question into SugarForum.
I want to be able to search for an account in the Leads module for any instance of a string or partial string. Right now I am using the "%" to accomplish this.
I would like to hard code this into the search since most of my searches are done this way.
Thanks for the help...
Any updates? where you able to resolve this?
Check out include/SearchForm/SearchForm2.php and look around line 751 for the "case 'like'" area. You can add the wild card before and after the search string:
BTW - This isn't upgrade safe and will be lost on any upgrades so if you do this make sure to mark the code so that you can find any not-upgrade-safe code in the future. It'll save you many headaches!PHP Code:case 'like':
if($type == 'bool' && $field_value == 0) {
$where .= $db_field . " = '0' OR " . $db_field . " IS NULL";
}
else {
$where .= $db_field . " like '%".$field_value.$like_char."%'";
}
break;
Co-Founder of: SugarOutfitters
Modules:
SecuritySuite (Teams)
Photo Module
Follow me on Twitter:eggsurplus
Your Personal Developer
You are the Sugar Hero... didn't think it would be that easy. Works perfectly. Much Thanks!
Thanks eggsurplus! It works just great!
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks