Liquid syntax
  • Welcome
  • Introduction
    • What is Liquid syntax?
    • Liquid operators
    • Liquid objects
    • Liquid tags
    • Liquid filters
    • Best practices
  • Information
    • Attributes
    • Consolidation
    • Custom fields
    • Date filter reference
    • Deal pricing
    • Special items
  • PDF renderer
    • PDF document limitations
  • General
    • Address detail
    • Attachments
    • Company
    • Emails
    • Links
    • Phones
    • Store
  • Activity
    • Activity
  • Inventory Check
    • Inventory check (stock check)
    • Inventory check items (stock check items)
  • Invoices & Credits
    • Invoice
    • Invoice items
    • Invoice transactions
    • Invoice taxes
  • Opportunities
    • Opportunity
    • Opportunity items
    • Opportunity item assets
    • Opportunity item surcharges
    • Opportunity costs
    • Opportunity return item assets
    • Consolidated opportunity items
    • Consolidated opportunities
  • People & Organizations
    • Contact
    • Organization
    • User
    • Vehicle
    • Venue
  • Products
    • Product
    • Product group
    • Charging period
    • Product accessories
    • Product assets
    • Stock level
  • Project
    • Project
  • Purchase orders
    • Purchase order
    • Purchase order items
  • Quarantine
    • Quarantine
  • Service
    • Service
  • Testing & inspection
    • Inspection results
    • Inspection result tasks
Powered by GitBook
On this page
  • asset_number
  • quantity_available
  • quantity_booked
  • quantity_change
  • quantity_counted
  • quantity_held
  • stock_level

Was this helpful?

  1. Inventory Check

Inventory check items (stock check items)

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

PreviousInventory check (stock check)NextInvoice

Last updated 4 years ago

Was this helpful?

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.

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 %}

asset_number

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

Input

{{ item.asset_number }}

Output

ABC-123

quantity_available

Returns the quantity available on an inventory check item.

Input

{{ item.quantity_available }}

Output

1

quantity_booked

Returns the quantity booked on an inventory check item.

Input

{{ item.quantity_booked }}

Output

1

quantity_change

Returns the quantity change on an inventory check item.

Input

{{ item.quantity_change }}

Output

1

quantity_counted

Returns the quantity counted on an inventory check item.

Input

{{ item.quantity_counted }}

Output

1

quantity_held

Returns the quantity held on an inventory check item.

Input

{{ item.quantity_held }}

Output

1

stock_level

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

Input

{{ item.stock_level.item_name }}

Output

MacBook Pro
Inventory check (stock check)
A screenshot of an inventory check items list.