Hello,
Create a file custom/Extension/modules/Contacts/Ext/Vardefs/lead_status.php
Add following lines of code, change <YOUR_RNAME> to whatever field of leads you want to display
PHP Code:
$dictionary['Contact']['fields']['lead_stat'] =
array (
'name' => 'lead_stat',
'rname' => '<YOUR_RNAME>',
'id_name' => 'id',
'vname' => 'LBL_LEAD_STATUS',
'type' => 'relate',
'link' => 'leads',
'table' => 'leads',
'isnull' => 'true',
'module' => 'Leads',
'dbType' => 'varchar',
'source' => 'non-db',
);
Add the following code in custom/modules/Contacts/metadata/listviewdefs.php
PHP Code:
'LEAD_STAT' =>
array (
'default' => true,
'label' => 'LBL_LEAD_STATUS',
'width' => '10%',
),
Bookmarks