Inventory check items (stock check items)

The inventory check items object contains information about items on an inventory check.

An inventory check is a record of an audit of your inventory. Inventory check items are stock levels that were counted as part of that particular check.

A screenshot of an inventory check items list.

Inventory check item objects are available from the inventory check object. They'r accessed in a forloop that iterates through inventory check items.

{% for item in stock_check.stock_check_items %}
  {{ item.asset_number }}
{% endfor %}
Inventory check (stock check)

asset_number

If serialized, returns the asset number of an inventory check item.

Input

Output

quantity_available

Returns the quantity available on an inventory check item.

Input

Output

quantity_booked

Returns the quantity booked on an inventory check item.

Input

Output

quantity_change

Returns the quantity change on an inventory check item.

Input

Output

quantity_counted

Returns the quantity counted on an inventory check item.

Input

Output

quantity_held

Returns the quantity held on an inventory check item.

Input

Output

stock_level

Returns stock level objects for an inventory check item's related stock level.

Input

Output

Last updated

Was this helpful?