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
  • name
  • value

Was this helpful?

  1. Testing & inspection

Inspection result tasks

The inspection result tasks object contains information about inspection tasks against an inspection result.

PreviousInspection results

Last updated 4 years ago

Was this helpful?

When creating inspection results, you may set up inspection result tasks. These are other values that you might want to store during a test, e.g. weights or electrical results.

Inspection result tasks are stored in an array against an inspection result.

name

Returns the name of the inspection task.

Input

{% for result in inspection_result.task_list_results %}
  {{ result.name }}
{% endfor %}

Output

Meter reading

value

Returns the recorded value for the inspection task.

Input

{% for result in inspection_result.task_list_results %}
  {{ result.value }}
{% endfor %}

Output

200
Inspection results
Inspection tasks against an inspection result.