使用Dynamics CRM中的Alexa CRM工具包获取特定联系人的所有发票

时间:2018-01-25 14:55:41

标签: php dynamics-crm dynamics-365 alexacrm-toolkit

我正在使用AlexaCRM Toolkit for Dynamics 365,我正在编写脚本,为我提供特定联系人的所有发票的结果,以下脚本显示最后十个发票,但针对不同的联系人。

$invoices = $service->retrieveMultipleEntities("invoice", $allPages = false, $pagingCookie = null, $limitCount = 10, $pageNumber = 1, $simpleMode = false);
foreach ($invoices->Entities as $invoice) {

  echo 'ID : ' . $invoice->ID . '<br>';
  echo 'Name :' . $invoice->name. '<br>';

  }

目标是仅获取与特定联系人相关的发票。

2 个答案:

答案 0 :(得分:1)

亲爱的@Arun感谢您的互动,我使用了retrieveMultiple并构建了一个FetchXML查询来获取所有相对发票这是代码

$queryXML = "<fetch mapping='logical'>
                        <entity name='invoice'>
                            <all-attributes />
                            <link-entity name='contact' from='contactid' to='customerid'  alias='C'>
                                <filter type='and'> 
                                    <condition attribute='contactid' operator='eq' value='$contact->id' /> 
                                </filter> 
                           </link-entity>   
            </entity>
        </fetch>";

$invoices = $service->retrieveMultiple($queryXML, false);

答案 1 :(得分:0)

Contact(lookup)是Invoice实体记录中的外键GUID。如果不过滤您要查找的联系人值,查询将从最顶层随机发送10个发票。

尝试在代码中设置WHERE条件。

例如: 要通过其emailaddress1属性过滤联系人,github中的示例如下所示:

$contactKey = new \AlexaCRM\CRMToolkit\KeyAttributes();
$contactKey->add( 'emailaddress1', $contactKeyValue );

另一个引用this的示例,您可以执行以下操作来过滤特定的父联系人。

/* Check the ID or AlexaCRM\CRMToolkit\KeyAttributes to retrieve the entity values */
            if ($IDorKeyAttributes != null) {
                /* Set EntityValues if specified Entity ID */
                if (is_string($IDorKeyAttributes) && self::isGuid($IDorKeyAttributes)) {
                    /* Set the ID of Entity record */
                    $this->setID($IDorKeyAttributes);
                    /* Get the raw XML data */
                    $rawSoapResponse = $this->client->retrieveRaw($this, $columnSet);
                    /* NOTE: ParseRetrieveResponse method of AlexaCRM\CRMToolkit\AlexaSDK_Entity class, not the AlexaCRM\CRMToolkit\AlexaSDK class */
                    $this->parseRetrieveResponse($this->client, $this->LogicalName, $rawSoapResponse);
                } else {
                    if ($IDorKeyAttributes instanceof KeyAttributes) {
                        if (version_compare($this->client->organizationVersion, "7.1.0", "<")) {
                            throw new Exception('Entity ID must be a valid GUID for the organization version lower then 7.1.0');
                        }
                        /* Set the keyAttributes array */
                        $this->keyAttributes = $IDorKeyAttributes;
                        /* Add the KeyAttribute values to the entity object values */
                        foreach ($IDorKeyAttributes->getKeys() as $key => $attribute) {
                            $this->propertyValues[$key] = array("Value" => $attribute, "Changed" => true);
                        }
                        /* Get the raw XML data */
                        try {
                            $rawSoapResponse = $this->client->retrieveRaw($this, $columnSet);
                            /* NOTE: ParseRetrieveResponse method of AlexaCRM\CRMToolkit\AlexaSDK_Entity class, not the AlexaCRM\CRMToolkit\AlexaSDK class */
                            $this->parseExecuteRetrieveResponse($this->client, $this->LogicalName, $rawSoapResponse);
                        } catch (SoapFault $sf) {
                            $errorCode = $sf->faultcode;
                            // undocumented feature
                            if ($errorCode == '-2147088239') {
                                $this->exists = false;
                            }
                            /* ToDo: Return exception with user-friendly details, maybe KeyAttribute parameters invalid */
                        }
                    }
                }
            }

注意:我不是一个php人,帮助你做一些研究。