Skip to main content

Opportunity (order) object

Updated in the last hour

The order object contains information held against an opportunity record. The order object can be accessed in opportunity documents: 

{{ order.name }}

And within project documents:

{% for order in project.opportunities %}
  {{ order.name }}
{% endfor %}

And within invoices, where an invoice source is an opportunity:

{% for source in invoice.sources %}
  {{ source.name }}
{% endfor %}

From opportunity discussion templates:

{{ opportunity.name }}

Objects

Did this answer your question?