CRM 2011,使用JavaScript创建SalesOrderDetail

时间:2015-08-11 07:47:23

标签: javascript dynamics-crm-2011 webresource

我在使用WebResource在CRM 2011中使用JavaScript创建salesorderdetail时遇到了一些麻烦。

我尝试过使用XrmServiceToolkit(rest和soap)以及jquery。它们都失败了,我得到的错误信息并没有真正指向一个有意义的方向。

对于记录我正在使用XrmServiceToolkit在我的代码中检索和创建其他地方而没有任何问题。

我开始认为我要么缺少一些必需的属性,要么只是格式化不正确,并且服务器未能在错误消息中指出这一点。

以下是我发送的最后一个请求(使用jquery时)的示例:

    {
  "SalesOrderId":{
    "Id":"83b09bc4-162a-e511-9a7b-00155d39be02",
    "LogicalName":"salesorder"
  },
  "ProductId":{
    "Id":"dd194def-5756-e211-89c3-00155d19380e",
    "LogicalName":"product"
  },
  "PricePerUnit":{
    "Value":"0.00000"
  },
  "Description":"",
  "BaseAmount":{
    "Value":"0.00000"
  },
  "ManualDiscountAmount":{
    "Value":"0.00000"
  },
  "ExtendedAmount":{
    "Value":"0.00000"
  },
  "LineItemNumber":4,
  "Quantity":{
    "Value":"1.00000"
  },
  "TransactionCurrencyId":{
    "Id":"1f9b9e82-91fc-df11-b612-00155d193722",
    "LogicalName":"transactioncurrency"
  },
  "UoMId":{
    "Id":"79b6977d-a2af-42a0-8497-1a0238d629ac",
    "LogicalName":"uom"
  },
  "OwnerId":{
    "Id":"96a0f8e0-2ef7-e111-bfff-00155d19380e",
    "LogicalName":"systemuser"
  }
}

以前也有一个日期属性,但是我把它拿出来确保它不是原因。

我发送这样的请求(当使用jquery时):

$.ajax({
        type: "POST",
        contentType: "application/json; charset=utf-8",
        datatype: "json",
        url: odata_endpoint +"/SalesOrderDetailSet",
        data: JSON.stringify(object),
        beforeSend: function (XMLHttpRequest)
        {
            XMLHttpRequest.setRequestHeader("Accept", "application/json");
        },
        success: function (data, textStatus, XmlHttpRequest)
        {
            var created_record = data["d"];

            console.log("create success: " + JSON.stringify(created_record));
        },
        error: function (XmlHttpRequest, textStatus, errorThrown)
        {
            console.log("create failed: " + JSON.stringify(errorThrown));
        }
    });

在这种情况下,我收到此错误:属性值类型不正确System.Data.Services.Serializers.JsonReader + JsonObjectRecords。

我无法理解为什么这种情况一直在失败,所以如果有人能够对此嗤之以鼻,那将非常感谢,谢谢。

1 个答案:

答案 0 :(得分:3)

我认为它与数量字段有关。数量为十进制,因此您应该使用

Quantity: "1.0000"

而不是

  "Quantity":{
    "Value":"1.00000"
  },