0

有人可以使用sugarcrm API/nusoap提供一个示例代码块来添加创建账户吗?然后将潜在客户链接到帐户?

我有一个添加潜在客户的示例函数,我可以看到如何创建帐户,但我看不到如何将潜在客户绑定到帐户,以模拟 Sugarcrm 帐户/子面板流程中的子面板流程。

谢谢

// Create a new Lead, return the SOAP result
function createLead($data)
{
    // Parse the data and store it into a name/value list
    // which will then pe passed on to Sugar via SOAP
    $name_value_list = array();
    foreach($data as $key => $value)
        array_push($name_value_list, array('name' => $key, 'value' => $value));

    // Fire the set_entry call to the Leads module
    $result = $this->soap->call('set_entry', array(
        'session' => $this->session,
        'module_name' => 'Leads',
        'name_value_list' => $name_value_list
    ));

    return $result;
}


$result = $sugar->createLead(array(
    'lead_source' => 'Web Site',
    'lead_source_description' => 'Inquiry form on the website',
    'lead_status' => 'New',
    'first_name' => $_POST['first_name'],
    'last_name' => $_POST['last_name'],
    'email1' => $_POST['email'],
    'description' => $_POST['message']
));
4

1 回答 1

0

您需要找到该帐户的 ID,并将该 ID 分配给 Lead Module 中的任何 account_id 字段名称。我之前遇到过一些类似的事情,我发现直接进入 Sugar 数据库更容易。因此,编写一个将返回帐户的语句,例如:SELECT id WHERE something_in_the_account_table = something else;

然后,您可以在 $result 数组中分配该 ID。我希望它有所帮助。我面前没有任何代码或文档,否则我会提供更多帮助。

于 2013-07-30T04:09:38.067 回答