Odbiorca

Dane klienta i adres dostawy

{% set delivery_address = order.deliveryAddress %}
Klient{{ (order.customerFirstName ~ ' ' ~ order.customerLastName)|trim ?: '—' }}
E-mail{{ order.customerEmail ?: '—' }}
Telefon{{ order.customerPhone ?: '—' }}
ID klienta w źródle{{ order.customerExternalId ?: '—' }}
Adres odbiorcySnapshot adresu podanego w zamówieniu.
{% if delivery_address %}
{{ (delivery_address.firstname ~ ' ' ~ delivery_address.lastname)|trim }}
{% if delivery_address.company %}{{ delivery_address.company }}
{% endif %} {{ delivery_address.address1 }}{% if delivery_address.address2 %}
{{ delivery_address.address2 }}{% endif %}
{{ delivery_address.postcode }} {{ delivery_address.city }}
{{ delivery_address.countryName ?: delivery_address.countryCode }}
{% else %}

Brak zapisanego adresu dostawy.

{% endif %}
Dostawa

Metoda i punkt odbioru

Metoda
{{ order.shippingMethodName ?: '—' }}
Typ
{{ order.deliveryType }}
Status danych
{{ order.deliveryDataStatus }}
Operator punktu
{{ order.pickupPointProvider ?: '—' }}
Kod punktu
{{ order.pickupPointCode ?: '—' }}
Nazwa punktu
{{ order.pickupPointName ?: '—' }}
Adres punktu
{{ order.pickupPointAddress1 ?: '—' }}{% if order.pickupPointAddress2 %}, {{ order.pickupPointAddress2 }}{% endif %}{% if order.pickupPointPostcode or order.pickupPointCity %}
{{ order.pickupPointPostcode }} {{ order.pickupPointCity }}{% endif %}
{% if order.customerNote %}
chat

Notatka klienta: {{ order.customerNote }}

{% endif %}