{% if groupData.legalForm is not empty %}
{{ groupData.legalForm }}
{% endif %}
{% if groupData.corporateName is not empty %}
{{ groupData.corporateName }}
{% endif %}
{{ groupData.addressBilling.address }}
{{ groupData.addressBilling.address2 }}
{{ groupData.addressBilling.postalCode }}
{{ groupData.addressBilling.city }}
{% if groupData.capitalStock is not empty %}
- {{ 'group.capital'|trans({}, 'DocumentTrans' )}} :
{{ groupData.capitalStock|number_format(2, ',', ' ') }} €
{% endif %}
- {{ 'phone_number'|trans({}, 'DocumentTrans' )}} :
{{groupData.phoneNumber}}
{% if groupData.faxNumber is not empty %}
- {{ 'fax'|trans({}, 'DocumentTrans' )}} :
{{groupData.faxNumber}}
{% endif %}
{{ 'email'|trans({}, 'DocumentTrans' )}} :
{{ groupData.email }}
{% if groupData.website is not empty %}
- {{ 'group.website'|trans({}, 'DocumentTrans' )}} :
{% set groupWebsiteUri = groupData.website %}
{% if 'http' not in groupWebsiteUri %}
{% set groupWebsiteUri = 'https://' ~ groupData.website %}
{% endif %}
{{- groupData.website }}
{% endif %}
{% set siretLabel = 'group.siret' %}
{% if groupData.addressBilling.country != 'FR' %}
{% set siretLabel = 'group.identification_number' %}
{% endif %}
- {{ siretLabel|trans({}, 'DocumentTrans' )}} :
{{ groupData.siretNumber }}
{% if groupData.rcs is not empty %}
- {{ 'group.rcs'|trans({}, 'DocumentTrans' )}} :
{{ groupData.rcs }}
{% endif %}
- {{ 'group.vat'|trans({}, 'DocumentTrans' )}} :
{{ groupData.vatNumber }}