{{ 'pickup_location'|trans({}, 'DocumentTrans') }}
|
{{ 'social_reason'|trans({}, 'DocumentTrans') }} :
|
{{ groupData.commonName is not empty ? groupData.commonName : groupData.corporateName }}
|
|
{{ 'address'|trans({}, 'DocumentTrans') }}
:
|
{{ groupData.addressSellingPoint.address }}
|
|
{{ 'postal_code'|trans({}, 'DocumentTrans') }}
{{ 'town'|trans({}, 'DocumentTrans') }}
:
|
{{ groupData.addressSellingPoint.postalCode }}
|
|
{{ 'tel_dom'|trans({}, 'DocumentTrans') }} :
|
{{ groupData.phoneNumber }}
|
{{ 'tel_bur'|trans({}, 'DocumentTrans') }} :
|
{{ groupData.phoneNumber }}
|
|
{{ 'tel_gsm'|trans({}, 'DocumentTrans') }} :
|
{{ groupData.cellPhoneNumber }}
|
{{ 'fax'|trans({}, 'DocumentTrans') }} :
|
{{ groupData.faxNumber }}
|
|
|
|
|
{{ title_block }}
|
{% if customer.discr == 'individual' %}
{{ 'name'|trans({}, 'DocumentTrans') }} - {{ 'surname'|trans({}, 'DocumentTrans') }} :
|
{{ customer.firstName }} {{ customer.lastName }}
|
|
{% else %}
{{ 'social_reason'|trans({}, 'DocumentTrans') }} :
|
{{ customer.corporateNameContact }}
|
|
{% endif %}
{# TODO #}
{% if templateType == 'N21' %}
{{ 'tel_bur'|trans({}, 'DocumentTrans') }} :
|
{{ customer.phoneNumber }}
|
|
{{ 'tel_gsm'|trans({}, 'DocumentTrans') }} :
|
{{ customer.phoneNumber }}
|
|
{{ 'fax'|trans({}, 'DocumentTrans') }} :
|
{{ customer.faxNumber }}
|
|
{{ 'address'|trans({}, 'DocumentTrans') }} :
|
{{ customer.address }}
|
|
{% else %}
{{ 'address'|trans({}, 'DocumentTrans') }} :
|
{{ customer.address }}
|
|
{{ 'postal_code'|trans({}, 'DocumentTrans') }} {{ 'town'|trans({}, 'DocumentTrans') }} :
|
{{ customer.postalCode }}
|
|
{{ 'tel_dom'|trans({}, 'DocumentTrans') }} :
|
{{ customer.cellPhoneNumber }}
|
|
{{ 'tel_bur'|trans({}, 'DocumentTrans') }} :
|
{{ customer.phoneNumber }}
|
|
|
{{ 'tel_gsm'|trans({}, 'DocumentTrans') }} :
|
{{ customer.phoneNumber }}
|
|
{{ 'fax'|trans({}, 'DocumentTrans') }} :
|
{{ customer.faxNumber }}
|
|
|
{% endif %}
|
|