Opportunity (order) object
Matthew James Finkel avatar
Written by Matthew James Finkel
Updated over a week ago

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?