DeliveryData Data Type

Properties
name data type description
positionData PositionDataEntryList Die Metadaten der Positionen
deliveryId number Die Id des Lieferscheins.
itemPositions DeliveryPositionEntryList
textPositions DeliveryTextPositionEntryList

Example

{
  "positionData" : {
    "entries" : [ {
      "dataType" : "TEXT",
      "isort" : 12345,
      "id" : 12345
    }, {
      "dataType" : "NOTINITIALIZED",
      "isort" : 12345,
      "id" : 12345
    } ]
  },
  "deliveryId" : 12345,
  "itemPositions" : {
    "entries" : [ {
      "itemCnr" : "...",
      "itemId" : 12345,
      "description" : "...",
      "amount" : 12345.0,
      "unitCnr" : "...",
      "itemProperty" : "BATCHNR",
      "itemIdentity" : { },
      "deliveryId" : 12345,
      "orderPositionId" : 12345,
      "id" : 12345
    }, {
      "itemCnr" : "...",
      "itemId" : 12345,
      "description" : "...",
      "amount" : 12345.0,
      "unitCnr" : "...",
      "itemProperty" : "SERIALNR",
      "itemIdentity" : { },
      "deliveryId" : 12345,
      "orderPositionId" : 12345,
      "id" : 12345
    } ]
  },
  "textPositions" : {
    "entries" : [ {
      "text" : "...",
      "id" : 12345
    }, {
      "text" : "...",
      "id" : 12345
    } ]
  }
}