I want to create a call list from my leads and contacts - that excludes the records marked 'do not call'
I can create a list of all the 'do not call' but not the reverse.
Thanks for any help that can be provided here.
I want to create a call list from my leads and contacts - that excludes the records marked 'do not call'
I can create a list of all the 'do not call' but not the reverse.
Thanks for any help that can be provided here.
You have to replace the checkbox by a dropdown list in the searchform of your module : <select name='opp_valide_c' >{do_not_call_dom}</select>
In the sudio create a dropdown with the name 'do_not_call_dom' and this value :
'' => '',
'1' => 'Oui' ,
'unchecked' => 'Non'
In the metadata/SearchFields.php file replace the line of do_not_call :
'do_not_call'=> array('query_type'=>'default', 'input_type' => 'checkbox', 'operator'=>'='),
by
'do_not_call'=> array('query_type'=>'default','operator'=>'=', 'options'=>'do_not_call_dom', 'template_var' => 'do_not_call_dom'),
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks