0

出于某种原因,所有其他数据都是由以下三行导入的,不要将数据添加到 ms crm 动态 2011?

我有三个字段 my_paid :两个选项(是 = 1;否 = 0) my_price :货币 my_date_paid :日期和时间

    <b:keyvaluepairofstringanytype>
        <c:key>my_paid</c:key>
        <c:value i:type="c:boolean">1</c:value>
    </b:keyvaluepairofstringanytype> 
    <b:keyvaluepairofstringanytype>
        <c:key>my_price</c:key>
        <c:value>' . $data->newprice . '</c:value>
    </b:keyvaluepairofstringanytype> 
    <b:keyvaluepairofstringanytype>
        <c:key>my_date_paid</c:key>
        <c:value i:type="d:dateTime" xmlns:d="http://www.w3.org/2001/XMLSchema">' . gmdate("Y-m-d\TH:i:s\Z", time()+10800) . '</c:value> 
    </b:keyvaluepairofstringanytype>
4

1 回答 1

1

我强烈建议您从 Dynamics CRM SDK 获取 SoapLogger,因为这将帮助您解决这些问题。

http://www.microsoft.com/en-us/download/details.aspx?id=24004

第一项应该是真/假而不是 1。

my_price 可能是 Money 列,其处理方式略有不同,并且您的 dateTime 看起来是正确的,因此它可能只是由于前两项。

下面是一个来自 'Quotes' 实体的示例,应该会有所帮助。

         <a:KeyValuePairOfstringanyType>
            <b:key>freightamount</b:key>
            <b:value i:type="a:Money">
               <a:Value>1</a:Value>
            </b:value>
         </a:KeyValuePairOfstringanyType>
         <a:KeyValuePairOfstringanyType>
            <b:key>effectivefrom</b:key>
            <b:value xmlns:c="http://www.w3.org/2001/XMLSchema" i:type="c:dateTime">2013-09-03T02:55:30Z</b:value>
         </a:KeyValuePairOfstringanyType>
         <a:KeyValuePairOfstringanyType>
            <b:key>willcall</b:key>
            <b:value xmlns:c="http://www.w3.org/2001/XMLSchema" i:type="c:boolean">false</b:value>
         </a:KeyValuePairOfstringanyType>
于 2013-09-03T00:01:14.913 回答