Liquid syntax
  • Welcome
  • Introduction
    • What is Liquid syntax?
    • Liquid operators
    • Liquid objects
    • Liquid tags
    • Liquid filters
    • Best practices
  • Information
    • Attributes
    • Consolidation
    • Custom fields
    • Date filter reference
    • Deal pricing
    • Special items
  • PDF renderer
    • PDF document limitations
  • General
    • Address detail
    • Attachments
    • Company
    • Emails
    • Links
    • Phones
    • Store
  • Activity
    • Activity
  • Inventory Check
    • Inventory check (stock check)
    • Inventory check items (stock check items)
  • Invoices & Credits
    • Invoice
    • Invoice items
    • Invoice transactions
    • Invoice taxes
  • Opportunities
    • Opportunity
    • Opportunity items
    • Opportunity item assets
    • Opportunity item surcharges
    • Opportunity costs
    • Opportunity return item assets
    • Consolidated opportunity items
    • Consolidated opportunities
  • People & Organizations
    • Contact
    • Organization
    • User
    • Vehicle
    • Venue
  • Products
    • Product
    • Product group
    • Charging period
    • Product accessories
    • Product assets
    • Stock level
  • Project
    • Project
  • Purchase orders
    • Purchase order
    • Purchase order items
  • Quarantine
    • Quarantine
  • Service
    • Service
  • Testing & inspection
    • Inspection results
    • Inspection result tasks
Powered by GitBook
On this page
  • Document layouts
  • Discussion templates
  • city
  • country
  • county
  • name
  • postcode
  • single_line_address
  • state
  • street

Was this helpful?

  1. General

Address detail

The address detail object contains information about addresses entered into Current RMS.

In most cases where you want to access an address, simply use the record‘s address object. For example, to output your company address:

{{ company.addresss }}

If you need to access a particular component of an address, use the address_detail object. For example, to output your company's country:

{{ company.address_detail.country }}

The address_detail object always relates to another object. For example, this will not output anything:

{{ address_detail.country }}

Prefixing it with company., venue., or another object where address is an object will resolve this.

Opportunities, invoices, and purchase orders have a billing and a delivery address, so use billing_address_detail and delivery_address_detail to access those address components. For example, to print the billing address country on an opportunity document:

{{ order.billing_address_detail.country }}

Document layouts

The address_detail object can be accessed in document layouts created against the following modules:

  • Invoice

  • Opportunity

  • Project

  • Product

  • Quarantine

  • Member

  • Purchase order

Discussion templates

The address_detail object can be accessed discussion templates created against the following modules:

  • None

  • Organization

  • Contact

  • User account

  • Venue

  • Activity

  • Invoice

  • Opportunity

  • Project

  • Product

  • Service

  • Quarantine

  • Purchase order

city

Returns the address city.

Input

{{ company.address_detail.city }}

Output

Cypress Creek

country

Returns the address country.

Input

{{ company.address_detail.country }}

Output

United States

county

For countries with regions, returns the address county.

Input

{{ company.address_detail.county }}

Output

Nottinghamshire

name

Returns the address name.

Input

{{ company.address_detail.name }}

Output

Globex Corporation

postcode

Returns the zip code or post code.

Input

{{ company.address_detail.postcode }}

Output

90210

single_line_address

Returns the address on a single line.

Input

{{ company.address_detail.single_line_address}}

Output

333 North Sam Houston Parkway East, Ste 1100, Suite 1100, Houston, TX 77060

state

For countries with states, returns the address state.

Input

{{ company.address_detail.state }}

Output

Texas

street

Returns the address street.

Input

{{ company.address_detail.street }}

Output

15201 Maple Systems Road
PreviousPDF document limitationsNextAttachments

Last updated 4 years ago

Was this helpful?