简体   繁体   English

Acumatica Rest API获取带有订单项详细信息的销售订单

[英]Acumatica Rest API to get sales order with line item detail

I was doing a demo and could easily create and retrieve orders but was not able to get the expand parameter to work 我正在做一个演示,可以轻松创建和检索订单,但无法使expand参数起作用

For example 例如

I created order SO003615 with: 我使用以下命令创建了订单SO003615:

URI http://localhost/Acumatica6/entity/Default/6.00.001/SalesOrder URI http://localhost/Acumatica6/entity/Default/6.00.001/SalesOrder

{
  "OrderType": { value: "SO" },
  "CustomerID" : { value : "ACTIVESTAF" } ,
  "LocationID" : { value : "MAIN" },
  "Description" : { value : "Sample Order"},
   "Details" : 
   [
      {
        "InventoryID" : {value: "AACOMPUT01"},
        "Quantity" : {value: 2},
        "UOM" : {value: "EA"},
        "UnitPrice" : {value: 1000.99}
      },
      {
        "InventoryID" : {value: "AALEGO500"},
        "Quantity" : {value: 1}
      }
   ]
}

Then I tried to get order with 然后我试图与

URI http://localhost/Acumatica6/entity/Default/6.00.001/SalesOrder/SO/SO003615?expand=Details URI http://localhost/Acumatica6/entity/Default/6.00.001/SalesOrder/SO/SO003615?expand = Details

But the line items are not in the result. 但是订单项不在结果中。 What am I missing? 我想念什么?

{
  "id": "37c15980-f71d-4496-882d-6e05e4a50061",
  "rowNumber": 1,
  "note": "",
  "BillingAddressOverride": {
    "value": false
  },
  "BillingContactOverride": {
    "value": false
  },
  "CreditHold": {
    "value": false
  },
  "Currency": {
    "value": "USD"
  },
  "CustomerID": {
    "value": "ACTIVESTAF"
  },
  "CustomerOrder": {},
  "Date": {
    "value": "2017-03-16T00:00:00-04:00"
  },
  "Description": {
    "value": "Sample Order 6"
  },
  "DestinationWarehouseID": {},
  "ExternalReference": {},
  "Hold": {
    "value": false
  },
  "IsTaxValid": {
    "value": false
  },
  "LastModified": {
    "value": "2017-03-17T01:05:56.74-04:00"
  },
  "LocationID": {
    "value": "MAIN"
  },
  "NewCard": {
    "value": false
  },
  "OrderedQty": {
    "value": 3
  },
  "OrderNbr": {
    "value": "SO003615"
  },
  "OrderTotal": {
    "value": 2101.98
  },
  "OrderType": {
    "value": "SO"
  },
  "PaymentCardIdentifier": {},
  "PaymentMethod": {
    "value": "CHECK"
  },
  "PaymentRef": {},
  "PreferredWarehouseID": {},
  "Project": {
    "value": "X"
  },
  "RequestedOn": {
    "value": "2017-03-16T00:00:00-04:00"
  },
  "ShippingAddressOverride": {
    "value": false
  },
  "ShippingContactOverride": {
    "value": false
  },
  "ShipVia": {},
  "Status": {
    "value": "Open"
  },
  "TaxTotal": {
    "value": 0
  },
  "custom": {},
  "files": []
}

It is $expand , not expand . 它是$expand ,而不是expand Try using the following http://localhost/Acumatica6/entity/Default/6.00.001/SalesOrder/SO/003615?$expand=Details 尝试使用以下http://localhost/Acumatica6/entity/Default/6.00.001/SalesOrder/SO/003615?$expand=Details

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM