The opportunity item assets object holds information held against opportunity item assets.
When you add a product or service to an opportunity, it creates an opportunity item on that opportunity. Opportunity items have opportunity item assets, which are records for allocations for that item.
An allocation might be a serialized asset or a sub-rent booking.
Generally, the opportunity item asset object is used to print operations documents like Picking Lists, Delivery Notes, and Collection Notes.
Document layouts
The asset object can be accessed in document layouts against the following modules:
Opportunity
{% for asset in order.product_assets %}
{{ asset.asset_number }}
{% endfor %}
To print assets against an opportunity item:
{% for item in order.items %}
{% if item.is_item? %}
{% for asset in item.assets %}
{{ asset.asset_number }}
{% endfor %}
{% endif %}
{% endfor %}
To print assets inside a container:
To print assets for a sub-rent supplier:
Member
To print sub-rent allocations for a particular supplier:
Discussion templates
The asset object can be accessed in document layouts against the following modules:
Opportunity
To print assets against an opportunity item:
To print assets inside a container:
To print assets for a sub-rent supplier:
Member
To print sub-rent allocations for a particular supplier:
asset_number
Where serialized, returns an opportunity item asset asset number.
Returns blank for bulk or non-stock.
Input
Output
barcode_number
Where bulk or non-stock, returns an opportunity item asset's related product barcode number.
Returns blank for serialized.
Input
Output
container
Returns the opportunity item asset container name.
Returns blank where no container is set.
Input
Output
cost
Returns opportunity cost objects for an opportunity item asset.
The E3 is an extremely small and versatile high performance system with astonishing sound and excellent headroom. The horn, which may be rotated to give either 90° x 60° or 60° x 90° coverage, has the necessary flexibility in directivity to enable a variety of applications such as delay, infill or distributed sound reinforcement applications.
{{ asset.quantity }}
2
{{ asset.replacement_value }}
20.0
{{ asset.resource.name }}
Jo Swanson
{{ asset.resource_name }}
Jo Swanson
{% for return in asset.return_assets %}
{{ return.return_at }}
{% endfor %}