使用节点js的糖crm加载多个类型的负载相关模块

时间:2016-09-14 10:28:33

标签: node.js sugarcrm

我是关于糖crm api的新手,我将它与节点js一起使用。我的问题是如何加载具有多对多的specefic的所有相关模块。

由于

1 个答案:

答案 0 :(得分:0)

如果您指的是加载记录的关系详细信息,您可以使用以下内容在SugarCRM中实现:

//Load Account
$bean = BeanFactory::getBean('Accounts', $id);

//If relationship is loaded
if ($bean->load_relationship('contacts'))
{
    //Fetch related beans
    $relatedBeans = $bean->contacts->getBeans();
}

API文档:https://support.sugarcrm.com/Documentation/Sugar_Developer/Sugar_Developer_Guide_7.6/API/Classes/SugarBean/Fetching_Relationships/