是否可以通过QBO API创建没有产品/服务价值的Salesreceipt?

时间:2016-05-27 07:11:42

标签: quickbooks intuit-partner-platform quickbooks-online

是否可以通过Salesreceipt API创建没有产品/服务价值的QBO?我尝试过API,但它不反映速率值并仅存储描述值。

如果我删除ItemRef属性(在请求正文中),那么它会反映费率和金额值,并且会分配一些默认和随机的产品/服务。

可以直接在QBO UI中使用。

Can create Salesreceipt without product/service in QBO direct UI

请求只包含描述值的正文:

{
  "TxnDate" : "2016-05-27", 
  "Line" : [ {    
   "Amount" : 2222.00,
    "Description" : "hi chk",
   "DetailType" : "ItemReceiptLineDetail",
    "ItemReceiptLineDetail" : {
      "ItemRef" : { },
      "Qty" : 1,
      "UnitPrice" : 2222
    }       }
      ],
  "CustomerRef" : {
    "value" : "67"
  },
  "CustomerMemo" : {
    "value" : "Thanks for your business!  We appreciate referrals!"
  },
  "TotalAmt": 2222.00,
  "PrivateNote" : "",
  "CustomField" : [ {
    "DefinitionId" : "1",
    "Type" : "StringType",
    "StringValue" : ""
  } ]

}

请求正文默认产品/服务分配:

{
  "TxnDate" : "2016-05-27", 
  "Line" : [ {    
   "Amount" : 2222.00,
    "Description" : "hi chk",
   "DetailType" : "ItemReceiptLineDetail",
    "ItemReceiptLineDetail" : {
      "Qty" : 1,
      "UnitPrice" : 2222
    }       }
      ],
  "CustomerRef" : {
    "value" : "67"
  },
  "CustomerMemo" : {
    "value" : "Thanks for your business!  We appreciate referrals!"
  },
  "TotalAmt": 2222.00,
  "PrivateNote" : "",
  "CustomField" : [ {
    "DefinitionId" : "1",
    "Type" : "StringType",
    "StringValue" : ""
  } ]

}

1 个答案:

答案 0 :(得分:0)

没有。

QuickBooks Online不支持此功能。