A company drop contains information about the current file.

Methods

MethodReturn typeDescription
account_mapping_list.name
(deprecated)
stringThe name of a mapping list.
account_mapping_list.id
(deprecated)
stringthe id of the mapping list on firm level
account_mapping_list.marketplace_template_id
(deprecated)
stringthe id of the mapping list on partner level
analytical_type_(0..x)_codesdropContains information about dimensions/companies in an analytical/consolidation file.
citystringThe city from the company settings.
company_formstringThe company form from the company settings.
company_typestringThe type from the company settings.
countrystringThe country from the company settings.
country_codestringThe country code based upon the country from the company settings.
currencystringThe currency code from the company settings.
customdropA way to attach custom information to a company, independent of the period.
external_companiesdropAccess data from other companies (also see link to useful information section)
file_codestringThe file number from the company settings.
first_namestring!Personal files only! (Feature flagged) The first name from the company settings.
last_namestring!Personal files only! (Feature flagged) The last name from the company settings.
localesarrayAvailable languages for the company.
namestringThe company name from the company settings.
national_insurance_numberstring!Personal files only! (Feature flagged) The national insurance number from the company settings.
periods_per_yearintegerReturns 1,4,12 depending on the reporting frequency (yearly, quarterly or monthly).
postalcodestringThe post code from the company settings.
streetstringThe street from the company settings.
vat_identifier (deprecated)stringThe VAT identifier from the company settings.
registration_numberstringThe company number from the company settings.
vat_numberstringThe VAT number from the company settings.

❗️

vat_identifier versus registration_number and vat_number

The vat_identifier method is replaced by the registration_number method. The vat_identifier stays as an alias of the registration_number. This means that the value of company.registration_number will be the same as company.vat_identifier and vice versa.

The vat_number is created to insert a separate VAT number for the company, when it is different from the company registration number. This adjustment has been implemented in the 'Edit client' section. Before the update, there was only one field available for the VAT identifier of the company.

The purpose in future updates and new templates is to use the company.registration_number instead of company.vat_identifier.

Edit Client - Client Information

Input

{% stripnewlines %}
|--------
|--------
{% newline %}
|City:|{{ company.city }}
{% newline %}
|Company_form:|{{ company.company_form }}
{% newline %}
|Company_country:|{{ company.country }}
{% newline %}
|Company_country_code:|{{ company.country_code }}
{% newline %}
|Company_custom_field:|{% input company.custom.some.data %}
{% newline %}
|Company_file_code:|{{ company.file_code }}
{% newline %}
|Company_locales:|{{ company.locales | append:"," }}
{% newline %}
|Company_name:|{{ company.name }}
{% newline %}
|Company_street:|{{ company.street }}
{% newline %}
|Company_registration_number:|{{ company.registration_number }}
{% newline %}
|Company_vat_number:|{{ company.vat_number }}
{% newline %}
|Company_type:|{{ company.company_type }}
{% endstripnewlines %}

Output

Output