Chapter 6. Template Placeholders Reference

This is a reference section that shows all the fields that can be used in an invoice template. These fields can be used to include information about:

  • your business

  • your client's business

  • the actual invoice content

Some fields contain an additional description to properly describe their meaning.

6.1. Business

The following table shows the fields that can be used to include information about your business in an invoice.

Table 6.1. Business Properties

Property Version Meaning

1. General

business.name 1.0 self-explained

2. Taxes

business.taxNumber 1.4 The tax number assigned by the government to your business. In many countries, businesses must include their VAT number on their invoices. In such cases, the tax number is the VAT number.
business.taxLiable 1.5

Indicates whether the business pays taxes or not. A business pays taxes if they are enabled.

If you want to do something when the business pays taxes:

<#if business.taxLiable>
...
</#if>

If you want to do something when the business doesn't pay taxes:

<#if !business.taxLiable>
...
</#if>

3. Contact

business.attention 1.0 self-explained
business.address 1.0 self-explained
business.city 1.0 self-explained
business.state 1.0 self-explained
business.zip 1.0 self-explained
business.country 1.0 self-explained
business.phone 1.0 self-explained
business.fax 1.0 self-explained
business.mobile 2.1 self-explained
business.other 2.1 self-explained
business.email 1.0 self-explained
business.website 1.8 self-explained