When converting a lead, the business guys wanted to add in the Account Industry and Account Type to the convert section.
They also wanted the Opportunity Type added to the Opportunity section.
I got the Opportunity part done ok, but the Account section is not working yet, using the same approach.
I edited modules/Account/AccountFormBase.php and added the following code, however it is not populating the drop down fields. Any ideas?
<tr>
<td nowrap class="dataLabel">Type: <span class="required">${lbl_required_symbol}</span></td>
</tr>
<tr>
<td nowrap class="dataField"><select name='{$prefix}account_type'>
EOQ;
$form .= get_select_options_with_id($app_list_strings['account_type_dom'], "");
$form .= <<<EOQ
</select></td>
</tr>
<tr>
<td nowrap class="dataLabel">Industry: <span class="required">${lbl_required_symbol}</span></td>
</tr>
<tr>
<td nowrap class="dataField"><select name='{$prefix}industry'>
EOQ;
$form .= get_select_options_with_id($app_list_strings['industry_dom'], "");
$form .= <<<EOQ
</select></td>
</tr>


LinkBack URL
About LinkBacks



Reply With Quote
Bookmarks