當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Opportunity::set_relationship方法代碼示例

本文整理匯總了PHP中Opportunity::set_relationship方法的典型用法代碼示例。如果您正苦於以下問題:PHP Opportunity::set_relationship方法的具體用法?PHP Opportunity::set_relationship怎麽用?PHP Opportunity::set_relationship使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Opportunity的用法示例。


在下文中一共展示了Opportunity::set_relationship方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: array

    // If the deal is already one, make the date closed occur in the past.
    if ($opp->sales_stage == "Closed Won" || $opp->sales_stage == "Closed Lost") {
        $opp->date_closed = create_past_date();
    }
    $key = array_rand($app_list_strings['opportunity_type_dom']);
    $opp->opportunity_type = $app_list_strings['opportunity_type_dom'][$key];
    $amount = array("10000", "25000", "50000", "75000");
    $key = array_rand($amount);
    $opp->amount = $amount[$key];
    $probability = array("10", "70", "40", "60");
    $key = array_rand($probability);
    $opp->probability = $probability[$key];
    $opp->save();
    $opportunity_ids[] = $opp->id;
    // Create a linking table entry to assign an account to the opportunity.
    $opp->set_relationship('accounts_opportunities', array('opportunity_id' => $opp->id, 'account_id' => $account->id), false);
}
$titles = array("President", "VP Operations", "VP Sales", "Director Operations", "Director Sales", "Mgr Operations", "IT Developer", "");
$account_max = count($account_ids) - 1;
$first_name_max = $first_name_count - 1;
$last_name_max = $last_name_count - 1;
$street_address_max = $street_address_count - 1;
$city_array_max = $city_array_count - 1;
$lead_source_max = count($app_list_strings['lead_source_dom']) - 1;
$lead_status_max = count($app_list_strings['lead_status_dom']) - 1;
$title_max = count($titles) - 1;
$lead_status_keys = array_keys($app_list_strings['lead_status_dom']);
$lead_source_keys = array_keys($app_list_strings['lead_source_dom']);
///////////////////////////////////////////////////////////////////////////////
////	DEMO CONTACTS
for ($i = 0; $i < $number_contacts; $i++) {
開發者ID:nerdystudmuffin,項目名稱:dashlet-subpanels,代碼行數:31,代碼來源:populateSeedData.php


注:本文中的Opportunity::set_relationship方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。