我正在使用Alexa-php-toolkit for Dynamics 365 https://github.com/AlexaCRM/php-crm-toolkit,使用此功能我可以成功创建新联系人,但我无法在联系人中添加帐户名称,当我尝试时出现此错误:< / p>
注意:无法在第263行的../vendor/alexacrm/php-crm-toolkit/src/Entity.php中设置联系实体的属性。
这是我的剧本。
<?php
//URL: https://github.com/AlexaCRM/php-crm-toolkit
/**
* Use init.php if you didn't install the package via Composer
*/
use AlexaCRM\CRMToolkit\Client as OrganizationService;
use AlexaCRM\CRMToolkit\Settings;
require_once '../vendor/autoload.php';
require_once '../vendor/alexacrm/php-crm-toolkit/init.php';
require_once 'config.php';
require_once 'includes/db.php';
$db = new DB();
$options = getAuth();
$serviceSettings = new Settings( $options );
$service = new OrganizationService( $serviceSettings );
$accountId = 'a2536507-018d-e711-8115-c4346bac0a5f';
// create a new contact
$contact = $service->entity( 'contact' );
$contact->accountid = $accountId;
$contact->firstname = 'Test';
$contact->lastname = 'Contact12';
$contact->jobtitle = 'Business Analyst';
$contact->mobilephone = '1002345679';
$contact->fax = '9902345679';
$contact->emailaddress1 = 'john.doe1@example.com';
$contact->address1_line1 = '119 Cambridge';
$contact->address1_line2 = 'Apt 22';
$contact->address1_city = 'Houston';
$contact->address1_stateorprovince = 'TX';
$contact->address1_postalcode = '77009';
$contact->address1_country = 'US';
$contactId = $contact->create();
echo $contactId;
?>
答案 0 :(得分:1)
问题中有这一行代码:
$contact->accountid = $accountId;
首先,联系人的父帐户会保存在parentcustomerid
的{{1}}字段中。
字段accountid
和parentcontactid
有助于在后台处理此问题,但通常无法使用。您需要使用parentcustomerid
字段。
其次,使用查找(外键)时的另一个问题是您需要传递实体类型(表名)。
正确的代码可能如下所示:
$accountRef = $client->entity( 'account' );
$accountRef->ID = $accountId;
$contact->parentcustomerid = $accountRef;
或
$contact->parentcustomerid = new EntityReference( 'account', $accountId );
这些示例取自special lookup field that can store link to both account or contact entity,经过调整但未经过测试。我希望它是工作示例,而不是功能请求。