StockReceipt Model

Public view of a stock receipt

Required
StockReceiptNumber : number (int)

Unique (incrementing) identifier for this StockReceipt

Required MaxLength(128)
SupplierInvoiceNumber : string

The invoice number provided by the supplier

Nullable
DateTimeReceived : string (ISO 8601 DateTime)

The DateTime when the stock was received as inventory

Nullable MaxLength(256)
ReceivedBy_UserName : string

Nullable user that received this stock receipt

Nullable MaxLength(256)
ExternalPurchaseOrderNumber : string

Nullable purchase order number associated with this stock receipt

UserValidated : bool

Whether or not this stock receipt has reached the validated state (implies no further edits will occur)

Nullable
LineItems : StockReceiptLineItem []

The individual line items that make up this stock receipt

Example
{
  "StockReceiptNumber": 321,
  "SupplierInvoiceNumber": "string value",
  "DateTimeReceived": "2012-04-03T09:40:59.736Z",
  "ReceivedBy_UserName": "string value",
  "ExternalPurchaseOrderNumber": "string value",
  "UserValidated": true,
  "LineItems": []
}