0

アカウントの作成を追加するために、sugarcrm API/nusoap を使用して php のサンプル コード チャンクを提供できますか。見込み顧客をアカウントにリンクしますか?

リードを追加するサンプル関数があり、acct を作成する方法はわかりますが、リードを acct に結び付けて、sugarcrm acct/subpanel プロセスでサブパネル プロセスをシミュレートする方法はわかりません。

ありがとう

// 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