Retrieve Inventory Write-Offs.
Inventory Write-Off is a document that removes products from inventory; it contains a list of items and quantities.
Products can be added to stock with Inventory Registrations (see getInventoryRegistrations) and moved between locations with Inventory Transfers (see getInventoryTransfers).
To create an Inventory Write-Off, see saveInventoryWriteOff. To delete one, see deleteInventoryWriteOff.
Parameter name | Description | Possible value | Required |
---|---|---|---|
inventoryWriteOffID | ID of inventory write-off | Integer | |
warehouseID | Retrieve inventory registrations of a specific location (warehouse, store). See getWarehouses. | Integer | |
dateFrom | Date (yyyy-mm-dd) | ||
dateTo | Date (yyyy-mm-dd) | ||
getCost | If set to 1, API also returns the cost. | Integer | |
changedSince | Retrieve only items that have been added or modified since the specified timestamp. Use it to keep a local database in sync with Erply. | Integer (Unix timestamp) | |
recordsOnPage | Number of records API should return. By default 20, at most 100. | Integer | |
pageNo | API returns at most recordsOnPage items at a time. To retrive the next recordsOnPage items, send a new request with pageNo incremented by one. By default, API returns "page 1". | Integer |
Field name | Type | Description |
---|---|---|
inventoryWriteOffID | Integer | ID of inventory write-off |
inventoryWriteOffNo | Integer | Inventory write-off number |
creatorID | Integer | |
warehouseID | Integer | |
stocktakingID | Integer | |
inventoryID | Integer | |
recipientID | Integer | |
currencyCode | String | Currency code: EUR, USD. |
currencyRate | Decimal | eg. 1.25543 Exchange rate of the inventory registration currency against system's default currency. |
date | Date | eg. 2010-01-29 |
inventoryTransactionDate | Date | Inventory transaction date. This is the date on which the document was confirmed and when the items on this document were added into inventory, or removed from inventory. While "document date" can be edited by users at any time, "inventory transaction date" is always set by Erply and cannot be changed. Inventory Reports and COGS reports are based on the inventory transaction date. |
comments | String | |
reasonID | Integer | |
confirmed | Integer | 0 or 1 |
added | Unix timestamp | Creation time. |
lastModified | Unix timestamp | Last modification time. |
rows | Array | The item has the following attributes: productID - ID of the product price - product price amount - product amount cost - API returns this attribute if parameter "getCost" is specified. |