1

我正在使用https://github.com/AlexaCRM/php-crm-toolkit将数据从表单发送到 CRM 中的实体。

使用普通字段没关系,但是当我想添加“new_produit_demande”时会出错,因为该字段已分配给另一个实体(“new_produituic”)和(“contact”)

有什么建议么?

这是一些代码,它不起作用。

<?php 
 require 'autoload.php' ;
 use AlexaCRM\CRMToolkit\Client as OrganizationService;
 use AlexaCRM\CRMToolkit\Settings;
 $options = [
 'serverUrl' => 'https://xxxxx',
              'username' => 'xxxx',
              'password' => 'xxxx',
              'authMode' => 'xxx',

];
$serviceSettings = new Settings( $options );
$service = new OrganizationService( $serviceSettings );
$guid = 'd5bac140-b68b-e911-80cc-005056aa3849';
  $contact = $service->entity('contact');
$contact->firstname='product1';
$contact->new_produit_demande = new EntityReference('new_produituic',$guid);
$contactId = $contact->create();

错误:

致命错误:在第 29 行的 C:\xampp\htdocs\ccr\test.php 中找不到类 'EntityReference'

4

1 回答 1

1

您必须包含以下命名空间:

use AlexaCRM\CRMToolkit\Entity\EntityReference;
于 2019-06-13T16:54:48.397 回答