The organization object contains information about an organization record.
Organizations in Current RMS are billing entities. They're customers or vendors that you bill.
You can set an organization as a sub-rent supplier and raise a purchase order for them. You can also invoice an organization.
Members
Contacts, organizations, vehicles, venues, and users are all known as members in the database. Members have some shared attributes, along with attributes that are specific to that particular member type.
When you're checking a list of members, you can use the type object to determine what type of member you're working with.
For example, the participants object against an opportunity returns participant objects for any members who are participants on the opportunity. To print only organizations:
<ul>
{% for participant in order.participants %}
{% if participant.type == "Organization" %}
<li>{{ participant.name }}</li>
{% endif %}
{% endfor %}
</ul>
Document layouts
The organization object can be accessed in document layouts created against the following modules:
Member
From an organization record:
From a contact record:
Opportunity
To print information about the opportunity's related organization:
To print organizations that are a participant against an opportunity:
To print organizations that are sub-rent suppliers for opportunity items:
To print organizations that are sub-contract suppliers for service bookings:
Project
To print information about the project's related organization:
To print organizations that are a participant against a project:
Purchase order
Where the supplier is an organization:
To print organizations against a purchase order's related contact:
Invoice
To print information about the invoice's related organization:
Quarantine
To print information about the sub-rent supplier against a quarantine:
To print information about the source opportunity's related organization:
To print information about the next opportunity booking's related organization:
Activity
To print information about organizations that are participants against an activity:
Discussion templates
The organization object can be accessed in discussion templates created against the following modules:
Member
From an organization record:
From a contact record:
Opportunity
To print information about the opportunity's related organization:
To print organizations that are a participant against an opportunity:
To print organizations that are sub-rent suppliers for opportunity items:
To print organizations that are sub-contract suppliers for service bookings:
Project
To print information about the project's related organization:
To print organizations that are a participant against a project:
Purchase order
Where the supplier is an organization:
To print organizations against a purchase order's related contact:
Invoice
To print information about the invoice's related organization:
Quarantine
To print information about the sub-rent supplier against a quarantine:
To print information about the source opportunity's related organization:
To print information about the next opportunity booking's related organization:
active_sub_rentals
Returns opportunity item asset objects for active opportunities where this organization is a sub-rent supplier.