Opportunity items
Opportunity item objects hold information held against an item an opportunity.
Opportunity items are items that you've added to an opportunity.
When printed, an items list will consist of a group, the items inside the group, and then a subtotal row.

To build this in Liquid, you'd use a similar structure:
There's no subtotal row in the web interface. Subtotal items are included in the opportunity items object to make it easy to include and style a subtotal row. A subtotal item iterates after a group and its items have iterated. They're purely informational rows, so most of the objects below will return "Liquid error" when used with a subtotal item.

Opportunity item objects are always accessed within a forloop that iterates for each item.
Document layouts
The item object can be accessed in document layouts created against the following modules:
Opportunity
Project
Returns opportunity items for opportunities on a project.
Invoice
Returns opportunity items for opportunities that are sources on a particular invoice.
Member
Returns opportunity items for opportunities linked to a particular organization.
Returns opportunities items for active opportunities linked to a particular organization.
Quarantine
Returns opportunity item objects for the source opportunity of a quarantine.
Returns opportunity item objects for the opportunity that a quarantined asset is next booked on.
Discussion templates
The item object can be accessed in discussion templates created against the following modules:
Opportunity
Project
Returns opportunity items for opportunities on a project.
Invoice
Returns opportunity items for opportunities that are sources on a particular invoice.
Member
Returns opportunity items for opportunities linked to a particular organization.
Returns opportunities items for active opportunities linked to a particular organization.
Quarantine
Returns opportunity item objects for the source opportunity of a quarantine.
Returns opportunity item objects for the opportunity that a quarantined asset is next booked on.
accessories
accessoriesReturns opportunity item objects for an opportunity item. Works in the same way that the children object does.
Input
Output
accessory_is_default?
accessory_is_default?Returns true if an opportunity item is an accessory and the accessory’s inclusion type is “Default”.
Input
Output
accessory_is_mandatory?
accessory_is_mandatory?Returns true if an opportunity item is an accessory and the accessory’s inclusion type is “Mandatory”.
Input
Output
accessory_is_optional?
accessory_is_optional?Returns true if an opportunity item is an accessory and the accessory’s inclusion type is “Optional”.
Input
Output
accessory_mode_is_accessory?
accessory_mode_is_accessory?Returns true if an opportunity item is an accessory and the accessory’s mode is “Accessory”.
Input
Output
accessory_mode_is_component?
accessory_mode_is_component?Returns true if an opportunity item is an accessory and the accessory’s mode is “Component”.
Input
Output
accessory_mode_is_safety?
accessory_mode_is_safety?Returns true if an opportunity item is an accessory and the accessory’s mode is “Safety”.
Input
Output
accessory_mode_name
accessory_mode_nameReturns the accessory’s mode name where an opportunity item is an accessory; blank otherwise.
accessory
component
safety item
Input
Output
assets
assetsReturns opportunity item assets for an opportunity item. Keep in mind that an opportunity item might have multiple asset allocations.
Input
Output
Opportunity item assetscharge_excluding_tax_total
charge_excluding_tax_totalReturns an opportunity item charge total excluding tax.
Input
Output
charge_including_tax_total
charge_including_tax_totalReturns an opportunity item charge total including tax.
Input
Output
charge_total_including_children
charge_total_including_childrenReturns an opportunity item charge total, including the charge total of any accessory items.
Generally used where you’d like to roll up the price of accessories into their parent item, like when working with packages or kits.
Input
Output
charge_total
charge_totalReturns an opportunity item charge total.
This may be including or excluding tax depending on the value of the “Catalog Prices” setting in System Preferences.
Input
Output
chargeable_days
chargeable_daysReturns the number of chargeable days for an opportunity item.
For service items, the value of the “Rate Quantity” field is returned. The rate type may be hour or distance.
For sale items, returns 0.
Input
Output
charging_periods
charging_periodsReturns charging period objects for an opportunity item.
Input
Output
Charging periodchildren
childrenReturns opportunity item objects for an opportunity item.
When an item is an item, this will return accessories.
When the item is a group, this will return items within that group.
The children object only returns objects that are the next level deep in the tree. For example, accessories on accessories aren't returned.
Input
Output
combined_discount_total
combined_discount_totalReturns the total discount from both percentage and deal discounting for opportunity items that are groups.
For items, returns 0. For subtotals, returns an error.
Input
Output
Deal pricingdeal_discount_total
deal_discount_totalReturns the total discount from deal discounting for opportunity items that are groups.
For items, returns 0. For subtotals, returns an error.
Input
Output
Deal pricingdepth
depthReturns the depth of an opportunity item in the tree. An item’s depth is determined by how it is nested under items.

Input
Output
depth_padding
depth_paddingReturns the depth padding for an opportunity item. Generally used to apply an inline style to a table cell in HTML so that items appear nested.
Increments in multiples of 16.
Input
Output
description
descriptionReturns an opportunity item’s description.
Input
Output
discount_amount
discount_amountReturns the amount of discount applied to an opportunity item.
Returns 0 for groups and subtotals.
Use discount_total for groups.
Input
Output
discount_percent
discount_percentReturns the percentage discount applied to an opportunity item.
Returns 0 for groups and subtotals.
Input
Output
discount_total
discount_totalReturns the amount of discount for items inside of an opportunity group.
Returns 0 for items and subtotals.
Use discount_amount for items.
Input
Output
discounted_price
discounted_priceReturns an opportunity item’s price after discount.
Input
Output
ends_at
ends_atReturns the charging end date for an opportunity item. Generally used for service items.
For service items, returns the end date and time for the opportunity item.
For rental and sale items, returns the end date and time for the opportunity.
For groups, returns blank.
For subtotals, returns the date and time that the document was generated in UTC.
Input
Output
group_has_deal?
group_has_deal?Returns true where an opportunity item is a group that has been deal priced; false otherwise.
Deal priced groups have a red ”Deal Price” label in the list.
Input
Output
Deal pricinghas_child_items?
has_child_items?Returns true if an opportunity item has children items; false otherwise. Generally used for detecting if an opportunity item has accessories.
Input
Output
has_discount?
has_discount?Returns true if an opportunity item has a discount applied; false otherwise.
Where an opportunity item has a negative discount applied, has_discount will return false. For example, -50% would increment the charge total by 50% so has_discount will return false.
Input
Output
has_shortage?
has_shortage?Returns true where an opportunity item has a shortage; false otherwise.
Shortages are highlighted in red and have an ⚠️ exclamation icon next to them in the list.
Input
Output
id
idReturns an opportunity item ID.
Input
Output
is_accessory?
is_accessory?Returns true if an opportunity item is an accessory; false otherwise.
Input
Output
is_group?
is_group?Returns true if an opportunity item is a group; false otherwise.
Input
Output
is_in_deal?
is_in_deal?Returns true if an opportunity item is inside a deal, i.e. if it is part of a deal priced group or opportunity; false otherwise.
Input
Output
Deal pricingis_item?
is_item?Returns true if an opportunity item is an item; false otherwise.
Input
Output
is_principal?
is_principal?Returns true if an opportunity item has accessory items nested underneath it; false otherwise.
Input
Output
is_product?
is_product?Returns true if an opportunity item is linked to a product record; false otherwise.
Input
Output
is_rental?
is_rental?Returns true if an opportunity item is a rental charge, i.e. its transaction type is "Rental"; false otherwise.
Input
Output
is_sale?
is_sale?Returns true if an opportunity item is for a sale charge, i.e. its transaction type is "Sale"; false otherwise.
Input
Output
is_service?
is_service?Returns true if an opportunity item is for a service charge, i.e. its transaction type is "Service"; false otherwise.
This doesn't determine necessarily whether an opportunity item is linked to a service record; a text item may have the transaction type "Service".
Input
Output
is_service_item?
is_service_item?Returns true if an opportunity item is linked to a service record; false otherwise.
Input
Output
is_subtotal?
is_subtotal?Returns true if an opportunity item is a group item's subtotal; false otherwise.
Subtotal rows are informational only and many opportunity item item objects will print "Liquid error: internal" rather than return blank or false.
Input
Output
is_text_item?
is_text_item?Returns true if an opportunity item is a text item; false otherwise.
Input
Output
name
nameReturns an opportunity item's name.
Input
Output
opportunity
opportunityReturns opportunity objects for the opportunity that an opportunity item is related to.
When working with a document or discussion template on an opportunity record, you may simply wish to access the opportunity object as normal. For example, use {{ order.name }} to print the opportunity subject.
Input
Output
Opportunityprice
priceReturns an opportunity item's price without discount.
Input
Output
price_unit
price_unitReturns an opportunity item's price unit name.
The price unit name output depends on the rental charge used. Some common examples:
Daily
Weekly
Per period
Each
Input
Output
product_stock_levels
product_stock_levelsReturns stock level objects for opportunity item's related stock levels where:
the item is a product
it's bulk or serialized
stock levels are in the same store
stock levels have a stock type matching the opportunity item’s stock type (i.e. rental or sale)
Keep in mind that this returns any stock levels that match the criteria above. Use the assets object to return allocated assets.
Input
Output
Stock levelquantity
quantityReturns the quantity of an opportunity item.
Input
Output
rate_definition_name
rate_definition_nameReturns the rate definition name for an opportunity item where the item is a rental.
Returns blank for sales, services, and group items.
Input
Output
replacement_charge_total
replacement_charge_totalReturns the replacement charge total for an opportunity item.
This is calculated by multiplying the quantity by the product replacement charge.
Input
Output
replacement_charge_total_including_children
replacement_charge_total_including_childrenReturns the replacement charge total for an opportunity item, including the charge total of any accessory items.
Generally used where you’d like to roll up the replacement charge of accessories into their parent item, like when working with packages or kits.
Input
Output
revenue_group
revenue_groupReturns the revenue group name for an opportunity item.
Input
Output
service_unit_name
service_unit_nameReturns the service unit name for an opportunity item.
Day
Days
Hour
Hours
miles
km
Input
Output
starts_at
starts_atReturns the charging start date for an opportunity item. Generally used for service items.
For service items, returns the start date and time for the opportunity item.
For rental and sale items, returns the start date and time for the opportunity.
For groups, returns blank.
For subtotals, returns the date and time that the document was generated in UTC.
Input
Output
sub_contract?
sub_contract?Returns true if an opportunity item is for a sub-contract service or sub-rent product.
Input
Output
sub_rent?
sub_rent?Returns true if an opportunity item is for a sub-contract service or sub-rent product.
Input
Output
subtotal
subtotalReturns the subtotal amount for an opportunity group.
Subtotal rows are informational only. This will only return a value for subtotal rows. This will match the charge_total of the corresponding opportunity item group.
Input
Output
subtotal_including_tax
subtotal_including_taxReturns the subtotal amount for an opportunity group including tax.
Subtotal rows are informational only. This will only return a value for subtotal rows. This will match the charge_total of the corresponding opportunity item group.
Input
Output
subtotal_name
subtotal_nameReturns the subtotal name for an opportunity item group.
Subtotal rows are informational only. This will only return a value for subtotal rows. This will match the name of the corresponding opportunity item group.
Input
Output
surcharge_amount
surcharge_amountReturns the surcharge amount for an opportunity item.
Surcharges are percentage or fixed fees that are applied to rental items. An opportunity item might have multiple surcharges applied.
Returns blank for groups, sale items, and service items. Returns an error for subtotals.
Input
Output
surcharges
surchargesReturns opportunity item surcharge objects for surcharges applied to the opportunity item.
Input
Output
Opportunity item surchargestax_total
tax_totalReturns the tax total for an opportunity item. Works for items and groups.
Input
Output
transaction_type_name
transaction_type_nameReturns the transaction type name for an opportunity item.
Rental
Sale
Service
Input
Output
unit_charge
unit_chargeReturns the unit charge for an opportunity item.
The unit charge is the price for one unit of an opportunity item.
Input
Output
unit_charge_amount
unit_charge_amountReturns the unit charge for an opportunity item excluding discount.
The unit charge is the price for one unit of an opportunity item.
Input
Output
use_chargeable_days
use_chargeable_daysReturns true if an opportunity item has overriden chargeable days.
This will be the case where the opportunity has the "Chargeable Days" toggle set to YES.
Input
Output
warehouse_notes
warehouse_notesReturns the warehouse notes for an opportunity item.
Input
Output
weight_total
weight_totalReturns the weight total for an opportunity item.
This is calculated by multiplying the quantity by the product weight.
Input
Output
weight_total_including_children
weight_total_including_childrenReturns the weight total for an opportunity item.
This is calculated by multiplying the quantity by the product weight.
Input
Output
Last updated
Was this helpful?