{% block loaner %}
{% if isLoaner == true and loaner is not empty and loaner.discr is not empty %}
|
{{ 'contact.tenant.title'|trans({}, 'DocumentTrans' )}}
{% if loaner.discr == constant('AppBundle\\Entity\\Contact\\Contact::CONTACT_DISCR_INDIVIDUAL')
or loaner.discr == constant('AppBundle\\Entity\\Contact\\ContactQuick\\ContactQuickBase::CONTACT_DISCR_INDIVIDUAL')
%}
{{ loaner.civility|trans({}, 'CommonTrans') }}
{{ loaner.lastName }}
{{ loaner.firstName }}
{% else %}
{{ loaner.corporateNameContact }}
{% endif %}
|
{% if loaner.address is not empty %}
{{ loaner.address }}
|
{% endif %}
{% if loaner.address2 is not empty %}
{{ loaner.address2 }}
|
{% endif %}
{% if loaner.postalCode is not empty or loaner.city is not empty %}
{{ loaner.postalCode }}
{{ loaner.city }}
|
{% endif %}
{% if loaner.country is not empty %}
{{ globalF.getCountry(loaner.country, {'countries': countries}) }}
|
{% endif %}
|
|
{% else %}
{% block loanerEmpty %}
|
|
{% endblock loanerEmpty %}
{% endif %}
{% endblock %}
{{ 'contact.customer.title'|trans({}, 'DocumentTrans' )}}
{{ contactF.getContactAndCoContactLabel({
'customer': customer,
'coCustomer': coCustomer,
'isSpouse': isSpouse,
'civility': true,
'corporate': true
}) }}
|
{{ customer.address }}
|
{{ customer.address2 }}
|
{{ customer.postalCode }}
{{ customer.city }}
|
{{ globalF.getCountry(customer.country, {'countries': countries}) }}
|
{% if customer.siret is not empty %}
{{ 'group.siret'|trans({}, 'DocumentTrans' )}} : {{ customer.siret }}
|
{% endif %}
{% block tvaIntracom %}{% endblock %}
{% block infoAdditionalCustomer %}{% endblock %}
|