本文整理汇总了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++) {