Typy objektů

v přípravě - není dostupné v šablonách

AccountingDocument

Attributy objektu AccountingDocument

Název

Typ

Popis

code

string

Kód

date

datetime

Datum vystavení

totalPrice

Price

Celková cena

pdfUrl

Url

URL stažení PDF

Příklady:

{{ accountingdocument.code }}
{{ accountingdocument.date|date('d. m. Y H:i') }}
{{ accountingdocument.totalPrice.vatRate }}
{{ accountingdocument.totalPrice.current.currency }}
{{ accountingdocument.totalPrice.current.formatted }}
{{ accountingdocument.totalPrice.current.value }}
{% if accountingdocument.totalPrice.current.perUnit %}
        {{ accountingdocument.totalPrice.current.perUnit }}
        {{ accountingdocument.totalPrice.current.perUnit.formatted }}
        {{ accountingdocument.totalPrice.current.perUnit.unit }}
{% endif %}
{% if accountingdocument.totalPrice.discountPercent %}
        {{ accountingdocument.totalPrice.discountPercent }}
{% endif %}
{% if accountingdocument.totalPrice.discountValidTo %}
        {{ accountingdocument.totalPrice.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if accountingdocument.totalPrice.beforeDiscount %}
        {{ accountingdocument.totalPrice.beforeDiscount.currency }}
        {{ accountingdocument.totalPrice.beforeDiscount.formatted }}
        {{ accountingdocument.totalPrice.beforeDiscount.value }}
        {% if accountingdocument.totalPrice.beforeDiscount.perUnit %}
                {{ accountingdocument.totalPrice.beforeDiscount.perUnit }}
                {{ accountingdocument.totalPrice.beforeDiscount.perUnit.formatted }}
                {{ accountingdocument.totalPrice.beforeDiscount.perUnit.unit }}
        {% endif %}
{% endif %}
{% if accountingdocument.totalPrice.discount %}
        {{ accountingdocument.totalPrice.discount.currency }}
        {{ accountingdocument.totalPrice.discount.formatted }}
        {{ accountingdocument.totalPrice.discount.value }}
        {% if accountingdocument.totalPrice.discount.perUnit %}
                {{ accountingdocument.totalPrice.discount.perUnit }}
                {{ accountingdocument.totalPrice.discount.perUnit.formatted }}
                {{ accountingdocument.totalPrice.discount.perUnit.unit }}
        {% endif %}
{% endif %}
{{ accountingdocument.pdfUrl }}
{{ accountingdocument.pdfUrl.absolute }}
{{ accountingdocument.pdfUrl.path }}

Actuality

Attributy objektu Actuality

Název

Typ

Popis

id

int

Id

name

string

Název

date

datetime

Datum

url

Url

URL aktuality nebo externí URL (má přednost)

annotation

string | null

Anotace

text

string | null

Text

image

Image | null

Hlavní obrázek

Příklady:

{{ actuality.id }}
{{ actuality.name }}
{{ actuality.date|date('d. m. Y H:i') }}
{{ actuality.url }}
{{ actuality.url.absolute }}
{{ actuality.url.path }}

{% if actuality.annotation %}
        {{ actuality.annotation }}
{% endif %}

{% if actuality.text %}
        {{ actuality.text }}
{% endif %}

{% if actuality.image %}
        {{ actuality.image.originalHeight }}
        {{ actuality.image.originalWidth }}
        {{ actuality.image.url }}
        {% if actuality.image.alt %}
                {{ actuality.image.alt }}
        {% endif %}
        {% if actuality.image.text %}
                {{ actuality.image.text }}
        {% endif %}
{% endif %}

Address

Attributy objektu Address

Název

Typ

Popis

name

Address/Name

Jméno

city

string | null

Město

company

string | null

Firma

companyId

string | null

email

string | null

Email

phone

string | null

Telefon

region

string | null

Region (stát, okres, …)

street

string | null

Ulice a čp.

vatId

string | null

DIČ

web

string | null

URL webu

zip

string | null

PSČ

purpose

Address/AddressPurpose | null

Účel kontaktu

country

Address/Country | null

Země

Příklady:

{{ address.name }}
{% if address.name.first %}
        {{ address.name.first }}
{% endif %}
{% if address.name.last %}
        {{ address.name.last }}
{% endif %}

{% if address.city %}
        {{ address.city }}
{% endif %}

{% if address.company %}
        {{ address.company }}
{% endif %}

{% if address.companyId %}
        {{ address.companyId }}
{% endif %}

{% if address.email %}
        {{ address.email }}
{% endif %}

{% if address.phone %}
        {{ address.phone }}
{% endif %}

{% if address.region %}
        {{ address.region }}
{% endif %}

{% if address.street %}
        {{ address.street }}
{% endif %}

{% if address.vatId %}
        {{ address.vatId }}
{% endif %}

{% if address.web %}
        {{ address.web }}
{% endif %}

{% if address.zip %}
        {{ address.zip }}
{% endif %}

{% if address.purpose %}
        {{ address.purpose.headline }}
{% endif %}

{% if address.country %}
        {{ address.country.code }}
        {{ address.country.flagCircleUrl }}
        {{ address.country.flagUrl }}
        {{ address.country.name }}
        {% if address.country.eU %} ... {% endif %}
{% endif %}

Address/AddressPurpose

Attributy objektu Address/AddressPurpose

Název

Typ

Popis

headline

string

Nadpis

Příklady:

{{ addresspurpose.headline }}

Address/Country

Attributy objektu Address/Country

Název

Typ

Popis

code

string

Kód (například cz)

flagCircleUrl

string

URL SVG vlajky (kruhová)

flagUrl

string

URL SVG vlajky (obdélníková 3:4)

name

string

Název

eU

bool

Je v EU?

Příklady:

{{ country.code }}
{{ country.flagCircleUrl }}
{{ country.flagUrl }}
{{ country.name }}
{% if country.eU %} ... {% endif %}

Address/Name

Attributy objektu Address/Name

Název

Typ

Popis

first

string | null

Křestní

last

string | null

Příjmení

Příklady:

{{ name }}

{% if name.first %}
        {{ name.first }}
{% endif %}

{% if name.last %}
        {{ name.last }}
{% endif %}

Addresses

Attributy objektu Addresses

Název

Typ

Popis

delivery

Address

Dodací adrea

invoice

Address

Fakturační adresa

Příklady:

{{ addresses.delivery.name }}
{% if addresses.delivery.name.first %}
        {{ addresses.delivery.name.first }}
{% endif %}
{% if addresses.delivery.name.last %}
        {{ addresses.delivery.name.last }}
{% endif %}
{% if addresses.delivery.city %}
        {{ addresses.delivery.city }}
{% endif %}
{% if addresses.delivery.company %}
        {{ addresses.delivery.company }}
{% endif %}
{% if addresses.delivery.companyId %}
        {{ addresses.delivery.companyId }}
{% endif %}
{% if addresses.delivery.email %}
        {{ addresses.delivery.email }}
{% endif %}
{% if addresses.delivery.phone %}
        {{ addresses.delivery.phone }}
{% endif %}
{% if addresses.delivery.region %}
        {{ addresses.delivery.region }}
{% endif %}
{% if addresses.delivery.street %}
        {{ addresses.delivery.street }}
{% endif %}
{% if addresses.delivery.vatId %}
        {{ addresses.delivery.vatId }}
{% endif %}
{% if addresses.delivery.web %}
        {{ addresses.delivery.web }}
{% endif %}
{% if addresses.delivery.zip %}
        {{ addresses.delivery.zip }}
{% endif %}
{% if addresses.delivery.purpose %}
        {{ addresses.delivery.purpose.headline }}
{% endif %}
{% if addresses.delivery.country %}
        {{ addresses.delivery.country.code }}
        {{ addresses.delivery.country.flagCircleUrl }}
        {{ addresses.delivery.country.flagUrl }}
        {{ addresses.delivery.country.name }}
        {% if addresses.delivery.country.eU %} ... {% endif %}
{% endif %}
{{ addresses.invoice.name }}
{% if addresses.invoice.name.first %}
        {{ addresses.invoice.name.first }}
{% endif %}
{% if addresses.invoice.name.last %}
        {{ addresses.invoice.name.last }}
{% endif %}
{% if addresses.invoice.city %}
        {{ addresses.invoice.city }}
{% endif %}
{% if addresses.invoice.company %}
        {{ addresses.invoice.company }}
{% endif %}
{% if addresses.invoice.companyId %}
        {{ addresses.invoice.companyId }}
{% endif %}
{% if addresses.invoice.email %}
        {{ addresses.invoice.email }}
{% endif %}
{% if addresses.invoice.phone %}
        {{ addresses.invoice.phone }}
{% endif %}
{% if addresses.invoice.region %}
        {{ addresses.invoice.region }}
{% endif %}
{% if addresses.invoice.street %}
        {{ addresses.invoice.street }}
{% endif %}
{% if addresses.invoice.vatId %}
        {{ addresses.invoice.vatId }}
{% endif %}
{% if addresses.invoice.web %}
        {{ addresses.invoice.web }}
{% endif %}
{% if addresses.invoice.zip %}
        {{ addresses.invoice.zip }}
{% endif %}
{% if addresses.invoice.purpose %}
        {{ addresses.invoice.purpose.headline }}
{% endif %}
{% if addresses.invoice.country %}
        {{ addresses.invoice.country.code }}
        {{ addresses.invoice.country.flagCircleUrl }}
        {{ addresses.invoice.country.flagUrl }}
        {{ addresses.invoice.country.name }}
        {% if addresses.invoice.country.eU %} ... {% endif %}
{% endif %}

Admin

Administrátor eshopu

Attributy objektu Admin

Název

Typ

Popis

id

int

Id

email

string

Email

phone

string

Telefon

position

string

Pozice

name

Address/Name

Jméno a příjmení

image

Image

Obrázek

text

html | null

Text

Příklady:

{{ admin.id }}
{{ admin.email }}
{{ admin.phone }}
{{ admin.position }}
{{ admin.name }}
{% if admin.name.first %}
        {{ admin.name.first }}
{% endif %}
{% if admin.name.last %}
        {{ admin.name.last }}
{% endif %}
{{ admin.image.originalHeight }}
{{ admin.image.originalWidth }}
{{ admin.image.url }}
{% if admin.image.alt %}
        {{ admin.image.alt }}
{% endif %}
{% if admin.image.text %}
        {{ admin.image.text }}
{% endif %}

{% if admin.text %}
        {{ admin.text }}
{% endif %}

AnalyticsReport

Attributy objektu AnalyticsReport

Název

Typ

Popis

name

string

Název

url

Url

URL

Příklady:

{{ analyticsreport.name }}
{{ analyticsreport.url }}
{{ analyticsreport.url.absolute }}
{{ analyticsreport.url.path }}

Article

Attributy objektu Article

Název

Typ

Popis

id

int

Id

name

string

Nazev

datePublished

datetime

Datum publikování

attributes

Attribute/AttributeInstance[]

Parametry a hodnoty

author

Author

Autor

files

File[]

Soubory (manuály, specifikace, …)

images

Image[]

Obrázky

topic

Topic

Téma (zařazení)

topics

Topic[]

Témata

url

Url

URL článku

videos

Video[]

Videa

text

html | null

Text

attribute

Attribute/AttributeInstance | null

Atribut s hodnotami

image

Image | null

Hlavní obrázek

seo

Seo | null

SEO attributy

contentGrid

array | null

Content grid

Příklady:

{{ article.id }}
{{ article.name }}
{{ article.datePublished|date('d. m. Y H:i') }}

{% for attributeInstance in article.attributes %}
        {{ attributeInstance.name }}
        {{ attributeInstance.valuesHtml }}
        {% for attributeValueInstance in attributeInstance.values %}
                {{ attributeValueInstance.values }}
                {{ attributeValueInstance.nameHtml }}
                {% if attributeValueInstance.colorCode %}
                        {{ attributeValueInstance.colorCode }}
                {% endif %}
                {% if attributeValueInstance.text %}
                        {{ attributeValueInstance.text }}
                {% endif %}
                {% if attributeValueInstance.unit %}
                        {{ attributeValueInstance.unit }}
                {% endif %}
                {% if attributeValueInstance.image %}
                        {{ attributeValueInstance.image.originalHeight }}
                        {{ attributeValueInstance.image.originalWidth }}
                        {{ attributeValueInstance.image.url }}
                        {% if attributeValueInstance.image.alt %}
                                {{ attributeValueInstance.image.alt }}
                        {% endif %}
                        {% if attributeValueInstance.image.text %}
                                {{ attributeValueInstance.image.text }}
                        {% endif %}
                {% endif %}
                {% if attributeValueInstance.name %}
                        {{ attributeValueInstance.name }}
                {% endif %}
        {% endfor %}
        {% if attributeInstance.description %}
                {{ attributeInstance.description }}
        {% endif %}
        {% if attributeInstance.group %}
                {{ attributeInstance.group.id }}
        {% endif %}
        {% if attributeInstance.image %}
                {{ attributeInstance.image.originalHeight }}
                {{ attributeInstance.image.originalWidth }}
                {{ attributeInstance.image.url }}
                {% if attributeInstance.image.alt %}
                        {{ attributeInstance.image.alt }}
                {% endif %}
                {% if attributeInstance.image.text %}
                        {{ attributeInstance.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ article.author.id }}
{{ article.author.name }}
{% if article.author.name.first %}
        {{ article.author.name.first }}
{% endif %}
{% if article.author.name.last %}
        {{ article.author.name.last }}
{% endif %}
{{ article.author.image.originalHeight }}
{{ article.author.image.originalWidth }}
{{ article.author.image.url }}
{% if article.author.image.alt %}
        {{ article.author.image.alt }}
{% endif %}
{% if article.author.image.text %}
        {{ article.author.image.text }}
{% endif %}
{% for socialProfile in article.author.socialProfiles %}
        {{ socialProfile.type }}
        {{ socialProfile.url }}
{% endfor %}
{{ article.author.url }}
{{ article.author.url.absolute }}
{{ article.author.url.path }}
{% if article.author.email %}
        {{ article.author.email }}
{% endif %}
{% if article.author.nickname %}
        {{ article.author.nickname }}
{% endif %}
{% if article.author.phone %}
        {{ article.author.phone }}
{% endif %}
{% if article.author.text %}
        {{ article.author.text }}
{% endif %}

{% for file in article.files %}
        {{ file.bytes }}
        {{ file.url }}
        {% if file.usage.archive %} ... {% endif %}
        {% if file.usage.graphic %} ... {% endif %}
        {% if file.usage.manual %} ... {% endif %}
        {% if file.usage.other %} ... {% endif %}
        {% if file.usage.sound %} ... {% endif %}
        {% if file.usage.specification %} ... {% endif %}
        {% if file.mime %}
                {{ file.mime }}
        {% endif %}
        {% if file.name %}
                {{ file.name }}
        {% endif %}
{% endfor %}

{% for image in article.images %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{{ article.topic.id }}
{{ article.topic.name }}
{{ article.topic.image.originalHeight }}
{{ article.topic.image.originalWidth }}
{{ article.topic.image.url }}
{% if article.topic.image.alt %}
        {{ article.topic.image.alt }}
{% endif %}
{% if article.topic.image.text %}
        {{ article.topic.image.text }}
{% endif %}
{% for topic in article.topic.subtopics %}
        {{ topic.id }}
        {{ topic.name }}
        {{ topic.image.originalHeight }}
        {{ topic.image.originalWidth }}
        {{ topic.image.url }}
        {% if topic.image.alt %}
                {{ topic.image.alt }}
        {% endif %}
        {% if topic.image.text %}
                {{ topic.image.text }}
        {% endif %}
        {{ topic.url }}
        {{ topic.url.absolute }}
        {{ topic.url.path }}
        {{ topic.pathNames }}
        {% if topic.text %}
                {{ topic.text }}
        {% endif %}
        {% if topic.seo %}
                {% if topic.seo.description %}
                        {{ topic.seo.description }}
                {% endif %}
                {% if topic.seo.keywords %}
                        {{ topic.seo.keywords }}
                {% endif %}
                {% if topic.seo.title %}
                        {{ topic.seo.title }}
                {% endif %}
        {% endif %}
        {% if topic.parent %}
                {{ topic.parent.id }}
                {{ topic.parent.name }}
                {{ topic.parent.pathNames }}
                {% if topic.parent.text %}
                        {{ topic.parent.text }}
                {% endif %}
                {% if topic.parent.seo %}
                {% endif %}
                {% if topic.parent.contentGrid %}
                        {{ topic.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if topic.contentGrid %}
                {{ topic.contentGrid }}
        {% endif %}
{% endfor %}
{{ article.topic.url }}
{{ article.topic.url.absolute }}
{{ article.topic.url.path }}
{{ article.topic.pathNames }}
{% if article.topic.text %}
        {{ article.topic.text }}
{% endif %}
{% if article.topic.seo %}
        {% if article.topic.seo.description %}
                {{ article.topic.seo.description }}
        {% endif %}
        {% if article.topic.seo.keywords %}
                {{ article.topic.seo.keywords }}
        {% endif %}
        {% if article.topic.seo.title %}
                {{ article.topic.seo.title }}
        {% endif %}
{% endif %}
{% if article.topic.parent %}
        {{ article.topic.parent.id }}
        {{ article.topic.parent.name }}
        {{ article.topic.parent.image.originalHeight }}
        {{ article.topic.parent.image.originalWidth }}
        {{ article.topic.parent.image.url }}
        {% if article.topic.parent.image.alt %}
                {{ article.topic.parent.image.alt }}
        {% endif %}
        {% if article.topic.parent.image.text %}
                {{ article.topic.parent.image.text }}
        {% endif %}
        {% for topic in article.topic.parent.subtopics %}
                {{ topic.id }}
                {{ topic.name }}
                {{ topic.pathNames }}
                {% if topic.text %}
                        {{ topic.text }}
                {% endif %}
                {% if topic.seo %}
                {% endif %}
                {% if topic.contentGrid %}
                        {{ topic.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ article.topic.parent.url }}
        {{ article.topic.parent.url.absolute }}
        {{ article.topic.parent.url.path }}
        {{ article.topic.parent.pathNames }}
        {% if article.topic.parent.text %}
                {{ article.topic.parent.text }}
        {% endif %}
        {% if article.topic.parent.seo %}
                {% if article.topic.parent.seo.description %}
                        {{ article.topic.parent.seo.description }}
                {% endif %}
                {% if article.topic.parent.seo.keywords %}
                        {{ article.topic.parent.seo.keywords }}
                {% endif %}
                {% if article.topic.parent.seo.title %}
                        {{ article.topic.parent.seo.title }}
                {% endif %}
        {% endif %}
        {% if article.topic.parent.contentGrid %}
                {{ article.topic.parent.contentGrid }}
        {% endif %}
{% endif %}
{% if article.topic.contentGrid %}
        {{ article.topic.contentGrid }}
{% endif %}

{% for topic in article.topics %}
        {{ topic.id }}
        {{ topic.name }}
        {{ topic.image.originalHeight }}
        {{ topic.image.originalWidth }}
        {{ topic.image.url }}
        {% if topic.image.alt %}
                {{ topic.image.alt }}
        {% endif %}
        {% if topic.image.text %}
                {{ topic.image.text }}
        {% endif %}
        {% for topic in topic.subtopics %}
                {{ topic.id }}
                {{ topic.name }}
                {{ topic.image.originalHeight }}
                {{ topic.image.originalWidth }}
                {{ topic.image.url }}
                {% if topic.image.alt %}
                        {{ topic.image.alt }}
                {% endif %}
                {% if topic.image.text %}
                        {{ topic.image.text }}
                {% endif %}
                {{ topic.url }}
                {{ topic.url.absolute }}
                {{ topic.url.path }}
                {{ topic.pathNames }}
                {% if topic.text %}
                        {{ topic.text }}
                {% endif %}
                {% if topic.seo %}
                        {% if topic.seo.description %}
                                {{ topic.seo.description }}
                        {% endif %}
                        {% if topic.seo.keywords %}
                                {{ topic.seo.keywords }}
                        {% endif %}
                        {% if topic.seo.title %}
                                {{ topic.seo.title }}
                        {% endif %}
                {% endif %}
                {% if topic.parent %}
                        {{ topic.parent.id }}
                        {{ topic.parent.name }}
                        {{ topic.parent.pathNames }}
                        {% if topic.parent.text %}
                                {{ topic.parent.text }}
                        {% endif %}
                        {% if topic.parent.seo %}
                        {% endif %}
                        {% if topic.parent.contentGrid %}
                                {{ topic.parent.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if topic.contentGrid %}
                        {{ topic.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ topic.url }}
        {{ topic.url.absolute }}
        {{ topic.url.path }}
        {{ topic.pathNames }}
        {% if topic.text %}
                {{ topic.text }}
        {% endif %}
        {% if topic.seo %}
                {% if topic.seo.description %}
                        {{ topic.seo.description }}
                {% endif %}
                {% if topic.seo.keywords %}
                        {{ topic.seo.keywords }}
                {% endif %}
                {% if topic.seo.title %}
                        {{ topic.seo.title }}
                {% endif %}
        {% endif %}
        {% if topic.parent %}
                {{ topic.parent.id }}
                {{ topic.parent.name }}
                {{ topic.parent.image.originalHeight }}
                {{ topic.parent.image.originalWidth }}
                {{ topic.parent.image.url }}
                {% if topic.parent.image.alt %}
                        {{ topic.parent.image.alt }}
                {% endif %}
                {% if topic.parent.image.text %}
                        {{ topic.parent.image.text }}
                {% endif %}
                {% for topic in topic.parent.subtopics %}
                        {{ topic.id }}
                        {{ topic.name }}
                        {{ topic.pathNames }}
                        {% if topic.text %}
                                {{ topic.text }}
                        {% endif %}
                        {% if topic.seo %}
                        {% endif %}
                        {% if topic.contentGrid %}
                                {{ topic.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ topic.parent.url }}
                {{ topic.parent.url.absolute }}
                {{ topic.parent.url.path }}
                {{ topic.parent.pathNames }}
                {% if topic.parent.text %}
                        {{ topic.parent.text }}
                {% endif %}
                {% if topic.parent.seo %}
                        {% if topic.parent.seo.description %}
                                {{ topic.parent.seo.description }}
                        {% endif %}
                        {% if topic.parent.seo.keywords %}
                                {{ topic.parent.seo.keywords }}
                        {% endif %}
                        {% if topic.parent.seo.title %}
                                {{ topic.parent.seo.title }}
                        {% endif %}
                {% endif %}
                {% if topic.parent.contentGrid %}
                        {{ topic.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if topic.contentGrid %}
                {{ topic.contentGrid }}
        {% endif %}
{% endfor %}
{{ article.url }}
{{ article.url.absolute }}
{{ article.url.path }}

{% for video in article.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
                {{ video.image.originalHeight }}
                {{ video.image.originalWidth }}
                {{ video.image.url }}
                {% if video.image.alt %}
                        {{ video.image.alt }}
                {% endif %}
                {% if video.image.text %}
                        {{ video.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% if article.text %}
        {{ article.text }}
{% endif %}

{% if article.attribute %}
        {{ article.attribute.name }}
        {{ article.attribute.valuesHtml }}
        {% for attributeValueInstance in article.attribute.values %}
                {{ attributeValueInstance.values }}
                {{ attributeValueInstance.nameHtml }}
                {% if attributeValueInstance.colorCode %}
                        {{ attributeValueInstance.colorCode }}
                {% endif %}
                {% if attributeValueInstance.text %}
                        {{ attributeValueInstance.text }}
                {% endif %}
                {% if attributeValueInstance.unit %}
                        {{ attributeValueInstance.unit }}
                {% endif %}
                {% if attributeValueInstance.image %}
                        {{ attributeValueInstance.image.originalHeight }}
                        {{ attributeValueInstance.image.originalWidth }}
                        {{ attributeValueInstance.image.url }}
                        {% if attributeValueInstance.image.alt %}
                                {{ attributeValueInstance.image.alt }}
                        {% endif %}
                        {% if attributeValueInstance.image.text %}
                                {{ attributeValueInstance.image.text }}
                        {% endif %}
                {% endif %}
                {% if attributeValueInstance.name %}
                        {{ attributeValueInstance.name }}
                {% endif %}
        {% endfor %}
        {% if article.attribute.description %}
                {{ article.attribute.description }}
        {% endif %}
        {% if article.attribute.group %}
                {{ article.attribute.group.id }}
        {% endif %}
        {% if article.attribute.image %}
                {{ article.attribute.image.originalHeight }}
                {{ article.attribute.image.originalWidth }}
                {{ article.attribute.image.url }}
                {% if article.attribute.image.alt %}
                        {{ article.attribute.image.alt }}
                {% endif %}
                {% if article.attribute.image.text %}
                        {{ article.attribute.image.text }}
                {% endif %}
        {% endif %}
{% endif %}

{% if article.image %}
        {{ article.image.originalHeight }}
        {{ article.image.originalWidth }}
        {{ article.image.url }}
        {% if article.image.alt %}
                {{ article.image.alt }}
        {% endif %}
        {% if article.image.text %}
                {{ article.image.text }}
        {% endif %}
{% endif %}

{% if article.seo %}
        {% if article.seo.description %}
                {{ article.seo.description }}
        {% endif %}
        {% if article.seo.keywords %}
                {{ article.seo.keywords }}
        {% endif %}
        {% if article.seo.title %}
                {{ article.seo.title }}
        {% endif %}
{% endif %}

{% if article.contentGrid %}
        {{ article.contentGrid }}
{% endif %}

Attribute/Attribute

Attributy objektu Attribute/Attribute

Název

Typ

Popis

id

int

ID

name

string

Název

values

Attribute/AttributeValue[]

Hodnoty

text

string | null

Popis

meaning

AttributeMeaning | null

Význam

image

Image | null

Obrázek

Příklady:

{{ attribute.id }}
{{ attribute.name }}

{% for attributeValue in attribute.values %}
        {{ attributeValue.id }}
        {{ attributeValue.name }}
        {{ attributeValue.attribute.id }}
        {{ attributeValue.attribute.name }}
        {% if attributeValue.attribute.text %}
                {{ attributeValue.attribute.text }}
        {% endif %}
        {% if attributeValue.attribute.meaning %}
                {{ attributeValue.attribute.meaning.code }}
        {% endif %}
        {% if attributeValue.attribute.image %}
                {{ attributeValue.attribute.image.originalHeight }}
                {{ attributeValue.attribute.image.originalWidth }}
                {{ attributeValue.attribute.image.url }}
                {% if attributeValue.attribute.image.alt %}
                        {{ attributeValue.attribute.image.alt }}
                {% endif %}
                {% if attributeValue.attribute.image.text %}
                        {{ attributeValue.attribute.image.text }}
                {% endif %}
        {% endif %}
        {% if attributeValue.colorCode %}
                {{ attributeValue.colorCode }}
        {% endif %}
        {% if attributeValue.text %}
                {{ attributeValue.text }}
        {% endif %}
        {% if attributeValue.image %}
                {{ attributeValue.image.originalHeight }}
                {{ attributeValue.image.originalWidth }}
                {{ attributeValue.image.url }}
                {% if attributeValue.image.alt %}
                        {{ attributeValue.image.alt }}
                {% endif %}
                {% if attributeValue.image.text %}
                        {{ attributeValue.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% if attribute.text %}
        {{ attribute.text }}
{% endif %}

{% if attribute.meaning %}
        {{ attribute.meaning.code }}
{% endif %}

{% if attribute.image %}
        {{ attribute.image.originalHeight }}
        {{ attribute.image.originalWidth }}
        {{ attribute.image.url }}
        {% if attribute.image.alt %}
                {{ attribute.image.alt }}
        {% endif %}
        {% if attribute.image.text %}
                {{ attribute.image.text }}
        {% endif %}
{% endif %}

Attribute/AttributeGroup

Attributy objektu Attribute/AttributeGroup

Název

Typ

Popis

id

int

ID

Příklady:

{{ attributegroup.id }}

Attribute/AttributeInstance

Attributy objektu Attribute/AttributeInstance

Název

Typ

Popis

name

string

Název

valuesHtml

html

Názvy hodnot včetně případného odkazu a title, oddělené čárkou

values

Attribute/AttributeValueInstance[]

Hodnoty

description

string | null

Popis

group

Attribute/AttributeGroup | null

Skupina parametrů

image

Image | null

Obrázek

Příklady:

{{ attributeinstance.name }}
{{ attributeinstance.valuesHtml }}

{% for attributeValueInstance in attributeinstance.values %}
        {{ attributeValueInstance.values }}
        {{ attributeValueInstance.nameHtml }}
        {% if attributeValueInstance.colorCode %}
                {{ attributeValueInstance.colorCode }}
        {% endif %}
        {% if attributeValueInstance.text %}
                {{ attributeValueInstance.text }}
        {% endif %}
        {% if attributeValueInstance.unit %}
                {{ attributeValueInstance.unit }}
        {% endif %}
        {% if attributeValueInstance.image %}
                {{ attributeValueInstance.image.originalHeight }}
                {{ attributeValueInstance.image.originalWidth }}
                {{ attributeValueInstance.image.url }}
                {% if attributeValueInstance.image.alt %}
                        {{ attributeValueInstance.image.alt }}
                {% endif %}
                {% if attributeValueInstance.image.text %}
                        {{ attributeValueInstance.image.text }}
                {% endif %}
        {% endif %}
        {% if attributeValueInstance.name %}
                {{ attributeValueInstance.name }}
        {% endif %}
{% endfor %}

{% if attributeinstance.description %}
        {{ attributeinstance.description }}
{% endif %}

{% if attributeinstance.group %}
        {{ attributeinstance.group.id }}
{% endif %}

{% if attributeinstance.image %}
        {{ attributeinstance.image.originalHeight }}
        {{ attributeinstance.image.originalWidth }}
        {{ attributeinstance.image.url }}
        {% if attributeinstance.image.alt %}
                {{ attributeinstance.image.alt }}
        {% endif %}
        {% if attributeinstance.image.text %}
                {{ attributeinstance.image.text }}
        {% endif %}
{% endif %}

Attribute/AttributeValue

Hodnota parametru

Attributy objektu Attribute/AttributeValue

Název

Typ

Popis

id

int

Id

name

string

Název

attribute

Attribute/Attribute

Parametr

colorCode

string | null

Hex kód barvy

text

html | null

Text

image

Image | null

Obrázek

Příklady:

{{ attributevalue.id }}
{{ attributevalue.name }}
{{ attributevalue.attribute.id }}
{{ attributevalue.attribute.name }}
{% for attributeValue in attributevalue.attribute.values %}
        {{ attributeValue.id }}
        {{ attributeValue.name }}
        {% if attributeValue.colorCode %}
                {{ attributeValue.colorCode }}
        {% endif %}
        {% if attributeValue.text %}
                {{ attributeValue.text }}
        {% endif %}
        {% if attributeValue.image %}
                {{ attributeValue.image.originalHeight }}
                {{ attributeValue.image.originalWidth }}
                {{ attributeValue.image.url }}
                {% if attributeValue.image.alt %}
                        {{ attributeValue.image.alt }}
                {% endif %}
                {% if attributeValue.image.text %}
                        {{ attributeValue.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% if attributevalue.attribute.text %}
        {{ attributevalue.attribute.text }}
{% endif %}
{% if attributevalue.attribute.meaning %}
        {{ attributevalue.attribute.meaning.code }}
{% endif %}
{% if attributevalue.attribute.image %}
        {{ attributevalue.attribute.image.originalHeight }}
        {{ attributevalue.attribute.image.originalWidth }}
        {{ attributevalue.attribute.image.url }}
        {% if attributevalue.attribute.image.alt %}
                {{ attributevalue.attribute.image.alt }}
        {% endif %}
        {% if attributevalue.attribute.image.text %}
                {{ attributevalue.attribute.image.text }}
        {% endif %}
{% endif %}

{% if attributevalue.colorCode %}
        {{ attributevalue.colorCode }}
{% endif %}

{% if attributevalue.text %}
        {{ attributevalue.text }}
{% endif %}

{% if attributevalue.image %}
        {{ attributevalue.image.originalHeight }}
        {{ attributevalue.image.originalWidth }}
        {{ attributevalue.image.url }}
        {% if attributevalue.image.alt %}
                {{ attributevalue.image.alt }}
        {% endif %}
        {% if attributevalue.image.text %}
                {{ attributevalue.image.text }}
        {% endif %}
{% endif %}

Attribute/AttributeValueInstance

Attributy objektu Attribute/AttributeValueInstance

Název

Typ

Popis

nameHtml

html

Název včetně title a případného odkazu a title

colorCode

string | null

Hex kód barvy

text

string | null

Popis

unit

string | null

Jednotka

image

Image | null

Obrázek

name

string | int | float | null

Název

Příklady:

{{ attributevalueinstance }}
{{ attributevalueinstance.nameHtml }}

{% if attributevalueinstance.colorCode %}
        {{ attributevalueinstance.colorCode }}
{% endif %}

{% if attributevalueinstance.text %}
        {{ attributevalueinstance.text }}
{% endif %}

{% if attributevalueinstance.unit %}
        {{ attributevalueinstance.unit }}
{% endif %}

{% if attributevalueinstance.image %}
        {{ attributevalueinstance.image.originalHeight }}
        {{ attributevalueinstance.image.originalWidth }}
        {{ attributevalueinstance.image.url }}
        {% if attributevalueinstance.image.alt %}
                {{ attributevalueinstance.image.alt }}
        {% endif %}
        {% if attributevalueinstance.image.text %}
                {{ attributevalueinstance.image.text }}
        {% endif %}
{% endif %}

{% if attributevalueinstance.name %}
        {{ attributevalueinstance.name }}
{% endif %}

AttributeMeaning

Attributy objektu AttributeMeaning

Název

Typ

Popis

code

string

Kód

Příklady:

{{ attributemeaning.code }}

Author

Autor článku

Attributy objektu Author

Název

Typ

Popis

id

int

Id

name

Address/Name

Jméno a příjmení

image

Image

Obrázek

socialProfiles

SocialProfile[]

Socialní sítě

url

Url

URL

email

string | null

Email

nickname

string | null

Přezívka

phone

string | null

Telefon

text

html | null

Text

Příklady:

{{ author.id }}
{{ author.name }}
{% if author.name.first %}
        {{ author.name.first }}
{% endif %}
{% if author.name.last %}
        {{ author.name.last }}
{% endif %}
{{ author.image.originalHeight }}
{{ author.image.originalWidth }}
{{ author.image.url }}
{% if author.image.alt %}
        {{ author.image.alt }}
{% endif %}
{% if author.image.text %}
        {{ author.image.text }}
{% endif %}

{% for socialProfile in author.socialProfiles %}
        {{ socialProfile.type }}
        {{ socialProfile.url }}
{% endfor %}
{{ author.url }}
{{ author.url.absolute }}
{{ author.url.path }}

{% if author.email %}
        {{ author.email }}
{% endif %}

{% if author.nickname %}
        {{ author.nickname }}
{% endif %}

{% if author.phone %}
        {{ author.phone }}
{% endif %}

{% if author.text %}
        {{ author.text }}
{% endif %}

Availability

Attributy objektu Availability

Název

Typ

Popis

availableAmount

int

Dostupné kusy

availableAmountExpectedToStorageRoom

int

Volné kusy podle zdrojové skladu, které se budou převážet na zvolený sklad (celkem)

availableAmountInShowroom

int

Dostupné vystavené kusy

availableAmountInStockroom

int

Dostupné kusy na konkrétním skladu

availableAmountInStorageCenter

int

Dostupné kusy v konkrétním středisku

availableAmountOnWayToStorageRoom

int

Volné kusy podle zdrojové skladu, které se převáží na zvolený sklad (celkem)

availableDemandsAmountFromSupplierToStorageRoom

int

Volné kusy podle poptávky, které budou dostupné na zvoleném skladu (celkem)

hours

int

Dostupnost v hodinách

totalAmount

int

Celkové kusy (bez odečtení rezervace)

inShowroom

bool

Je vystaveno?

inStock

bool

Je skladem?

preorder

bool

Jde o předobjednávku?

watchdogSupported

bool

Je podporován hlídací pes?

deliveryOptions

DeliveryOption[]

Dostupná dodání s termínem

availableAmountsExpectedToStorageRoom

ExpectedAmount[]

Volné kusy podle zdrojové skladu, které se budou převážet na zvolený sklad (seznam)

availableAmountsOnWayToStorageRoom

ExpectedAmount[]

Volné kusy podle zdrojové skladu, které se převáží na zvolený sklad (seznam)

availableDemandsFromSupplierToStorageRoom

ExpectedSupplierAmount[]

Volné kusy podle poptávky, které budou dostupné na zvoleném skladu (seznam)

text

string | null

Popis dostupnosti

dateExpected

datetime | null

Datum očekávaného naskladnění

deliveryOption

DeliveryOption | null

Nejrychlejší dodání

Příklady:

{{ availability.availableAmount }}
{{ availability.availableAmountExpectedToStorageRoom }}
{{ availability.availableAmountInShowroom }}
{{ availability.availableAmountInStockroom }}
{{ availability.availableAmountInStorageCenter }}
{{ availability.availableAmountOnWayToStorageRoom }}
{{ availability.availableDemandsAmountFromSupplierToStorageRoom }}
{{ availability.hours }}
{{ availability.totalAmount }}
{% if availability.inShowroom %} ... {% endif %}
{% if availability.inStock %} ... {% endif %}
{% if availability.preorder %} ... {% endif %}
{% if availability.watchdogSupported %} ... {% endif %}

{% for deliveryOption in availability.deliveryOptions %}
        {{ deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {{ deliveryOption.transport.inputId }}
        {{ deliveryOption.transport.name }}
        {{ deliveryOption.transport.vatRate }}
        {% if deliveryOption.transport.branchRequired %} ... {% endif %}
        {% if deliveryOption.transport.currier %} ... {% endif %}
        {% if deliveryOption.transport.dateGuaranteed %} ... {% endif %}
        {% if deliveryOption.transport.deliveryToAddress %} ... {% endif %}
        {% if deliveryOption.transport.digital %} ... {% endif %}
        {% if deliveryOption.transport.free %} ... {% endif %}
        {% if deliveryOption.transport.pickup %} ... {% endif %}
        {% if deliveryOption.transport.selected %} ... {% endif %}
        {{ deliveryOption.transport.price.vatRate }}
        {% if deliveryOption.transport.price.discountPercent %}
                {{ deliveryOption.transport.price.discountPercent }}
        {% endif %}
        {% if deliveryOption.transport.price.discountValidTo %}
                {{ deliveryOption.transport.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if deliveryOption.transport.price.beforeDiscount %}
        {% endif %}
        {% if deliveryOption.transport.price.discount %}
        {% endif %}
        {% if deliveryOption.transport.text %}
                {{ deliveryOption.transport.text }}
        {% endif %}
        {% if deliveryOption.transport.branch %}
                {{ deliveryOption.transport.branch.code }}
                {{ deliveryOption.transport.branch.name }}
        {% endif %}
        {% if deliveryOption.transport.carrier %}
                {{ deliveryOption.transport.carrier.code }}
                {{ deliveryOption.transport.carrier.name }}
        {% endif %}
        {% if deliveryOption.transport.deliveryDate %}
                {{ deliveryOption.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ deliveryOption.transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ deliveryOption.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if deliveryOption.transport.deliveryDate.timeDelivered %}
                        {{ deliveryOption.transport.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if deliveryOption.transport.packageType %}
                {{ deliveryOption.transport.packageType.code }}
        {% endif %}
        {% if deliveryOption.transport.image %}
                {{ deliveryOption.transport.image.originalHeight }}
                {{ deliveryOption.transport.image.originalWidth }}
                {{ deliveryOption.transport.image.url }}
                {% if deliveryOption.transport.image.alt %}
                        {{ deliveryOption.transport.image.alt }}
                {% endif %}
                {% if deliveryOption.transport.image.text %}
                        {{ deliveryOption.transport.image.text }}
                {% endif %}
        {% endif %}
        {% if deliveryOption.timeDelivered %}
                {{ deliveryOption.timeDelivered }}
        {% endif %}
{% endfor %}

{% for expectedAmount in availability.availableAmountsExpectedToStorageRoom %}
        {{ expectedAmount.amount }}
        {{ expectedAmount.sourceStorageRoom.name }}
        {% if expectedAmount.sourceStorageRoom.doesSupportLocations %} ... {% endif %}
{% endfor %}

{% for expectedAmount in availability.availableAmountsOnWayToStorageRoom %}
        {{ expectedAmount.amount }}
        {{ expectedAmount.sourceStorageRoom.name }}
        {% if expectedAmount.sourceStorageRoom.doesSupportLocations %} ... {% endif %}
{% endfor %}

{% for expectedSupplierAmount in availability.availableDemandsFromSupplierToStorageRoom %}
        {{ expectedSupplierAmount.amount }}
        {{ expectedSupplierAmount.sourceStorageCenter.name }}
        {% for storageRoom in expectedSupplierAmount.sourceStorageCenter.storageRooms %}
                {{ storageRoom.name }}
                {% if storageRoom.doesSupportLocations %} ... {% endif %}
        {% endfor %}
        {% if expectedSupplierAmount.sourceStorageCenter.shortName %}
                {{ expectedSupplierAmount.sourceStorageCenter.shortName }}
        {% endif %}
        {% if expectedSupplierAmount.sourceStorageCenter.address %}
                {% if expectedSupplierAmount.sourceStorageCenter.address.city %}
                        {{ expectedSupplierAmount.sourceStorageCenter.address.city }}
                {% endif %}
                {% if expectedSupplierAmount.sourceStorageCenter.address.company %}
                        {{ expectedSupplierAmount.sourceStorageCenter.address.company }}
                {% endif %}
                {% if expectedSupplierAmount.sourceStorageCenter.address.companyId %}
                        {{ expectedSupplierAmount.sourceStorageCenter.address.companyId }}
                {% endif %}
                {% if expectedSupplierAmount.sourceStorageCenter.address.email %}
                        {{ expectedSupplierAmount.sourceStorageCenter.address.email }}
                {% endif %}
                {% if expectedSupplierAmount.sourceStorageCenter.address.phone %}
                        {{ expectedSupplierAmount.sourceStorageCenter.address.phone }}
                {% endif %}
                {% if expectedSupplierAmount.sourceStorageCenter.address.region %}
                        {{ expectedSupplierAmount.sourceStorageCenter.address.region }}
                {% endif %}
                {% if expectedSupplierAmount.sourceStorageCenter.address.street %}
                        {{ expectedSupplierAmount.sourceStorageCenter.address.street }}
                {% endif %}
                {% if expectedSupplierAmount.sourceStorageCenter.address.vatId %}
                        {{ expectedSupplierAmount.sourceStorageCenter.address.vatId }}
                {% endif %}
                {% if expectedSupplierAmount.sourceStorageCenter.address.web %}
                        {{ expectedSupplierAmount.sourceStorageCenter.address.web }}
                {% endif %}
                {% if expectedSupplierAmount.sourceStorageCenter.address.zip %}
                        {{ expectedSupplierAmount.sourceStorageCenter.address.zip }}
                {% endif %}
                {% if expectedSupplierAmount.sourceStorageCenter.address.purpose %}
                {% endif %}
                {% if expectedSupplierAmount.sourceStorageCenter.address.country %}
                {% endif %}
        {% endif %}
        {% if expectedSupplierAmount.expectedDate %}
                {{ expectedSupplierAmount.expectedDate|date('d. m. Y H:i') }}
        {% endif %}
        {% if expectedSupplierAmount.orderDate %}
                {{ expectedSupplierAmount.orderDate|date('d. m. Y H:i') }}
        {% endif %}
{% endfor %}

{% if availability.text %}
        {{ availability.text }}
{% endif %}

{% if availability.dateExpected %}
        {{ availability.dateExpected|date('d. m. Y H:i') }}
{% endif %}

{% if availability.deliveryOption %}
        {{ availability.deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ availability.deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ availability.deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {{ availability.deliveryOption.transport.inputId }}
        {{ availability.deliveryOption.transport.name }}
        {{ availability.deliveryOption.transport.vatRate }}
        {% if availability.deliveryOption.transport.branchRequired %} ... {% endif %}
        {% if availability.deliveryOption.transport.currier %} ... {% endif %}
        {% if availability.deliveryOption.transport.dateGuaranteed %} ... {% endif %}
        {% if availability.deliveryOption.transport.deliveryToAddress %} ... {% endif %}
        {% if availability.deliveryOption.transport.digital %} ... {% endif %}
        {% if availability.deliveryOption.transport.free %} ... {% endif %}
        {% if availability.deliveryOption.transport.pickup %} ... {% endif %}
        {% if availability.deliveryOption.transport.selected %} ... {% endif %}
        {{ availability.deliveryOption.transport.price.vatRate }}
        {% if availability.deliveryOption.transport.price.discountPercent %}
                {{ availability.deliveryOption.transport.price.discountPercent }}
        {% endif %}
        {% if availability.deliveryOption.transport.price.discountValidTo %}
                {{ availability.deliveryOption.transport.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if availability.deliveryOption.transport.price.beforeDiscount %}
        {% endif %}
        {% if availability.deliveryOption.transport.price.discount %}
        {% endif %}
        {% if availability.deliveryOption.transport.text %}
                {{ availability.deliveryOption.transport.text }}
        {% endif %}
        {% if availability.deliveryOption.transport.branch %}
                {{ availability.deliveryOption.transport.branch.code }}
                {{ availability.deliveryOption.transport.branch.name }}
        {% endif %}
        {% if availability.deliveryOption.transport.carrier %}
                {{ availability.deliveryOption.transport.carrier.code }}
                {{ availability.deliveryOption.transport.carrier.name }}
        {% endif %}
        {% if availability.deliveryOption.transport.deliveryDate %}
                {{ availability.deliveryOption.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ availability.deliveryOption.transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ availability.deliveryOption.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if availability.deliveryOption.transport.deliveryDate.timeDelivered %}
                        {{ availability.deliveryOption.transport.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if availability.deliveryOption.transport.packageType %}
                {{ availability.deliveryOption.transport.packageType.code }}
        {% endif %}
        {% if availability.deliveryOption.transport.image %}
                {{ availability.deliveryOption.transport.image.originalHeight }}
                {{ availability.deliveryOption.transport.image.originalWidth }}
                {{ availability.deliveryOption.transport.image.url }}
                {% if availability.deliveryOption.transport.image.alt %}
                        {{ availability.deliveryOption.transport.image.alt }}
                {% endif %}
                {% if availability.deliveryOption.transport.image.text %}
                        {{ availability.deliveryOption.transport.image.text }}
                {% endif %}
        {% endif %}
        {% if availability.deliveryOption.timeDelivered %}
                {{ availability.deliveryOption.timeDelivered }}
        {% endif %}
{% endif %}

AvailableUpsellGroup

Attributy objektu AvailableUpsellGroup

Název

Typ

Popis

id

int

ID

name

string

Název skupiny

singleSelection

bool

Režim výběru

upsells

Upsell[]

Dostupné upselly

code

string | null

Název skupiny

Příklady:

{{ availableupsellgroup.id }}
{{ availableupsellgroup.name }}
{% if availableupsellgroup.singleSelection %} ... {% endif %}

{% for upsell in availableupsellgroup.upsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {{ upsell.category.id }}
        {{ upsell.category.productCount }}
        {{ upsell.category.productInStockCount }}
        {{ upsell.category.totalStockQuantity }}
        {{ upsell.category.headline }}
        {{ upsell.category.menuName }}
        {{ upsell.category.name }}
        {% if upsell.category.flagErotic %} ... {% endif %}
        {% if upsell.category.flagImportant %} ... {% endif %}
        {% if upsell.category.noFollow %} ... {% endif %}
        {% for category in upsell.category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ upsell.category.url }}
        {{ upsell.category.url.absolute }}
        {{ upsell.category.url.path }}
        {{ upsell.category.variantType.id }}
        {{ upsell.category.variantType.name }}
        {% for video in upsell.category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.category.pathNames }}
        {{ upsell.category.pathIds }}
        {{ upsell.category.templateAttribute }}
        {% if upsell.category.subHeadline %}
                {{ upsell.category.subHeadline }}
        {% endif %}
        {% if upsell.category.text %}
                {{ upsell.category.text }}
        {% endif %}
        {% if upsell.category.parent %}
                {{ upsell.category.parent.id }}
                {{ upsell.category.parent.productCount }}
                {{ upsell.category.parent.productInStockCount }}
                {{ upsell.category.parent.totalStockQuantity }}
                {{ upsell.category.parent.headline }}
                {{ upsell.category.parent.menuName }}
                {{ upsell.category.parent.name }}
                {% if upsell.category.parent.flagErotic %} ... {% endif %}
                {% if upsell.category.parent.flagImportant %} ... {% endif %}
                {% if upsell.category.parent.noFollow %} ... {% endif %}
                {% for category in upsell.category.parent.subcategories %}
                {% endfor %}
                {% for video in upsell.category.parent.videos %}
                {% endfor %}
                {{ upsell.category.parent.pathNames }}
                {{ upsell.category.parent.pathIds }}
                {{ upsell.category.parent.templateAttribute }}
                {% if upsell.category.parent.subHeadline %}
                        {{ upsell.category.parent.subHeadline }}
                {% endif %}
                {% if upsell.category.parent.text %}
                        {{ upsell.category.parent.text }}
                {% endif %}
                {% if upsell.category.parent.image %}
                {% endif %}
                {% if upsell.category.parent.contentGrid %}
                        {{ upsell.category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.category.image %}
                {{ upsell.category.image.originalHeight }}
                {{ upsell.category.image.originalWidth }}
                {{ upsell.category.image.url }}
                {% if upsell.category.image.alt %}
                        {{ upsell.category.image.alt }}
                {% endif %}
                {% if upsell.category.image.text %}
                        {{ upsell.category.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.category.contentGrid %}
                {{ upsell.category.contentGrid }}
        {% endif %}
        {{ upsell.price.vatRate }}
        {{ upsell.price.current.currency }}
        {{ upsell.price.current.formatted }}
        {{ upsell.price.current.value }}
        {% if upsell.price.current.perUnit %}
        {% endif %}
        {% if upsell.price.discountPercent %}
                {{ upsell.price.discountPercent }}
        {% endif %}
        {% if upsell.price.discountValidTo %}
                {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if upsell.price.beforeDiscount %}
                {{ upsell.price.beforeDiscount.currency }}
                {{ upsell.price.beforeDiscount.formatted }}
                {{ upsell.price.beforeDiscount.value }}
                {% if upsell.price.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if upsell.price.discount %}
                {{ upsell.price.discount.currency }}
                {{ upsell.price.discount.formatted }}
                {{ upsell.price.discount.value }}
                {% if upsell.price.discount.perUnit %}
                {% endif %}
        {% endif %}
        {{ upsell.product.id }}
        {{ upsell.product.name }}
        {{ upsell.product.trackingId }}
        {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
        {% if upsell.product.active %} ... {% endif %}
        {% if upsell.product.compared %} ... {% endif %}
        {% if upsell.product.differentVariantPrices %} ... {% endif %}
        {% if upsell.product.flagNew %} ... {% endif %}
        {% if upsell.product.flagPromo %} ... {% endif %}
        {% if upsell.product.flagSecondHand %} ... {% endif %}
        {% if upsell.product.flagSellout %} ... {% endif %}
        {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
        {% if upsell.product.soldSeparately %} ... {% endif %}
        {% for address in upsell.product.publicContacts %}
                {% if address.city %}
                        {{ address.city }}
                {% endif %}
                {% if address.company %}
                        {{ address.company }}
                {% endif %}
                {% if address.companyId %}
                        {{ address.companyId }}
                {% endif %}
                {% if address.email %}
                        {{ address.email }}
                {% endif %}
                {% if address.phone %}
                        {{ address.phone }}
                {% endif %}
                {% if address.region %}
                        {{ address.region }}
                {% endif %}
                {% if address.street %}
                        {{ address.street }}
                {% endif %}
                {% if address.vatId %}
                        {{ address.vatId }}
                {% endif %}
                {% if address.web %}
                        {{ address.web }}
                {% endif %}
                {% if address.zip %}
                        {{ address.zip }}
                {% endif %}
                {% if address.purpose %}
                {% endif %}
                {% if address.country %}
                {% endif %}
        {% endfor %}
        {% for attributeInstance in upsell.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.category.id }}
        {{ upsell.product.category.productCount }}
        {{ upsell.product.category.productInStockCount }}
        {{ upsell.product.category.totalStockQuantity }}
        {{ upsell.product.category.headline }}
        {{ upsell.product.category.menuName }}
        {{ upsell.product.category.name }}
        {% if upsell.product.category.flagErotic %} ... {% endif %}
        {% if upsell.product.category.flagImportant %} ... {% endif %}
        {% if upsell.product.category.noFollow %} ... {% endif %}
        {% for category in upsell.product.category.subcategories %}
        {% endfor %}
        {% for video in upsell.product.category.videos %}
        {% endfor %}
        {{ upsell.product.category.pathNames }}
        {{ upsell.product.category.pathIds }}
        {{ upsell.product.category.templateAttribute }}
        {% if upsell.product.category.subHeadline %}
                {{ upsell.product.category.subHeadline }}
        {% endif %}
        {% if upsell.product.category.text %}
                {{ upsell.product.category.text }}
        {% endif %}
        {% if upsell.product.category.parent %}
        {% endif %}
        {% if upsell.product.category.image %}
        {% endif %}
        {% if upsell.product.category.contentGrid %}
                {{ upsell.product.category.contentGrid }}
        {% endif %}
        {% for category in upsell.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in upsell.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in upsell.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.item.cartAmountRequiredMultiplier }}
        {{ upsell.product.item.id }}
        {{ upsell.product.item.loyaltyPointsAmount }}
        {{ upsell.product.item.name }}
        {{ upsell.product.item.trackingId }}
        {% if upsell.product.item.digital %} ... {% endif %}
        {% if upsell.product.item.sellable %} ... {% endif %}
        {% if upsell.product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in upsell.product.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in upsell.product.item.availableUpsells %}
        {% endfor %}
        {{ upsell.product.item.trackingIds }}
        {{ upsell.product.item.storageLocations }}
        {% if upsell.product.item.packageWeight %}
                {{ upsell.product.item.packageWeight }}
        {% endif %}
        {% if upsell.product.item.code %}
                {{ upsell.product.item.code }}
        {% endif %}
        {% if upsell.product.item.packageHeight %}
                {{ upsell.product.item.packageHeight }}
        {% endif %}
        {% if upsell.product.item.packageLength %}
                {{ upsell.product.item.packageLength }}
        {% endif %}
        {% if upsell.product.item.packageWidth %}
                {{ upsell.product.item.packageWidth }}
        {% endif %}
        {% if upsell.product.item.bundle %}
        {% endif %}
        {% if upsell.product.item.cheapestDelivery %}
        {% endif %}
        {% if upsell.product.item.freeDelivery %}
        {% endif %}
        {% if upsell.product.item.closestFreeDelivery %}
        {% endif %}
        {% if upsell.product.item.packageDimensions %}
        {% endif %}
        {% if upsell.product.item.image %}
        {% endif %}
        {% if upsell.product.item.price %}
        {% endif %}
        {% if upsell.product.item.url %}
        {% endif %}
        {% if upsell.product.item.variant %}
        {% endif %}
        {% for label in upsell.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productDesigner in upsell.product.configurators %}
                {{ productDesigner.name }}
                {% if productDesigner.result %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in upsell.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in upsell.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for address in product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productDesigner in product.configurators %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for upsell in product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.rating.count }}
        {% if upsell.product.rating.voted %} ... {% endif %}
        {% if upsell.product.rating.average %}
                {{ upsell.product.rating.average }}
        {% endif %}
        {% for upsell in upsell.product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.url }}
        {{ upsell.product.url.absolute }}
        {{ upsell.product.url.path }}
        {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.variantType.id }}
        {{ upsell.product.variantType.name }}
        {% for video in upsell.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.trackingIds }}
        {% if upsell.product.currentSubName %}
                {{ upsell.product.currentSubName }}
        {% endif %}
        {% if upsell.product.nameSuffix %}
                {{ upsell.product.nameSuffix }}
        {% endif %}
        {% if upsell.product.nameSupplier %}
                {{ upsell.product.nameSupplier }}
        {% endif %}
        {% if upsell.product.text %}
                {{ upsell.product.text }}
        {% endif %}
        {% if upsell.product.attribute %}
                {{ upsell.product.attribute.name }}
                {{ upsell.product.attribute.valuesHtml }}
                {% for attributeValueInstance in upsell.product.attribute.values %}
                {% endfor %}
                {% if upsell.product.attribute.description %}
                        {{ upsell.product.attribute.description }}
                {% endif %}
                {% if upsell.product.attribute.group %}
                {% endif %}
                {% if upsell.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if upsell.product.brand %}
                {{ upsell.product.brand.id }}
                {{ upsell.product.brand.headline }}
                {{ upsell.product.brand.name }}
                {% if upsell.product.brand.flagImportant %} ... {% endif %}
                {% for address in upsell.product.brand.publicContacts %}
                {% endfor %}
                {% for category in upsell.product.brand.categories %}
                {% endfor %}
                {% if upsell.product.brand.code %}
                        {{ upsell.product.brand.code }}
                {% endif %}
                {% if upsell.product.brand.web %}
                        {{ upsell.product.brand.web }}
                {% endif %}
                {% if upsell.product.brand.text %}
                        {{ upsell.product.brand.text }}
                {% endif %}
                {% if upsell.product.brand.image %}
                {% endif %}
                {% if upsell.product.brand.seo %}
                {% endif %}
                {% if upsell.product.brand.contentGrid %}
                        {{ upsell.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.product.image %}
                {{ upsell.product.image.originalHeight }}
                {{ upsell.product.image.originalWidth }}
                {{ upsell.product.image.url }}
                {% if upsell.product.image.alt %}
                        {{ upsell.product.image.alt }}
                {% endif %}
                {% if upsell.product.image.text %}
                        {{ upsell.product.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.product.imageForEnumValueId %}
                {{ upsell.product.imageForEnumValueId.originalHeight }}
                {{ upsell.product.imageForEnumValueId.originalWidth }}
                {{ upsell.product.imageForEnumValueId.url }}
                {% if upsell.product.imageForEnumValueId.alt %}
                        {{ upsell.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if upsell.product.imageForEnumValueId.text %}
                        {{ upsell.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if upsell.product.successor %}
                {{ upsell.product.successor.id }}
                {{ upsell.product.successor.name }}
                {{ upsell.product.successor.trackingId }}
                {{ upsell.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.successor.active %} ... {% endif %}
                {% if upsell.product.successor.compared %} ... {% endif %}
                {% if upsell.product.successor.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.successor.flagNew %} ... {% endif %}
                {% if upsell.product.successor.flagPromo %} ... {% endif %}
                {% if upsell.product.successor.flagSecondHand %} ... {% endif %}
                {% if upsell.product.successor.flagSellout %} ... {% endif %}
                {% if upsell.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.successor.soldSeparately %} ... {% endif %}
                {% for address in upsell.product.successor.publicContacts %}
                {% endfor %}
                {% for attributeInstance in upsell.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.successor.categories %}
                {% endfor %}
                {% for category in upsell.product.successor.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.successor.files %}
                {% endfor %}
                {% for image in upsell.product.successor.images %}
                {% endfor %}
                {% for image in upsell.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.successor.images360 %}
                {% endfor %}
                {% for image in upsell.product.successor.currentImages %}
                {% endfor %}
                {% for image in upsell.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.successor.otherImages %}
                {% endfor %}
                {% for label in upsell.product.successor.labels %}
                {% endfor %}
                {% for productDesigner in upsell.product.successor.configurators %}
                {% endfor %}
                {% for productEnumValue in upsell.product.successor.enumValues %}
                {% endfor %}
                {% for product in upsell.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for upsell in upsell.product.successor.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.successor.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.successor.variants %}
                {% endfor %}
                {% for variant in upsell.product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.successor.videos %}
                {% endfor %}
                {{ upsell.product.successor.trackingIds }}
                {% if upsell.product.successor.currentSubName %}
                        {{ upsell.product.successor.currentSubName }}
                {% endif %}
                {% if upsell.product.successor.nameSuffix %}
                        {{ upsell.product.successor.nameSuffix }}
                {% endif %}
                {% if upsell.product.successor.nameSupplier %}
                        {{ upsell.product.successor.nameSupplier }}
                {% endif %}
                {% if upsell.product.successor.text %}
                        {{ upsell.product.successor.text }}
                {% endif %}
                {% if upsell.product.successor.attribute %}
                {% endif %}
                {% if upsell.product.successor.brand %}
                {% endif %}
                {% if upsell.product.successor.image %}
                {% endif %}
                {% if upsell.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.successor.seo %}
                {% endif %}
                {% if upsell.product.successor.supplier %}
                {% endif %}
                {% if upsell.product.successor.unit %}
                {% endif %}
                {% if upsell.product.successor.variant %}
                {% endif %}
                {% if upsell.product.successor.warranty %}
                {% endif %}
                {% if upsell.product.successor.contentGrid %}
                        {{ upsell.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.product.seo %}
                {% if upsell.product.seo.description %}
                        {{ upsell.product.seo.description }}
                {% endif %}
                {% if upsell.product.seo.keywords %}
                        {{ upsell.product.seo.keywords }}
                {% endif %}
                {% if upsell.product.seo.title %}
                        {{ upsell.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if upsell.product.supplier %}
                {{ upsell.product.supplier.id }}
                {{ upsell.product.supplier.name }}
                {% for address in upsell.product.supplier.publicContacts %}
                {% endfor %}
        {% endif %}
        {% if upsell.product.unit %}
                {{ upsell.product.unit.name }}
        {% endif %}
        {% if upsell.product.variant %}
                {{ upsell.product.variant.id }}
                {{ upsell.product.variant.name }}
                {{ upsell.product.variant.trackingId }}
                {% if upsell.product.variant.active %} ... {% endif %}
                {% if upsell.product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in upsell.product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in upsell.product.variant.enumValues %}
                {% endfor %}
                {% for image in upsell.product.variant.images %}
                {% endfor %}
                {% for upsell in upsell.product.variant.availableUpsells %}
                {% endfor %}
                {% if upsell.product.variant.legacyRel %}
                        {{ upsell.product.variant.legacyRel }}
                {% endif %}
                {% if upsell.product.variant.image %}
                {% endif %}
        {% endif %}
        {% if upsell.product.warranty %}
                {{ upsell.product.warranty.months }}
        {% endif %}
        {% if upsell.product.contentGrid %}
                {{ upsell.product.contentGrid }}
        {% endif %}
        {{ upsell.group.id }}
        {{ upsell.group.requiredNoteMaximumLength }}
        {{ upsell.group.name }}
        {% if upsell.group.requiredNote %} ... {% endif %}
        {% if upsell.group.requiredUpload %} ... {% endif %}
        {% if upsell.group.singleSelection %} ... {% endif %}
        {% if upsell.group.text %}
                {{ upsell.group.text }}
        {% endif %}
        {% if upsell.group.uploadInput %}
                {{ upsell.group.uploadInput }}
        {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
                {{ upsell.image.originalHeight }}
                {{ upsell.image.originalWidth }}
                {{ upsell.image.url }}
                {% if upsell.image.alt %}
                        {{ upsell.image.alt }}
                {% endif %}
                {% if upsell.image.text %}
                        {{ upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.unit %}
                {{ upsell.unit.name }}
        {% endif %}
{% endfor %}

{% if availableupsellgroup.code %}
        {{ availableupsellgroup.code }}
{% endif %}

BannerSection

Sekce bannerů

Attributy objektu BannerSection

Název

Typ

Popis

id

int

Id

height

int | null

Výška (px)

width

int | null

Šířka (px)

code

string | null

Kód sekce

name

string | null

Název

Příklady:

{{ bannersection.id }}

{% if bannersection.height %}
        {{ bannersection.height }}
{% endif %}

{% if bannersection.width %}
        {{ bannersection.width }}
{% endif %}

{% if bannersection.code %}
        {{ bannersection.code }}
{% endif %}

{% if bannersection.name %}
        {{ bannersection.name }}
{% endif %}

Brand

Attributy objektu Brand

Název

Typ

Popis

id

int

ID

headline

string

Nadpis

name

string

Název

flagImportant

bool

Důležitý

publicContacts

Address[]

Veřejné kontakty

categories

Category[]

Kategorie značky (hezká URL nebo klasický filtr)

url

Url

URL značky

categoryUrl

Url

URL kategorie značky

code

string | null

Kód

web

string | null

Web značky

text

html | null

Text

image

Image | null

Obrázek

seo

Seo | null

SEO attributy

contentGrid

array | null

Content grid

Příklady:

{{ brand.id }}
{{ brand.headline }}
{{ brand.name }}
{% if brand.flagImportant %} ... {% endif %}

{% for address in brand.publicContacts %}
        {{ address.name }}
        {% if address.name.first %}
                {{ address.name.first }}
        {% endif %}
        {% if address.name.last %}
                {{ address.name.last }}
        {% endif %}
        {% if address.city %}
                {{ address.city }}
        {% endif %}
        {% if address.company %}
                {{ address.company }}
        {% endif %}
        {% if address.companyId %}
                {{ address.companyId }}
        {% endif %}
        {% if address.email %}
                {{ address.email }}
        {% endif %}
        {% if address.phone %}
                {{ address.phone }}
        {% endif %}
        {% if address.region %}
                {{ address.region }}
        {% endif %}
        {% if address.street %}
                {{ address.street }}
        {% endif %}
        {% if address.vatId %}
                {{ address.vatId }}
        {% endif %}
        {% if address.web %}
                {{ address.web }}
        {% endif %}
        {% if address.zip %}
                {{ address.zip }}
        {% endif %}
        {% if address.purpose %}
                {{ address.purpose.headline }}
        {% endif %}
        {% if address.country %}
                {{ address.country.code }}
                {{ address.country.flagCircleUrl }}
                {{ address.country.flagUrl }}
                {{ address.country.name }}
                {% if address.country.eU %} ... {% endif %}
        {% endif %}
{% endfor %}

{% for category in brand.categories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {{ category.url }}
                {{ category.url.absolute }}
                {{ category.url.path }}
                {{ category.variantType.id }}
                {{ category.variantType.name }}
                {% for video in category.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                        {{ category.parent.id }}
                        {{ category.parent.productCount }}
                        {{ category.parent.productInStockCount }}
                        {{ category.parent.totalStockQuantity }}
                        {{ category.parent.headline }}
                        {{ category.parent.menuName }}
                        {{ category.parent.name }}
                        {% if category.parent.flagErotic %} ... {% endif %}
                        {% if category.parent.flagImportant %} ... {% endif %}
                        {% if category.parent.noFollow %} ... {% endif %}
                        {% for video in category.parent.videos %}
                        {% endfor %}
                        {{ category.parent.pathNames }}
                        {{ category.parent.pathIds }}
                        {{ category.parent.templateAttribute }}
                        {% if category.parent.subHeadline %}
                                {{ category.parent.subHeadline }}
                        {% endif %}
                        {% if category.parent.text %}
                                {{ category.parent.text }}
                        {% endif %}
                        {% if category.parent.image %}
                        {% endif %}
                        {% if category.parent.contentGrid %}
                                {{ category.parent.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if category.image %}
                        {{ category.image.originalHeight }}
                        {{ category.image.originalWidth }}
                        {{ category.image.url }}
                        {% if category.image.alt %}
                                {{ category.image.alt }}
                        {% endif %}
                        {% if category.image.text %}
                                {{ category.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                        {{ video.image.originalHeight }}
                        {{ video.image.originalWidth }}
                        {{ video.image.url }}
                        {% if video.image.alt %}
                                {{ video.image.alt }}
                        {% endif %}
                        {% if video.image.text %}
                                {{ video.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ category.pathNames }}
        {{ category.pathIds }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {% for category in category.parent.subcategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathNames }}
                        {{ category.pathIds }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ category.parent.url }}
                {{ category.parent.url.absolute }}
                {{ category.parent.url.path }}
                {{ category.parent.variantType.id }}
                {{ category.parent.variantType.name }}
                {% for video in category.parent.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.parent.pathNames }}
                {{ category.parent.pathIds }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                        {{ category.parent.image.originalHeight }}
                        {{ category.parent.image.originalWidth }}
                        {{ category.parent.image.url }}
                        {% if category.parent.image.alt %}
                                {{ category.parent.image.alt }}
                        {% endif %}
                        {% if category.parent.image.text %}
                                {{ category.parent.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{{ brand.url }}
{{ brand.url.absolute }}
{{ brand.url.path }}
{{ brand.categoryUrl }}
{{ brand.categoryUrl.absolute }}
{{ brand.categoryUrl.path }}

{% if brand.code %}
        {{ brand.code }}
{% endif %}

{% if brand.web %}
        {{ brand.web }}
{% endif %}

{% if brand.text %}
        {{ brand.text }}
{% endif %}

{% if brand.image %}
        {{ brand.image.originalHeight }}
        {{ brand.image.originalWidth }}
        {{ brand.image.url }}
        {% if brand.image.alt %}
                {{ brand.image.alt }}
        {% endif %}
        {% if brand.image.text %}
                {{ brand.image.text }}
        {% endif %}
{% endif %}

{% if brand.seo %}
        {% if brand.seo.description %}
                {{ brand.seo.description }}
        {% endif %}
        {% if brand.seo.keywords %}
                {{ brand.seo.keywords }}
        {% endif %}
        {% if brand.seo.title %}
                {{ brand.seo.title }}
        {% endif %}
{% endif %}

{% if brand.contentGrid %}
        {{ brand.contentGrid }}
{% endif %}

BrandCategory

Attributy objektu BrandCategory

Název

Typ

Popis

brand

Brand

Značka

category

Category

Kategorie

url

Url

URL

parent

BrandCategory | null

Nadřazená kategorie

Příklady:

{{ brandcategory.brand.id }}
{{ brandcategory.brand.headline }}
{{ brandcategory.brand.name }}
{% if brandcategory.brand.flagImportant %} ... {% endif %}
{% for address in brandcategory.brand.publicContacts %}
        {{ address.name }}
        {% if address.name.first %}
                {{ address.name.first }}
        {% endif %}
        {% if address.name.last %}
                {{ address.name.last }}
        {% endif %}
        {% if address.city %}
                {{ address.city }}
        {% endif %}
        {% if address.company %}
                {{ address.company }}
        {% endif %}
        {% if address.companyId %}
                {{ address.companyId }}
        {% endif %}
        {% if address.email %}
                {{ address.email }}
        {% endif %}
        {% if address.phone %}
                {{ address.phone }}
        {% endif %}
        {% if address.region %}
                {{ address.region }}
        {% endif %}
        {% if address.street %}
                {{ address.street }}
        {% endif %}
        {% if address.vatId %}
                {{ address.vatId }}
        {% endif %}
        {% if address.web %}
                {{ address.web }}
        {% endif %}
        {% if address.zip %}
                {{ address.zip }}
        {% endif %}
        {% if address.purpose %}
                {{ address.purpose.headline }}
        {% endif %}
        {% if address.country %}
                {{ address.country.code }}
                {{ address.country.flagCircleUrl }}
                {{ address.country.flagUrl }}
                {{ address.country.name }}
                {% if address.country.eU %} ... {% endif %}
        {% endif %}
{% endfor %}
{% for category in brandcategory.brand.categories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ category.pathNames }}
        {{ category.pathIds }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {% for category in category.parent.subcategories %}
                {% endfor %}
                {% for video in category.parent.videos %}
                {% endfor %}
                {{ category.parent.pathNames }}
                {{ category.parent.pathIds }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{{ brandcategory.brand.url }}
{{ brandcategory.brand.url.absolute }}
{{ brandcategory.brand.url.path }}
{{ brandcategory.brand.categoryUrl }}
{{ brandcategory.brand.categoryUrl.absolute }}
{{ brandcategory.brand.categoryUrl.path }}
{% if brandcategory.brand.code %}
        {{ brandcategory.brand.code }}
{% endif %}
{% if brandcategory.brand.web %}
        {{ brandcategory.brand.web }}
{% endif %}
{% if brandcategory.brand.text %}
        {{ brandcategory.brand.text }}
{% endif %}
{% if brandcategory.brand.image %}
        {{ brandcategory.brand.image.originalHeight }}
        {{ brandcategory.brand.image.originalWidth }}
        {{ brandcategory.brand.image.url }}
        {% if brandcategory.brand.image.alt %}
                {{ brandcategory.brand.image.alt }}
        {% endif %}
        {% if brandcategory.brand.image.text %}
                {{ brandcategory.brand.image.text }}
        {% endif %}
{% endif %}
{% if brandcategory.brand.seo %}
        {% if brandcategory.brand.seo.description %}
                {{ brandcategory.brand.seo.description }}
        {% endif %}
        {% if brandcategory.brand.seo.keywords %}
                {{ brandcategory.brand.seo.keywords }}
        {% endif %}
        {% if brandcategory.brand.seo.title %}
                {{ brandcategory.brand.seo.title }}
        {% endif %}
{% endif %}
{% if brandcategory.brand.contentGrid %}
        {{ brandcategory.brand.contentGrid }}
{% endif %}
{{ brandcategory.category.id }}
{{ brandcategory.category.productCount }}
{{ brandcategory.category.productInStockCount }}
{{ brandcategory.category.totalStockQuantity }}
{{ brandcategory.category.headline }}
{{ brandcategory.category.menuName }}
{{ brandcategory.category.name }}
{% if brandcategory.category.flagErotic %} ... {% endif %}
{% if brandcategory.category.flagImportant %} ... {% endif %}
{% if brandcategory.category.noFollow %} ... {% endif %}
{% for category in brandcategory.category.subcategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ category.pathNames }}
        {{ category.pathIds }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {% for video in category.parent.videos %}
                {% endfor %}
                {{ category.parent.pathNames }}
                {{ category.parent.pathIds }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{{ brandcategory.category.url }}
{{ brandcategory.category.url.absolute }}
{{ brandcategory.category.url.path }}
{{ brandcategory.category.variantType.id }}
{{ brandcategory.category.variantType.name }}
{% for video in brandcategory.category.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
                {{ video.image.originalHeight }}
                {{ video.image.originalWidth }}
                {{ video.image.url }}
                {% if video.image.alt %}
                        {{ video.image.alt }}
                {% endif %}
                {% if video.image.text %}
                        {{ video.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ brandcategory.category.pathNames }}
{{ brandcategory.category.pathIds }}
{{ brandcategory.category.templateAttribute }}
{% if brandcategory.category.subHeadline %}
        {{ brandcategory.category.subHeadline }}
{% endif %}
{% if brandcategory.category.text %}
        {{ brandcategory.category.text }}
{% endif %}
{% if brandcategory.category.parent %}
        {{ brandcategory.category.parent.id }}
        {{ brandcategory.category.parent.productCount }}
        {{ brandcategory.category.parent.productInStockCount }}
        {{ brandcategory.category.parent.totalStockQuantity }}
        {{ brandcategory.category.parent.headline }}
        {{ brandcategory.category.parent.menuName }}
        {{ brandcategory.category.parent.name }}
        {% if brandcategory.category.parent.flagErotic %} ... {% endif %}
        {% if brandcategory.category.parent.flagImportant %} ... {% endif %}
        {% if brandcategory.category.parent.noFollow %} ... {% endif %}
        {% for category in brandcategory.category.parent.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ brandcategory.category.parent.url }}
        {{ brandcategory.category.parent.url.absolute }}
        {{ brandcategory.category.parent.url.path }}
        {{ brandcategory.category.parent.variantType.id }}
        {{ brandcategory.category.parent.variantType.name }}
        {% for video in brandcategory.category.parent.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ brandcategory.category.parent.pathNames }}
        {{ brandcategory.category.parent.pathIds }}
        {{ brandcategory.category.parent.templateAttribute }}
        {% if brandcategory.category.parent.subHeadline %}
                {{ brandcategory.category.parent.subHeadline }}
        {% endif %}
        {% if brandcategory.category.parent.text %}
                {{ brandcategory.category.parent.text }}
        {% endif %}
        {% if brandcategory.category.parent.image %}
                {{ brandcategory.category.parent.image.originalHeight }}
                {{ brandcategory.category.parent.image.originalWidth }}
                {{ brandcategory.category.parent.image.url }}
                {% if brandcategory.category.parent.image.alt %}
                        {{ brandcategory.category.parent.image.alt }}
                {% endif %}
                {% if brandcategory.category.parent.image.text %}
                        {{ brandcategory.category.parent.image.text }}
                {% endif %}
        {% endif %}
        {% if brandcategory.category.parent.contentGrid %}
                {{ brandcategory.category.parent.contentGrid }}
        {% endif %}
{% endif %}
{% if brandcategory.category.image %}
        {{ brandcategory.category.image.originalHeight }}
        {{ brandcategory.category.image.originalWidth }}
        {{ brandcategory.category.image.url }}
        {% if brandcategory.category.image.alt %}
                {{ brandcategory.category.image.alt }}
        {% endif %}
        {% if brandcategory.category.image.text %}
                {{ brandcategory.category.image.text }}
        {% endif %}
{% endif %}
{% if brandcategory.category.contentGrid %}
        {{ brandcategory.category.contentGrid }}
{% endif %}
{{ brandcategory.url }}
{{ brandcategory.url.absolute }}
{{ brandcategory.url.path }}

{% if brandcategory.parent %}
        {{ brandcategory.parent.brand.id }}
        {{ brandcategory.parent.brand.headline }}
        {{ brandcategory.parent.brand.name }}
        {% if brandcategory.parent.brand.flagImportant %} ... {% endif %}
        {% for address in brandcategory.parent.brand.publicContacts %}
                {% if address.city %}
                        {{ address.city }}
                {% endif %}
                {% if address.company %}
                        {{ address.company }}
                {% endif %}
                {% if address.companyId %}
                        {{ address.companyId }}
                {% endif %}
                {% if address.email %}
                        {{ address.email }}
                {% endif %}
                {% if address.phone %}
                        {{ address.phone }}
                {% endif %}
                {% if address.region %}
                        {{ address.region }}
                {% endif %}
                {% if address.street %}
                        {{ address.street }}
                {% endif %}
                {% if address.vatId %}
                        {{ address.vatId }}
                {% endif %}
                {% if address.web %}
                        {{ address.web }}
                {% endif %}
                {% if address.zip %}
                        {{ address.zip }}
                {% endif %}
                {% if address.purpose %}
                {% endif %}
                {% if address.country %}
                {% endif %}
        {% endfor %}
        {% for category in brandcategory.parent.brand.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ brandcategory.parent.brand.url }}
        {{ brandcategory.parent.brand.url.absolute }}
        {{ brandcategory.parent.brand.url.path }}
        {{ brandcategory.parent.brand.categoryUrl }}
        {{ brandcategory.parent.brand.categoryUrl.absolute }}
        {{ brandcategory.parent.brand.categoryUrl.path }}
        {% if brandcategory.parent.brand.code %}
                {{ brandcategory.parent.brand.code }}
        {% endif %}
        {% if brandcategory.parent.brand.web %}
                {{ brandcategory.parent.brand.web }}
        {% endif %}
        {% if brandcategory.parent.brand.text %}
                {{ brandcategory.parent.brand.text }}
        {% endif %}
        {% if brandcategory.parent.brand.image %}
                {{ brandcategory.parent.brand.image.originalHeight }}
                {{ brandcategory.parent.brand.image.originalWidth }}
                {{ brandcategory.parent.brand.image.url }}
                {% if brandcategory.parent.brand.image.alt %}
                        {{ brandcategory.parent.brand.image.alt }}
                {% endif %}
                {% if brandcategory.parent.brand.image.text %}
                        {{ brandcategory.parent.brand.image.text }}
                {% endif %}
        {% endif %}
        {% if brandcategory.parent.brand.seo %}
                {% if brandcategory.parent.brand.seo.description %}
                        {{ brandcategory.parent.brand.seo.description }}
                {% endif %}
                {% if brandcategory.parent.brand.seo.keywords %}
                        {{ brandcategory.parent.brand.seo.keywords }}
                {% endif %}
                {% if brandcategory.parent.brand.seo.title %}
                        {{ brandcategory.parent.brand.seo.title }}
                {% endif %}
        {% endif %}
        {% if brandcategory.parent.brand.contentGrid %}
                {{ brandcategory.parent.brand.contentGrid }}
        {% endif %}
        {{ brandcategory.parent.category.id }}
        {{ brandcategory.parent.category.productCount }}
        {{ brandcategory.parent.category.productInStockCount }}
        {{ brandcategory.parent.category.totalStockQuantity }}
        {{ brandcategory.parent.category.headline }}
        {{ brandcategory.parent.category.menuName }}
        {{ brandcategory.parent.category.name }}
        {% if brandcategory.parent.category.flagErotic %} ... {% endif %}
        {% if brandcategory.parent.category.flagImportant %} ... {% endif %}
        {% if brandcategory.parent.category.noFollow %} ... {% endif %}
        {% for category in brandcategory.parent.category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ brandcategory.parent.category.url }}
        {{ brandcategory.parent.category.url.absolute }}
        {{ brandcategory.parent.category.url.path }}
        {{ brandcategory.parent.category.variantType.id }}
        {{ brandcategory.parent.category.variantType.name }}
        {% for video in brandcategory.parent.category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ brandcategory.parent.category.pathNames }}
        {{ brandcategory.parent.category.pathIds }}
        {{ brandcategory.parent.category.templateAttribute }}
        {% if brandcategory.parent.category.subHeadline %}
                {{ brandcategory.parent.category.subHeadline }}
        {% endif %}
        {% if brandcategory.parent.category.text %}
                {{ brandcategory.parent.category.text }}
        {% endif %}
        {% if brandcategory.parent.category.image %}
                {{ brandcategory.parent.category.image.originalHeight }}
                {{ brandcategory.parent.category.image.originalWidth }}
                {{ brandcategory.parent.category.image.url }}
                {% if brandcategory.parent.category.image.alt %}
                        {{ brandcategory.parent.category.image.alt }}
                {% endif %}
                {% if brandcategory.parent.category.image.text %}
                        {{ brandcategory.parent.category.image.text }}
                {% endif %}
        {% endif %}
        {% if brandcategory.parent.category.contentGrid %}
                {{ brandcategory.parent.category.contentGrid }}
        {% endif %}
        {{ brandcategory.parent.url }}
        {{ brandcategory.parent.url.absolute }}
        {{ brandcategory.parent.url.path }}
{% endif %}

Bundle

Attributy objektu Bundle

Název

Typ

Popis

multiPack

bool

Je zvýhodněné balení? (více kusů jiné položky)

price

Price | null

Cena kompletu (cena před slevou je součet ceny dílů)

Příklady:

{% if bundle.multiPack %} ... {% endif %}

{% if bundle.price %}
        {{ bundle.price.vatRate }}
        {{ bundle.price.current.currency }}
        {{ bundle.price.current.formatted }}
        {{ bundle.price.current.value }}
        {% if bundle.price.current.perUnit %}
                {{ bundle.price.current.perUnit }}
                {{ bundle.price.current.perUnit.formatted }}
                {{ bundle.price.current.perUnit.unit }}
        {% endif %}
        {% if bundle.price.discountPercent %}
                {{ bundle.price.discountPercent }}
        {% endif %}
        {% if bundle.price.discountValidTo %}
                {{ bundle.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if bundle.price.beforeDiscount %}
                {{ bundle.price.beforeDiscount.currency }}
                {{ bundle.price.beforeDiscount.formatted }}
                {{ bundle.price.beforeDiscount.value }}
                {% if bundle.price.beforeDiscount.perUnit %}
                        {{ bundle.price.beforeDiscount.perUnit }}
                        {{ bundle.price.beforeDiscount.perUnit.formatted }}
                        {{ bundle.price.beforeDiscount.perUnit.unit }}
                {% endif %}
        {% endif %}
        {% if bundle.price.discount %}
                {{ bundle.price.discount.currency }}
                {{ bundle.price.discount.formatted }}
                {{ bundle.price.discount.value }}
                {% if bundle.price.discount.perUnit %}
                        {{ bundle.price.discount.perUnit }}
                        {{ bundle.price.discount.perUnit.formatted }}
                        {{ bundle.price.discount.perUnit.unit }}
                {% endif %}
        {% endif %}
{% endif %}

Category

Attributy objektu Category

Název

Typ

Popis

id

int

Interní ID kategorie

productCount

int

Počet produktů v kategorii (přibližný)

productInStockCount

int

Počet produktů skladem v kategorii (přibližný)

totalStockQuantity

int

Počet kusů skladem v kategorii (přibližný)

headline

string

Nadpis

menuName

string

Název kategorie v menu

name

string

Název kategorie

flagErotic

bool

Erotická

flagImportant

bool

Důležitá

noFollow

bool

Je žádoucí, aby vyhledávač procházel odkaz? V šabloně bude typicky zápis <a href={{ category.url }} if:rel=“category.noFollow ? ‚nofollow‘“>

subcategories

Category[]

Podkategorie

url

Url

URL

variantType

VariantType

Typ varianty

videos

Video[]

Videa

pathNames

array

Cesta ke kategorii (názvy)

pathIds

array

Cesta ke kategorii (id)

templateAttribute

mixed

Nastavení vzhledu kategorie

subHeadline

string | null

Podnadpis

text

html | null

Text

parent

Category | null

Nadřazená kategorie

image

Image | null

Obrázek

contentGrid

array | null

Content grid

Příklady:

{{ category.id }}
{{ category.productCount }}
{{ category.productInStockCount }}
{{ category.totalStockQuantity }}
{{ category.headline }}
{{ category.menuName }}
{{ category.name }}
{% if category.flagErotic %} ... {% endif %}
{% if category.flagImportant %} ... {% endif %}
{% if category.noFollow %} ... {% endif %}

{% for category in category.subcategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                        {{ video.image.originalHeight }}
                        {{ video.image.originalWidth }}
                        {{ video.image.url }}
                        {% if video.image.alt %}
                                {{ video.image.alt }}
                        {% endif %}
                        {% if video.image.text %}
                                {{ video.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ category.pathNames }}
        {{ category.pathIds }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {{ category.parent.url }}
                {{ category.parent.url.absolute }}
                {{ category.parent.url.path }}
                {{ category.parent.variantType.id }}
                {{ category.parent.variantType.name }}
                {% for video in category.parent.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.parent.pathNames }}
                {{ category.parent.pathIds }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                        {{ category.parent.image.originalHeight }}
                        {{ category.parent.image.originalWidth }}
                        {{ category.parent.image.url }}
                        {% if category.parent.image.alt %}
                                {{ category.parent.image.alt }}
                        {% endif %}
                        {% if category.parent.image.text %}
                                {{ category.parent.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{{ category.url }}
{{ category.url.absolute }}
{{ category.url.path }}
{{ category.variantType.id }}
{{ category.variantType.name }}

{% for video in category.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
                {{ video.image.originalHeight }}
                {{ video.image.originalWidth }}
                {{ video.image.url }}
                {% if video.image.alt %}
                        {{ video.image.alt }}
                {% endif %}
                {% if video.image.text %}
                        {{ video.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ category.pathNames }}
{{ category.pathIds }}
{{ category.templateAttribute }}

{% if category.subHeadline %}
        {{ category.subHeadline }}
{% endif %}

{% if category.text %}
        {{ category.text }}
{% endif %}

{% if category.parent %}
        {{ category.parent.id }}
        {{ category.parent.productCount }}
        {{ category.parent.productInStockCount }}
        {{ category.parent.totalStockQuantity }}
        {{ category.parent.headline }}
        {{ category.parent.menuName }}
        {{ category.parent.name }}
        {% if category.parent.flagErotic %} ... {% endif %}
        {% if category.parent.flagImportant %} ... {% endif %}
        {% if category.parent.noFollow %} ... {% endif %}
        {% for category in category.parent.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {{ category.url }}
                {{ category.url.absolute }}
                {{ category.url.path }}
                {{ category.variantType.id }}
                {{ category.variantType.name }}
                {% for video in category.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.image %}
                        {{ category.image.originalHeight }}
                        {{ category.image.originalWidth }}
                        {{ category.image.url }}
                        {% if category.image.alt %}
                                {{ category.image.alt }}
                        {% endif %}
                        {% if category.image.text %}
                                {{ category.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ category.parent.url }}
        {{ category.parent.url.absolute }}
        {{ category.parent.url.path }}
        {{ category.parent.variantType.id }}
        {{ category.parent.variantType.name }}
        {% for video in category.parent.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                        {{ video.image.originalHeight }}
                        {{ video.image.originalWidth }}
                        {{ video.image.url }}
                        {% if video.image.alt %}
                                {{ video.image.alt }}
                        {% endif %}
                        {% if video.image.text %}
                                {{ video.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ category.parent.pathNames }}
        {{ category.parent.pathIds }}
        {{ category.parent.templateAttribute }}
        {% if category.parent.subHeadline %}
                {{ category.parent.subHeadline }}
        {% endif %}
        {% if category.parent.text %}
                {{ category.parent.text }}
        {% endif %}
        {% if category.parent.image %}
                {{ category.parent.image.originalHeight }}
                {{ category.parent.image.originalWidth }}
                {{ category.parent.image.url }}
                {% if category.parent.image.alt %}
                        {{ category.parent.image.alt }}
                {% endif %}
                {% if category.parent.image.text %}
                        {{ category.parent.image.text }}
                {% endif %}
        {% endif %}
        {% if category.parent.contentGrid %}
                {{ category.parent.contentGrid }}
        {% endif %}
{% endif %}

{% if category.image %}
        {{ category.image.originalHeight }}
        {{ category.image.originalWidth }}
        {{ category.image.url }}
        {% if category.image.alt %}
                {{ category.image.alt }}
        {% endif %}
        {% if category.image.text %}
                {{ category.image.text }}
        {% endif %}
{% endif %}

{% if category.contentGrid %}
        {{ category.contentGrid }}
{% endif %}

Comment

Attributy objektu Comment

Název

Typ

Popis

depth

int

Hloubka zanoření

id

int

Id

date

datetime

Datum

important

bool

Důležitý?

replies

Comment[]

Odpovědi na příspěvek

rating

int | null

Hodnocení (1 až 5)

authorName

string | null

Jméno autora

email

string | null

Email autora

phone

string | null

Telefon autora

title

string | null

Titulek

text

html | null

Text příspěvku

admin

Admin | null

Správce eshopu

Příklady:

{{ comment.depth }}
{{ comment.id }}
{{ comment.date|date('d. m. Y H:i') }}
{% if comment.important %} ... {% endif %}

{% for comment in comment.replies %}
        {{ comment.depth }}
        {{ comment.id }}
        {{ comment.date|date('d. m. Y H:i') }}
        {% if comment.important %} ... {% endif %}
        {% if comment.rating %}
                {{ comment.rating }}
        {% endif %}
        {% if comment.authorName %}
                {{ comment.authorName }}
        {% endif %}
        {% if comment.email %}
                {{ comment.email }}
        {% endif %}
        {% if comment.phone %}
                {{ comment.phone }}
        {% endif %}
        {% if comment.title %}
                {{ comment.title }}
        {% endif %}
        {% if comment.text %}
                {{ comment.text }}
        {% endif %}
        {% if comment.admin %}
                {{ comment.admin.id }}
                {{ comment.admin.email }}
                {{ comment.admin.phone }}
                {{ comment.admin.position }}
                {{ comment.admin.name }}
                {% if comment.admin.name.first %}
                        {{ comment.admin.name.first }}
                {% endif %}
                {% if comment.admin.name.last %}
                        {{ comment.admin.name.last }}
                {% endif %}
                {{ comment.admin.image.originalHeight }}
                {{ comment.admin.image.originalWidth }}
                {{ comment.admin.image.url }}
                {% if comment.admin.image.alt %}
                        {{ comment.admin.image.alt }}
                {% endif %}
                {% if comment.admin.image.text %}
                        {{ comment.admin.image.text }}
                {% endif %}
                {% if comment.admin.text %}
                        {{ comment.admin.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% if comment.rating %}
        {{ comment.rating }}
{% endif %}

{% if comment.authorName %}
        {{ comment.authorName }}
{% endif %}

{% if comment.email %}
        {{ comment.email }}
{% endif %}

{% if comment.phone %}
        {{ comment.phone }}
{% endif %}

{% if comment.title %}
        {{ comment.title }}
{% endif %}

{% if comment.text %}
        {{ comment.text }}
{% endif %}

{% if comment.admin %}
        {{ comment.admin.id }}
        {{ comment.admin.email }}
        {{ comment.admin.phone }}
        {{ comment.admin.position }}
        {{ comment.admin.name }}
        {% if comment.admin.name.first %}
                {{ comment.admin.name.first }}
        {% endif %}
        {% if comment.admin.name.last %}
                {{ comment.admin.name.last }}
        {% endif %}
        {{ comment.admin.image.originalHeight }}
        {{ comment.admin.image.originalWidth }}
        {{ comment.admin.image.url }}
        {% if comment.admin.image.alt %}
                {{ comment.admin.image.alt }}
        {% endif %}
        {% if comment.admin.image.text %}
                {{ comment.admin.image.text }}
        {% endif %}
        {% if comment.admin.text %}
                {{ comment.admin.text }}
        {% endif %}
{% endif %}

Compatibility/CompatibilityAttribute

Attributy objektu Compatibility/CompatibilityAttribute

Název

Typ

Popis

id

int

ID

name

string

Název

values

Compatibility/CompatibilityAttributeValue[]

Hodnoty

Příklady:

{{ compatibilityattribute.id }}
{{ compatibilityattribute.name }}

{% for compatibilityAttributeValue in compatibilityattribute.values %}
        {{ compatibilityAttributeValue.id }}
        {{ compatibilityAttributeValue.name }}
        {{ compatibilityAttributeValue.attribute.id }}
        {{ compatibilityAttributeValue.attribute.name }}
{% endfor %}

Compatibility/CompatibilityAttributeValue

Hodnota parametru

Attributy objektu Compatibility/CompatibilityAttributeValue

Název

Typ

Popis

id

int

Id

name

string

Název

attribute

Compatibility/CompatibilityAttribute

Parametr

Příklady:

{{ compatibilityattributevalue.id }}
{{ compatibilityattributevalue.name }}
{{ compatibilityattributevalue.attribute.id }}
{{ compatibilityattributevalue.attribute.name }}
{% for compatibilityAttributeValue in compatibilityattributevalue.attribute.values %}
        {{ compatibilityAttributeValue.id }}
        {{ compatibilityAttributeValue.name }}
{% endfor %}

Customer

Registrovaný zákazník

Attributy objektu Customer

Název

Typ

Popis

id

int

Id

userPointsAvailable

int

Aktuální počet bodů věrnostního programu

userPointsExpiringOn

int

Počet bodů expirujících v určité datum

userPointsTotal

int

Celkový počet získáných bodů věrnostního programu

name

string

Jméno zákazníka

dateCreated

datetime

Datum registrace

productOnWishlist

bool

Je produkt na wishlistu?

vatCharged

bool

Fakturovat DPH

wholesale

bool

Velkoobchodník

receipts

AccountingDocument[]

Účtenky

address

Addresses

Adresy

analyticReports

AnalyticsReport[]

Reporty analytiky

orders

Order[]

Objednávky zákazníka

childOrders

Order[]

Objednávky podřazených zákazníků

userPointChanges

UserPointChange[]

Historie bodů věrnostního programu

alternativeAddresses

array

Alternativní adresy zákazníka

loyaltyCard

string | null

Kód věrnostní karty

socialLoginId

string | null

ID uživatele ve službě použité pro přihlášení

Příklady:

{{ customer.id }}
{{ customer.userPointsAvailable }}
{{ customer.userPointsExpiringOn }}
{{ customer.userPointsTotal }}
{{ customer.name }}
{{ customer.dateCreated|date('d. m. Y H:i') }}
{% if customer.productOnWishlist %} ... {% endif %}
{% if customer.vatCharged %} ... {% endif %}
{% if customer.wholesale %} ... {% endif %}

{% for accountingDocument in customer.receipts %}
        {{ accountingDocument.code }}
        {{ accountingDocument.date|date('d. m. Y H:i') }}
        {{ accountingDocument.totalPrice.vatRate }}
        {{ accountingDocument.totalPrice.current.currency }}
        {{ accountingDocument.totalPrice.current.formatted }}
        {{ accountingDocument.totalPrice.current.value }}
        {% if accountingDocument.totalPrice.current.perUnit %}
        {% endif %}
        {% if accountingDocument.totalPrice.discountPercent %}
                {{ accountingDocument.totalPrice.discountPercent }}
        {% endif %}
        {% if accountingDocument.totalPrice.discountValidTo %}
                {{ accountingDocument.totalPrice.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if accountingDocument.totalPrice.beforeDiscount %}
                {{ accountingDocument.totalPrice.beforeDiscount.currency }}
                {{ accountingDocument.totalPrice.beforeDiscount.formatted }}
                {{ accountingDocument.totalPrice.beforeDiscount.value }}
                {% if accountingDocument.totalPrice.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if accountingDocument.totalPrice.discount %}
                {{ accountingDocument.totalPrice.discount.currency }}
                {{ accountingDocument.totalPrice.discount.formatted }}
                {{ accountingDocument.totalPrice.discount.value }}
                {% if accountingDocument.totalPrice.discount.perUnit %}
                {% endif %}
        {% endif %}
        {{ accountingDocument.pdfUrl }}
        {{ accountingDocument.pdfUrl.absolute }}
        {{ accountingDocument.pdfUrl.path }}
{% endfor %}
{{ customer.address.delivery.name }}
{% if customer.address.delivery.name.first %}
        {{ customer.address.delivery.name.first }}
{% endif %}
{% if customer.address.delivery.name.last %}
        {{ customer.address.delivery.name.last }}
{% endif %}
{% if customer.address.delivery.city %}
        {{ customer.address.delivery.city }}
{% endif %}
{% if customer.address.delivery.company %}
        {{ customer.address.delivery.company }}
{% endif %}
{% if customer.address.delivery.companyId %}
        {{ customer.address.delivery.companyId }}
{% endif %}
{% if customer.address.delivery.email %}
        {{ customer.address.delivery.email }}
{% endif %}
{% if customer.address.delivery.phone %}
        {{ customer.address.delivery.phone }}
{% endif %}
{% if customer.address.delivery.region %}
        {{ customer.address.delivery.region }}
{% endif %}
{% if customer.address.delivery.street %}
        {{ customer.address.delivery.street }}
{% endif %}
{% if customer.address.delivery.vatId %}
        {{ customer.address.delivery.vatId }}
{% endif %}
{% if customer.address.delivery.web %}
        {{ customer.address.delivery.web }}
{% endif %}
{% if customer.address.delivery.zip %}
        {{ customer.address.delivery.zip }}
{% endif %}
{% if customer.address.delivery.purpose %}
        {{ customer.address.delivery.purpose.headline }}
{% endif %}
{% if customer.address.delivery.country %}
        {{ customer.address.delivery.country.code }}
        {{ customer.address.delivery.country.flagCircleUrl }}
        {{ customer.address.delivery.country.flagUrl }}
        {{ customer.address.delivery.country.name }}
        {% if customer.address.delivery.country.eU %} ... {% endif %}
{% endif %}
{{ customer.address.invoice.name }}
{% if customer.address.invoice.name.first %}
        {{ customer.address.invoice.name.first }}
{% endif %}
{% if customer.address.invoice.name.last %}
        {{ customer.address.invoice.name.last }}
{% endif %}
{% if customer.address.invoice.city %}
        {{ customer.address.invoice.city }}
{% endif %}
{% if customer.address.invoice.company %}
        {{ customer.address.invoice.company }}
{% endif %}
{% if customer.address.invoice.companyId %}
        {{ customer.address.invoice.companyId }}
{% endif %}
{% if customer.address.invoice.email %}
        {{ customer.address.invoice.email }}
{% endif %}
{% if customer.address.invoice.phone %}
        {{ customer.address.invoice.phone }}
{% endif %}
{% if customer.address.invoice.region %}
        {{ customer.address.invoice.region }}
{% endif %}
{% if customer.address.invoice.street %}
        {{ customer.address.invoice.street }}
{% endif %}
{% if customer.address.invoice.vatId %}
        {{ customer.address.invoice.vatId }}
{% endif %}
{% if customer.address.invoice.web %}
        {{ customer.address.invoice.web }}
{% endif %}
{% if customer.address.invoice.zip %}
        {{ customer.address.invoice.zip }}
{% endif %}
{% if customer.address.invoice.purpose %}
        {{ customer.address.invoice.purpose.headline }}
{% endif %}
{% if customer.address.invoice.country %}
        {{ customer.address.invoice.country.code }}
        {{ customer.address.invoice.country.flagCircleUrl }}
        {{ customer.address.invoice.country.flagUrl }}
        {{ customer.address.invoice.country.name }}
        {% if customer.address.invoice.country.eU %} ... {% endif %}
{% endif %}

{% for analyticsReport in customer.analyticReports %}
        {{ analyticsReport.name }}
        {{ analyticsReport.url }}
        {{ analyticsReport.url.absolute }}
        {{ analyticsReport.url.path }}
{% endfor %}

{% for order in customer.orders %}
        {{ order.amountOfItem }}
        {{ order.catalogItemCount }}
        {{ order.catalogItemTotalAmount }}
        {{ order.id }}
        {{ order.loyaltyPoints }}
        {{ order.usableLoyaltyPoints }}
        {{ order.language }}
        {{ order.vs }}
        {% if order.containsAnyOfLabels %} ... {% endif %}
        {% if order.containsItem %} ... {% endif %}
        {% if order.containsLabel %} ... {% endif %}
        {% if order.digitalPhysicalCombination %} ... {% endif %}
        {% if order.erotic %} ... {% endif %}
        {% if order.externalReviewAllowed %} ... {% endif %}
        {% if order.paid %} ... {% endif %}
        {% if order.useLoyaltyPoints %} ... {% endif %}
        {% if order.useLoyaltyPointsManually %} ... {% endif %}
        {% for accountingDocument in order.accountingDocuments %}
                {{ accountingDocument.code }}
                {{ accountingDocument.date|date('d. m. Y H:i') }}
                {{ accountingDocument.totalPrice.vatRate }}
                {% if accountingDocument.totalPrice.discountPercent %}
                        {{ accountingDocument.totalPrice.discountPercent }}
                {% endif %}
                {% if accountingDocument.totalPrice.discountValidTo %}
                        {{ accountingDocument.totalPrice.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if accountingDocument.totalPrice.beforeDiscount %}
                {% endif %}
                {% if accountingDocument.totalPrice.discount %}
                {% endif %}
                {{ accountingDocument.pdfUrl }}
                {{ accountingDocument.pdfUrl.absolute }}
                {{ accountingDocument.pdfUrl.path }}
        {% endfor %}
        {% if order.address.delivery.city %}
                {{ order.address.delivery.city }}
        {% endif %}
        {% if order.address.delivery.company %}
                {{ order.address.delivery.company }}
        {% endif %}
        {% if order.address.delivery.companyId %}
                {{ order.address.delivery.companyId }}
        {% endif %}
        {% if order.address.delivery.email %}
                {{ order.address.delivery.email }}
        {% endif %}
        {% if order.address.delivery.phone %}
                {{ order.address.delivery.phone }}
        {% endif %}
        {% if order.address.delivery.region %}
                {{ order.address.delivery.region }}
        {% endif %}
        {% if order.address.delivery.street %}
                {{ order.address.delivery.street }}
        {% endif %}
        {% if order.address.delivery.vatId %}
                {{ order.address.delivery.vatId }}
        {% endif %}
        {% if order.address.delivery.web %}
                {{ order.address.delivery.web }}
        {% endif %}
        {% if order.address.delivery.zip %}
                {{ order.address.delivery.zip }}
        {% endif %}
        {% if order.address.delivery.purpose %}
        {% endif %}
        {% if order.address.delivery.country %}
        {% endif %}
        {% if order.address.invoice.city %}
                {{ order.address.invoice.city }}
        {% endif %}
        {% if order.address.invoice.company %}
                {{ order.address.invoice.company }}
        {% endif %}
        {% if order.address.invoice.companyId %}
                {{ order.address.invoice.companyId }}
        {% endif %}
        {% if order.address.invoice.email %}
                {{ order.address.invoice.email }}
        {% endif %}
        {% if order.address.invoice.phone %}
                {{ order.address.invoice.phone }}
        {% endif %}
        {% if order.address.invoice.region %}
                {{ order.address.invoice.region }}
        {% endif %}
        {% if order.address.invoice.street %}
                {{ order.address.invoice.street }}
        {% endif %}
        {% if order.address.invoice.vatId %}
                {{ order.address.invoice.vatId }}
        {% endif %}
        {% if order.address.invoice.web %}
                {{ order.address.invoice.web }}
        {% endif %}
        {% if order.address.invoice.zip %}
                {{ order.address.invoice.zip }}
        {% endif %}
        {% if order.address.invoice.purpose %}
        {% endif %}
        {% if order.address.invoice.country %}
        {% endif %}
        {% for payment in order.availablePaymentMethods %}
                {{ payment.inputId }}
                {{ payment.name }}
                {{ payment.url }}
                {{ payment.vatRate }}
                {% if payment.free %} ... {% endif %}
                {% if payment.inAdvance %} ... {% endif %}
                {% if payment.selected %} ... {% endif %}
                {{ payment.price.vatRate }}
                {% if payment.price.discountPercent %}
                        {{ payment.price.discountPercent }}
                {% endif %}
                {% if payment.price.discountValidTo %}
                        {{ payment.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if payment.price.beforeDiscount %}
                {% endif %}
                {% if payment.price.discount %}
                {% endif %}
                {% if payment.code %}
                        {{ payment.code }}
                {% endif %}
                {% if payment.vs %}
                        {{ payment.vs }}
                {% endif %}
                {% if payment.qRCodeHTML %}
                        {{ payment.qRCodeHTML }}
                {% endif %}
                {% if payment.text %}
                        {{ payment.text }}
                {% endif %}
                {% if payment.bankAccount %}
                        {{ payment.bankAccount }}
                        {{ payment.bankAccount.currency }}
                        {% if payment.bankAccount.bic %}
                                {{ payment.bankAccount.bic }}
                        {% endif %}
                        {% if payment.bankAccount.iban %}
                                {{ payment.bankAccount.iban }}
                        {% endif %}
                        {% if payment.bankAccount.local %}
                                {{ payment.bankAccount.local }}
                        {% endif %}
                {% endif %}
                {% if payment.image %}
                        {{ payment.image.originalHeight }}
                        {{ payment.image.originalWidth }}
                        {{ payment.image.url }}
                        {% if payment.image.alt %}
                                {{ payment.image.alt }}
                        {% endif %}
                        {% if payment.image.text %}
                                {{ payment.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for payment in order.payments %}
                {{ payment.inputId }}
                {{ payment.name }}
                {{ payment.url }}
                {{ payment.vatRate }}
                {% if payment.free %} ... {% endif %}
                {% if payment.inAdvance %} ... {% endif %}
                {% if payment.selected %} ... {% endif %}
                {{ payment.price.vatRate }}
                {% if payment.price.discountPercent %}
                        {{ payment.price.discountPercent }}
                {% endif %}
                {% if payment.price.discountValidTo %}
                        {{ payment.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if payment.price.beforeDiscount %}
                {% endif %}
                {% if payment.price.discount %}
                {% endif %}
                {% if payment.code %}
                        {{ payment.code }}
                {% endif %}
                {% if payment.vs %}
                        {{ payment.vs }}
                {% endif %}
                {% if payment.qRCodeHTML %}
                        {{ payment.qRCodeHTML }}
                {% endif %}
                {% if payment.text %}
                        {{ payment.text }}
                {% endif %}
                {% if payment.bankAccount %}
                        {{ payment.bankAccount }}
                        {{ payment.bankAccount.currency }}
                        {% if payment.bankAccount.bic %}
                                {{ payment.bankAccount.bic }}
                        {% endif %}
                        {% if payment.bankAccount.iban %}
                                {{ payment.bankAccount.iban }}
                        {% endif %}
                        {% if payment.bankAccount.local %}
                                {{ payment.bankAccount.local }}
                        {% endif %}
                {% endif %}
                {% if payment.image %}
                        {{ payment.image.originalHeight }}
                        {{ payment.image.originalWidth }}
                        {{ payment.image.url }}
                        {% if payment.image.alt %}
                                {{ payment.image.alt }}
                        {% endif %}
                        {% if payment.image.text %}
                                {{ payment.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for transport in order.availableTransportMethods %}
                {{ transport.inputId }}
                {{ transport.name }}
                {{ transport.vatRate }}
                {% if transport.branchRequired %} ... {% endif %}
                {% if transport.currier %} ... {% endif %}
                {% if transport.dateGuaranteed %} ... {% endif %}
                {% if transport.deliveryToAddress %} ... {% endif %}
                {% if transport.digital %} ... {% endif %}
                {% if transport.free %} ... {% endif %}
                {% if transport.pickup %} ... {% endif %}
                {% if transport.selected %} ... {% endif %}
                {{ transport.price.vatRate }}
                {% if transport.price.discountPercent %}
                        {{ transport.price.discountPercent }}
                {% endif %}
                {% if transport.price.discountValidTo %}
                        {{ transport.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if transport.price.beforeDiscount %}
                {% endif %}
                {% if transport.price.discount %}
                {% endif %}
                {% if transport.text %}
                        {{ transport.text }}
                {% endif %}
                {% if transport.branch %}
                        {{ transport.branch.code }}
                        {{ transport.branch.name }}
                {% endif %}
                {% if transport.carrier %}
                        {{ transport.carrier.code }}
                        {{ transport.carrier.name }}
                {% endif %}
                {% if transport.deliveryDate %}
                        {{ transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                        {{ transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                        {{ transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                        {% if transport.deliveryDate.timeDelivered %}
                                {{ transport.deliveryDate.timeDelivered }}
                        {% endif %}
                {% endif %}
                {% if transport.packageType %}
                        {{ transport.packageType.code }}
                {% endif %}
                {% if transport.image %}
                        {{ transport.image.originalHeight }}
                        {{ transport.image.originalWidth }}
                        {{ transport.image.url }}
                        {% if transport.image.alt %}
                                {{ transport.image.alt }}
                        {% endif %}
                        {% if transport.image.text %}
                                {{ transport.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ order.delivery.name }}
        {{ order.delivery.vatRate }}
        {% if order.delivery.deliveryAddressRequired %} ... {% endif %}
        {{ order.delivery.payment.inputId }}
        {{ order.delivery.payment.name }}
        {{ order.delivery.payment.url }}
        {{ order.delivery.payment.vatRate }}
        {% if order.delivery.payment.free %} ... {% endif %}
        {% if order.delivery.payment.inAdvance %} ... {% endif %}
        {% if order.delivery.payment.selected %} ... {% endif %}
        {% if order.delivery.payment.code %}
                {{ order.delivery.payment.code }}
        {% endif %}
        {% if order.delivery.payment.vs %}
                {{ order.delivery.payment.vs }}
        {% endif %}
        {% if order.delivery.payment.qRCodeHTML %}
                {{ order.delivery.payment.qRCodeHTML }}
        {% endif %}
        {% if order.delivery.payment.text %}
                {{ order.delivery.payment.text }}
        {% endif %}
        {% if order.delivery.payment.bankAccount %}
        {% endif %}
        {% if order.delivery.payment.image %}
        {% endif %}
        {{ order.delivery.transport.inputId }}
        {{ order.delivery.transport.name }}
        {{ order.delivery.transport.vatRate }}
        {% if order.delivery.transport.branchRequired %} ... {% endif %}
        {% if order.delivery.transport.currier %} ... {% endif %}
        {% if order.delivery.transport.dateGuaranteed %} ... {% endif %}
        {% if order.delivery.transport.deliveryToAddress %} ... {% endif %}
        {% if order.delivery.transport.digital %} ... {% endif %}
        {% if order.delivery.transport.free %} ... {% endif %}
        {% if order.delivery.transport.pickup %} ... {% endif %}
        {% if order.delivery.transport.selected %} ... {% endif %}
        {% if order.delivery.transport.text %}
                {{ order.delivery.transport.text }}
        {% endif %}
        {% if order.delivery.transport.branch %}
        {% endif %}
        {% if order.delivery.transport.carrier %}
        {% endif %}
        {% if order.delivery.transport.deliveryDate %}
        {% endif %}
        {% if order.delivery.transport.packageType %}
        {% endif %}
        {% if order.delivery.transport.image %}
        {% endif %}
        {{ order.delivery.price.vatRate }}
        {% if order.delivery.price.discountPercent %}
                {{ order.delivery.price.discountPercent }}
        {% endif %}
        {% if order.delivery.price.discountValidTo %}
                {{ order.delivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.delivery.price.beforeDiscount %}
        {% endif %}
        {% if order.delivery.price.discount %}
        {% endif %}
        {% if order.delivery.id %}
                {{ order.delivery.id }}
        {% endif %}
        {% if order.delivery.freeLimit %}
                {{ order.delivery.freeLimit.percent }}
        {% endif %}
        {% for catalogItem in order.catalogItems %}
                {{ catalogItem.amount }}
                {{ catalogItem.id }}
                {{ catalogItem.name }}
                {{ catalogItem.productName }}
                {{ catalogItem.trackingId }}
                {{ catalogItem.vatRate }}
                {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                {% if catalogItem.catalogItem %} ... {% endif %}
                {% if catalogItem.deleteAllowed %} ... {% endif %}
                {% if catalogItem.discountItem %} ... {% endif %}
                {% if catalogItem.gift %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in catalogItem.children %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.availableConfigurators %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for orderItemError in catalogItem.errors %}
                        {{ orderItemError.recommendedAmount }}
                        {{ orderItemError.code }}
                        {{ orderItemError.itemName }}
                        {{ orderItemError.message }}
                {% endfor %}
                {{ catalogItem.price.vatRate }}
                {% if catalogItem.price.discountPercent %}
                        {{ catalogItem.price.discountPercent }}
                {% endif %}
                {% if catalogItem.price.discountValidTo %}
                        {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.price.discount %}
                {% endif %}
                {{ catalogItem.priceTotal.vatRate }}
                {% if catalogItem.priceTotal.discountPercent %}
                        {{ catalogItem.priceTotal.discountPercent }}
                {% endif %}
                {% if catalogItem.priceTotal.discountValidTo %}
                        {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.priceTotal.beforeDiscount %}
                {% endif %}
                {% if catalogItem.priceTotal.discount %}
                {% endif %}
                {% for productDesigner in catalogItem.availableConfigurators %}
                        {{ productDesigner.name }}
                        {% if productDesigner.result %}
                        {% endif %}
                {% endfor %}
                {% for upsell in catalogItem.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.trackingIds }}
                {% if catalogItem.code %}
                        {{ catalogItem.code }}
                {% endif %}
                {% if catalogItem.note %}
                        {{ catalogItem.note }}
                {% endif %}
                {% if catalogItem.variantName %}
                        {{ catalogItem.variantName }}
                {% endif %}
                {% if catalogItem.image %}
                        {{ catalogItem.image.originalHeight }}
                        {{ catalogItem.image.originalWidth }}
                        {{ catalogItem.image.url }}
                        {% if catalogItem.image.alt %}
                                {{ catalogItem.image.alt }}
                        {% endif %}
                        {% if catalogItem.image.text %}
                                {{ catalogItem.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item %}
                        {{ catalogItem.item.cartAmountRequiredMultiplier }}
                        {{ catalogItem.item.id }}
                        {{ catalogItem.item.loyaltyPointsAmount }}
                        {{ catalogItem.item.name }}
                        {{ catalogItem.item.trackingId }}
                        {% if catalogItem.item.digital %} ... {% endif %}
                        {% if catalogItem.item.sellable %} ... {% endif %}
                        {% if catalogItem.item.service %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.item.trackingIds }}
                        {{ catalogItem.item.storageLocations }}
                        {% if catalogItem.item.packageWeight %}
                                {{ catalogItem.item.packageWeight }}
                        {% endif %}
                        {% if catalogItem.item.code %}
                                {{ catalogItem.item.code }}
                        {% endif %}
                        {% if catalogItem.item.packageHeight %}
                                {{ catalogItem.item.packageHeight }}
                        {% endif %}
                        {% if catalogItem.item.packageLength %}
                                {{ catalogItem.item.packageLength }}
                        {% endif %}
                        {% if catalogItem.item.packageWidth %}
                                {{ catalogItem.item.packageWidth }}
                        {% endif %}
                        {% if catalogItem.item.bundle %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery %}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.packageDimensions %}
                        {% endif %}
                        {% if catalogItem.item.image %}
                        {% endif %}
                        {% if catalogItem.item.price %}
                        {% endif %}
                        {% if catalogItem.item.url %}
                        {% endif %}
                        {% if catalogItem.item.variant %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product %}
                        {{ catalogItem.product.id }}
                        {{ catalogItem.product.name }}
                        {{ catalogItem.product.trackingId }}
                        {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.active %} ... {% endif %}
                        {% if catalogItem.product.compared %} ... {% endif %}
                        {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.flagNew %} ... {% endif %}
                        {% if catalogItem.product.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.soldSeparately %} ... {% endif %}
                        {% for address in catalogItem.product.publicContacts %}
                        {% endfor %}
                        {% for attributeInstance in catalogItem.product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.labels %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.product.configurators %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.videos %}
                        {% endfor %}
                        {{ catalogItem.product.trackingIds }}
                        {% if catalogItem.product.currentSubName %}
                                {{ catalogItem.product.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.nameSuffix %}
                                {{ catalogItem.product.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.nameSupplier %}
                                {{ catalogItem.product.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.text %}
                                {{ catalogItem.product.text }}
                        {% endif %}
                        {% if catalogItem.product.attribute %}
                        {% endif %}
                        {% if catalogItem.product.brand %}
                        {% endif %}
                        {% if catalogItem.product.image %}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.successor %}
                        {% endif %}
                        {% if catalogItem.product.seo %}
                        {% endif %}
                        {% if catalogItem.product.supplier %}
                        {% endif %}
                        {% if catalogItem.product.unit %}
                        {% endif %}
                        {% if catalogItem.product.variant %}
                        {% endif %}
                        {% if catalogItem.product.warranty %}
                        {% endif %}
                        {% if catalogItem.product.contentGrid %}
                                {{ catalogItem.product.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.unit %}
                        {{ catalogItem.unit.name }}
                {% endif %}
                {% if catalogItem.upsell %}
                        {{ catalogItem.upsell.id }}
                        {{ catalogItem.upsell.name }}
                        {% if catalogItem.upsell.inCart %} ... {% endif %}
                        {% if catalogItem.upsell.code %}
                                {{ catalogItem.upsell.code }}
                        {% endif %}
                        {% if catalogItem.upsell.vatRate %}
                                {{ catalogItem.upsell.vatRate }}
                        {% endif %}
                        {% if catalogItem.upsell.image %}
                        {% endif %}
                        {% if catalogItem.upsell.unit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.variant %}
                        {{ catalogItem.variant.id }}
                        {{ catalogItem.variant.name }}
                        {{ catalogItem.variant.trackingId }}
                        {% if catalogItem.variant.active %} ... {% endif %}
                        {% if catalogItem.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.variant.legacyRel %}
                                {{ catalogItem.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.variant.image %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for catalogItem in order.items %}
                {{ catalogItem.amount }}
                {{ catalogItem.id }}
                {{ catalogItem.name }}
                {{ catalogItem.productName }}
                {{ catalogItem.trackingId }}
                {{ catalogItem.vatRate }}
                {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                {% if catalogItem.catalogItem %} ... {% endif %}
                {% if catalogItem.deleteAllowed %} ... {% endif %}
                {% if catalogItem.discountItem %} ... {% endif %}
                {% if catalogItem.gift %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in catalogItem.children %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.availableConfigurators %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for orderItemError in catalogItem.errors %}
                        {{ orderItemError.recommendedAmount }}
                        {{ orderItemError.code }}
                        {{ orderItemError.itemName }}
                        {{ orderItemError.message }}
                {% endfor %}
                {{ catalogItem.price.vatRate }}
                {% if catalogItem.price.discountPercent %}
                        {{ catalogItem.price.discountPercent }}
                {% endif %}
                {% if catalogItem.price.discountValidTo %}
                        {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.price.discount %}
                {% endif %}
                {{ catalogItem.priceTotal.vatRate }}
                {% if catalogItem.priceTotal.discountPercent %}
                        {{ catalogItem.priceTotal.discountPercent }}
                {% endif %}
                {% if catalogItem.priceTotal.discountValidTo %}
                        {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.priceTotal.beforeDiscount %}
                {% endif %}
                {% if catalogItem.priceTotal.discount %}
                {% endif %}
                {% for productDesigner in catalogItem.availableConfigurators %}
                        {{ productDesigner.name }}
                        {% if productDesigner.result %}
                        {% endif %}
                {% endfor %}
                {% for upsell in catalogItem.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.trackingIds }}
                {% if catalogItem.code %}
                        {{ catalogItem.code }}
                {% endif %}
                {% if catalogItem.note %}
                        {{ catalogItem.note }}
                {% endif %}
                {% if catalogItem.variantName %}
                        {{ catalogItem.variantName }}
                {% endif %}
                {% if catalogItem.image %}
                        {{ catalogItem.image.originalHeight }}
                        {{ catalogItem.image.originalWidth }}
                        {{ catalogItem.image.url }}
                        {% if catalogItem.image.alt %}
                                {{ catalogItem.image.alt }}
                        {% endif %}
                        {% if catalogItem.image.text %}
                                {{ catalogItem.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item %}
                        {{ catalogItem.item.cartAmountRequiredMultiplier }}
                        {{ catalogItem.item.id }}
                        {{ catalogItem.item.loyaltyPointsAmount }}
                        {{ catalogItem.item.name }}
                        {{ catalogItem.item.trackingId }}
                        {% if catalogItem.item.digital %} ... {% endif %}
                        {% if catalogItem.item.sellable %} ... {% endif %}
                        {% if catalogItem.item.service %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.item.trackingIds }}
                        {{ catalogItem.item.storageLocations }}
                        {% if catalogItem.item.packageWeight %}
                                {{ catalogItem.item.packageWeight }}
                        {% endif %}
                        {% if catalogItem.item.code %}
                                {{ catalogItem.item.code }}
                        {% endif %}
                        {% if catalogItem.item.packageHeight %}
                                {{ catalogItem.item.packageHeight }}
                        {% endif %}
                        {% if catalogItem.item.packageLength %}
                                {{ catalogItem.item.packageLength }}
                        {% endif %}
                        {% if catalogItem.item.packageWidth %}
                                {{ catalogItem.item.packageWidth }}
                        {% endif %}
                        {% if catalogItem.item.bundle %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery %}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.packageDimensions %}
                        {% endif %}
                        {% if catalogItem.item.image %}
                        {% endif %}
                        {% if catalogItem.item.price %}
                        {% endif %}
                        {% if catalogItem.item.url %}
                        {% endif %}
                        {% if catalogItem.item.variant %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product %}
                        {{ catalogItem.product.id }}
                        {{ catalogItem.product.name }}
                        {{ catalogItem.product.trackingId }}
                        {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.active %} ... {% endif %}
                        {% if catalogItem.product.compared %} ... {% endif %}
                        {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.flagNew %} ... {% endif %}
                        {% if catalogItem.product.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.soldSeparately %} ... {% endif %}
                        {% for address in catalogItem.product.publicContacts %}
                        {% endfor %}
                        {% for attributeInstance in catalogItem.product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.labels %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.product.configurators %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.videos %}
                        {% endfor %}
                        {{ catalogItem.product.trackingIds }}
                        {% if catalogItem.product.currentSubName %}
                                {{ catalogItem.product.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.nameSuffix %}
                                {{ catalogItem.product.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.nameSupplier %}
                                {{ catalogItem.product.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.text %}
                                {{ catalogItem.product.text }}
                        {% endif %}
                        {% if catalogItem.product.attribute %}
                        {% endif %}
                        {% if catalogItem.product.brand %}
                        {% endif %}
                        {% if catalogItem.product.image %}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.successor %}
                        {% endif %}
                        {% if catalogItem.product.seo %}
                        {% endif %}
                        {% if catalogItem.product.supplier %}
                        {% endif %}
                        {% if catalogItem.product.unit %}
                        {% endif %}
                        {% if catalogItem.product.variant %}
                        {% endif %}
                        {% if catalogItem.product.warranty %}
                        {% endif %}
                        {% if catalogItem.product.contentGrid %}
                                {{ catalogItem.product.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.unit %}
                        {{ catalogItem.unit.name }}
                {% endif %}
                {% if catalogItem.upsell %}
                        {{ catalogItem.upsell.id }}
                        {{ catalogItem.upsell.name }}
                        {% if catalogItem.upsell.inCart %} ... {% endif %}
                        {% if catalogItem.upsell.code %}
                                {{ catalogItem.upsell.code }}
                        {% endif %}
                        {% if catalogItem.upsell.vatRate %}
                                {{ catalogItem.upsell.vatRate }}
                        {% endif %}
                        {% if catalogItem.upsell.image %}
                        {% endif %}
                        {% if catalogItem.upsell.unit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.variant %}
                        {{ catalogItem.variant.id }}
                        {{ catalogItem.variant.name }}
                        {{ catalogItem.variant.trackingId }}
                        {% if catalogItem.variant.active %} ... {% endif %}
                        {% if catalogItem.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.variant.legacyRel %}
                                {{ catalogItem.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.variant.image %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for discountItem in order.discountItems %}
                {{ discountItem.amount }}
                {{ discountItem.id }}
                {{ discountItem.name }}
                {{ discountItem.vatRate }}
                {% if discountItem.amountChangeAllowed %} ... {% endif %}
                {% if discountItem.catalogItem %} ... {% endif %}
                {% if discountItem.deleteAllowed %} ... {% endif %}
                {% if discountItem.discountItem %} ... {% endif %}
                {% for discountItem in discountItem.children %}
                        {{ discountItem.amount }}
                        {{ discountItem.id }}
                        {{ discountItem.name }}
                        {{ discountItem.vatRate }}
                        {% if discountItem.amountChangeAllowed %} ... {% endif %}
                        {% if discountItem.catalogItem %} ... {% endif %}
                        {% if discountItem.deleteAllowed %} ... {% endif %}
                        {% if discountItem.discountItem %} ... {% endif %}
                        {% if discountItem.note %}
                                {{ discountItem.note }}
                        {% endif %}
                        {% if discountItem.trackingId %}
                                {{ discountItem.trackingId }}
                        {% endif %}
                        {% if discountItem.percent %}
                                {{ discountItem.percent }}
                        {% endif %}
                        {% if discountItem.discountCode %}
                        {% endif %}
                        {% if discountItem.voucher %}
                        {% endif %}
                        {% if discountItem.price %}
                        {% endif %}
                        {% if discountItem.priceTotal %}
                        {% endif %}
                        {% if discountItem.unit %}
                        {% endif %}
                {% endfor %}
                {% if discountItem.note %}
                        {{ discountItem.note }}
                {% endif %}
                {% if discountItem.trackingId %}
                        {{ discountItem.trackingId }}
                {% endif %}
                {% if discountItem.percent %}
                        {{ discountItem.percent }}
                {% endif %}
                {% if discountItem.discountCode %}
                        {{ discountItem.discountCode.code }}
                        {{ discountItem.discountCode.name }}
                        {{ discountItem.discountCode.validFrom|date('d. m. Y H:i') }}
                        {{ discountItem.discountCode.validTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if discountItem.voucher %}
                        {{ discountItem.voucher.code }}
                        {{ discountItem.voucher.validTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if discountItem.price %}
                        {{ discountItem.price.vatRate }}
                        {% if discountItem.price.discountPercent %}
                                {{ discountItem.price.discountPercent }}
                        {% endif %}
                        {% if discountItem.price.discountValidTo %}
                                {{ discountItem.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if discountItem.price.beforeDiscount %}
                        {% endif %}
                        {% if discountItem.price.discount %}
                        {% endif %}
                {% endif %}
                {% if discountItem.priceTotal %}
                        {{ discountItem.priceTotal.vatRate }}
                        {% if discountItem.priceTotal.discountPercent %}
                                {{ discountItem.priceTotal.discountPercent }}
                        {% endif %}
                        {% if discountItem.priceTotal.discountValidTo %}
                                {{ discountItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if discountItem.priceTotal.beforeDiscount %}
                        {% endif %}
                        {% if discountItem.priceTotal.discount %}
                        {% endif %}
                {% endif %}
                {% if discountItem.unit %}
                        {{ discountItem.unit.name }}
                {% endif %}
        {% endfor %}
        {{ order.price.total.currency }}
        {{ order.price.total.formatted }}
        {{ order.price.total.value }}
        {% if order.price.total.perUnit %}
        {% endif %}
        {{ order.price.unpaid.currency }}
        {{ order.price.unpaid.formatted }}
        {{ order.price.unpaid.value }}
        {% if order.price.unpaid.perUnit %}
        {% endif %}
        {{ order.price.paid.currency }}
        {{ order.price.paid.formatted }}
        {{ order.price.paid.value }}
        {% if order.price.paid.perUnit %}
        {% endif %}
        {{ order.status.id }}
        {{ order.status.name }}
        {% for socialProfile in order.shop.socialProfiles %}
                {{ socialProfile.type }}
                {{ socialProfile.url }}
        {% endfor %}
        {% if order.shop.email %}
                {{ order.shop.email }}
        {% endif %}
        {% if order.shop.language %}
                {{ order.shop.language }}
        {% endif %}
        {% if order.shop.name %}
                {{ order.shop.name }}
        {% endif %}
        {% if order.shop.phone %}
                {{ order.shop.phone }}
        {% endif %}
        {% if order.shop.shortDomain %}
                {{ order.shop.shortDomain }}
        {% endif %}
        {% if order.shop.url %}
                {{ order.shop.url }}
        {% endif %}
        {% if order.shop.country %}
                {{ order.shop.country.code }}
                {{ order.shop.country.flagCircleUrl }}
                {{ order.shop.country.flagUrl }}
                {{ order.shop.country.name }}
                {% if order.shop.country.eU %} ... {% endif %}
        {% endif %}
        {% if order.shop.image %}
                {{ order.shop.image.originalHeight }}
                {{ order.shop.image.originalWidth }}
                {{ order.shop.image.url }}
                {% if order.shop.image.alt %}
                        {{ order.shop.image.alt }}
                {% endif %}
                {% if order.shop.image.text %}
                        {{ order.shop.image.text }}
                {% endif %}
        {% endif %}
        {{ order.url }}
        {{ order.url.absolute }}
        {{ order.url.path }}
        {% for giftVoucher in order.purchasedGiftVouchers %}
                {{ giftVoucher.code }}
                {{ giftVoucher.name }}
                {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {{ giftVoucher.value.currency }}
                {{ giftVoucher.value.formatted }}
                {% if giftVoucher.value.perUnit %}
                {% endif %}
        {% endfor %}
        {% for giftVoucher in order.vouchers %}
                {{ giftVoucher.code }}
                {{ giftVoucher.name }}
                {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {{ giftVoucher.value.currency }}
                {{ giftVoucher.value.formatted }}
                {% if giftVoucher.value.perUnit %}
                {% endif %}
        {% endfor %}
        {% if order.code %}
                {{ order.code }}
        {% endif %}
        {% if order.note %}
                {{ order.note }}
        {% endif %}
        {% if order.date %}
                {{ order.date|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.dateInStatus %}
                {{ order.dateInStatus|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.expectedShippingDate %}
                {{ order.expectedShippingDate|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.customer %}
                {{ order.customer.id }}
                {{ order.customer.userPointsAvailable }}
                {{ order.customer.userPointsExpiringOn }}
                {{ order.customer.userPointsTotal }}
                {{ order.customer.name }}
                {{ order.customer.dateCreated|date('d. m. Y H:i') }}
                {% if order.customer.productOnWishlist %} ... {% endif %}
                {% if order.customer.vatCharged %} ... {% endif %}
                {% if order.customer.wholesale %} ... {% endif %}
                {% for accountingDocument in order.customer.receipts %}
                        {{ accountingDocument.code }}
                        {{ accountingDocument.date|date('d. m. Y H:i') }}
                {% endfor %}
                {% for analyticsReport in order.customer.analyticReports %}
                        {{ analyticsReport.name }}
                {% endfor %}
                {% for order in order.customer.childOrders %}
                        {{ order.amountOfItem }}
                        {{ order.catalogItemCount }}
                        {{ order.catalogItemTotalAmount }}
                        {{ order.id }}
                        {{ order.loyaltyPoints }}
                        {{ order.usableLoyaltyPoints }}
                        {{ order.language }}
                        {{ order.vs }}
                        {% if order.containsAnyOfLabels %} ... {% endif %}
                        {% if order.containsItem %} ... {% endif %}
                        {% if order.containsLabel %} ... {% endif %}
                        {% if order.digitalPhysicalCombination %} ... {% endif %}
                        {% if order.erotic %} ... {% endif %}
                        {% if order.externalReviewAllowed %} ... {% endif %}
                        {% if order.paid %} ... {% endif %}
                        {% if order.useLoyaltyPoints %} ... {% endif %}
                        {% if order.useLoyaltyPointsManually %} ... {% endif %}
                        {% for accountingDocument in order.accountingDocuments %}
                        {% endfor %}
                        {% for payment in order.availablePaymentMethods %}
                        {% endfor %}
                        {% for payment in order.payments %}
                        {% endfor %}
                        {% for transport in order.availableTransportMethods %}
                        {% endfor %}
                        {% for catalogItem in order.catalogItems %}
                        {% endfor %}
                        {% for catalogItem in order.items %}
                        {% endfor %}
                        {% for discountItem in order.discountItems %}
                        {% endfor %}
                        {% for giftVoucher in order.purchasedGiftVouchers %}
                        {% endfor %}
                        {% for giftVoucher in order.vouchers %}
                        {% endfor %}
                        {% if order.code %}
                                {{ order.code }}
                        {% endif %}
                        {% if order.note %}
                                {{ order.note }}
                        {% endif %}
                        {% if order.date %}
                                {{ order.date|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.dateInStatus %}
                                {{ order.dateInStatus|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.expectedShippingDate %}
                                {{ order.expectedShippingDate|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.closestFreeDelivery %}
                        {% endif %}
                        {% if order.parentOrder %}
                        {% endif %}
                        {% if order.package %}
                        {% endif %}
                {% endfor %}
                {% for userPointChange in order.customer.userPointChanges %}
                        {{ userPointChange.amount }}
                        {{ userPointChange.text }}
                        {{ userPointChange.date|date('d. m. Y H:i') }}
                        {% if userPointChange.dateExpire %}
                                {{ userPointChange.dateExpire|date('d. m. Y H:i') }}
                        {% endif %}
                {% endfor %}
                {{ order.customer.alternativeAddresses }}
                {% if order.customer.loyaltyCard %}
                        {{ order.customer.loyaltyCard }}
                {% endif %}
                {% if order.customer.socialLoginId %}
                        {{ order.customer.socialLoginId }}
                {% endif %}
        {% endif %}
        {% if order.closestFreeDelivery %}
                {{ order.closestFreeDelivery.name }}
                {{ order.closestFreeDelivery.vatRate }}
                {% if order.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
                {{ order.closestFreeDelivery.payment.inputId }}
                {{ order.closestFreeDelivery.payment.name }}
                {{ order.closestFreeDelivery.payment.url }}
                {{ order.closestFreeDelivery.payment.vatRate }}
                {% if order.closestFreeDelivery.payment.free %} ... {% endif %}
                {% if order.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
                {% if order.closestFreeDelivery.payment.selected %} ... {% endif %}
                {% if order.closestFreeDelivery.payment.code %}
                        {{ order.closestFreeDelivery.payment.code }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.vs %}
                        {{ order.closestFreeDelivery.payment.vs }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.qRCodeHTML %}
                        {{ order.closestFreeDelivery.payment.qRCodeHTML }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.text %}
                        {{ order.closestFreeDelivery.payment.text }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.bankAccount %}
                {% endif %}
                {% if order.closestFreeDelivery.payment.image %}
                {% endif %}
                {{ order.closestFreeDelivery.transport.inputId }}
                {{ order.closestFreeDelivery.transport.name }}
                {{ order.closestFreeDelivery.transport.vatRate }}
                {% if order.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.currier %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.digital %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.free %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.pickup %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.selected %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.text %}
                        {{ order.closestFreeDelivery.transport.text }}
                {% endif %}
                {% if order.closestFreeDelivery.transport.branch %}
                {% endif %}
                {% if order.closestFreeDelivery.transport.carrier %}
                {% endif %}
                {% if order.closestFreeDelivery.transport.deliveryDate %}
                {% endif %}
                {% if order.closestFreeDelivery.transport.packageType %}
                {% endif %}
                {% if order.closestFreeDelivery.transport.image %}
                {% endif %}
                {{ order.closestFreeDelivery.price.vatRate }}
                {% if order.closestFreeDelivery.price.discountPercent %}
                        {{ order.closestFreeDelivery.price.discountPercent }}
                {% endif %}
                {% if order.closestFreeDelivery.price.discountValidTo %}
                        {{ order.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.closestFreeDelivery.price.beforeDiscount %}
                {% endif %}
                {% if order.closestFreeDelivery.price.discount %}
                {% endif %}
                {% if order.closestFreeDelivery.id %}
                        {{ order.closestFreeDelivery.id }}
                {% endif %}
                {% if order.closestFreeDelivery.freeLimit %}
                        {{ order.closestFreeDelivery.freeLimit.percent }}
                {% endif %}
        {% endif %}
        {% if order.parentOrder %}
                {{ order.parentOrder.amountOfItem }}
                {{ order.parentOrder.catalogItemCount }}
                {{ order.parentOrder.catalogItemTotalAmount }}
                {{ order.parentOrder.id }}
                {{ order.parentOrder.loyaltyPoints }}
                {{ order.parentOrder.usableLoyaltyPoints }}
                {{ order.parentOrder.language }}
                {{ order.parentOrder.vs }}
                {% if order.parentOrder.containsAnyOfLabels %} ... {% endif %}
                {% if order.parentOrder.containsItem %} ... {% endif %}
                {% if order.parentOrder.containsLabel %} ... {% endif %}
                {% if order.parentOrder.digitalPhysicalCombination %} ... {% endif %}
                {% if order.parentOrder.erotic %} ... {% endif %}
                {% if order.parentOrder.externalReviewAllowed %} ... {% endif %}
                {% if order.parentOrder.paid %} ... {% endif %}
                {% if order.parentOrder.useLoyaltyPoints %} ... {% endif %}
                {% if order.parentOrder.useLoyaltyPointsManually %} ... {% endif %}
                {% for accountingDocument in order.parentOrder.accountingDocuments %}
                        {{ accountingDocument.code }}
                        {{ accountingDocument.date|date('d. m. Y H:i') }}
                {% endfor %}
                {% for payment in order.parentOrder.availablePaymentMethods %}
                        {{ payment.inputId }}
                        {{ payment.name }}
                        {{ payment.url }}
                        {{ payment.vatRate }}
                        {% if payment.free %} ... {% endif %}
                        {% if payment.inAdvance %} ... {% endif %}
                        {% if payment.selected %} ... {% endif %}
                        {% if payment.code %}
                                {{ payment.code }}
                        {% endif %}
                        {% if payment.vs %}
                                {{ payment.vs }}
                        {% endif %}
                        {% if payment.qRCodeHTML %}
                                {{ payment.qRCodeHTML }}
                        {% endif %}
                        {% if payment.text %}
                                {{ payment.text }}
                        {% endif %}
                        {% if payment.bankAccount %}
                        {% endif %}
                        {% if payment.image %}
                        {% endif %}
                {% endfor %}
                {% for payment in order.parentOrder.payments %}
                        {{ payment.inputId }}
                        {{ payment.name }}
                        {{ payment.url }}
                        {{ payment.vatRate }}
                        {% if payment.free %} ... {% endif %}
                        {% if payment.inAdvance %} ... {% endif %}
                        {% if payment.selected %} ... {% endif %}
                        {% if payment.code %}
                                {{ payment.code }}
                        {% endif %}
                        {% if payment.vs %}
                                {{ payment.vs }}
                        {% endif %}
                        {% if payment.qRCodeHTML %}
                                {{ payment.qRCodeHTML }}
                        {% endif %}
                        {% if payment.text %}
                                {{ payment.text }}
                        {% endif %}
                        {% if payment.bankAccount %}
                        {% endif %}
                        {% if payment.image %}
                        {% endif %}
                {% endfor %}
                {% for transport in order.parentOrder.availableTransportMethods %}
                        {{ transport.inputId }}
                        {{ transport.name }}
                        {{ transport.vatRate }}
                        {% if transport.branchRequired %} ... {% endif %}
                        {% if transport.currier %} ... {% endif %}
                        {% if transport.dateGuaranteed %} ... {% endif %}
                        {% if transport.deliveryToAddress %} ... {% endif %}
                        {% if transport.digital %} ... {% endif %}
                        {% if transport.free %} ... {% endif %}
                        {% if transport.pickup %} ... {% endif %}
                        {% if transport.selected %} ... {% endif %}
                        {% if transport.text %}
                                {{ transport.text }}
                        {% endif %}
                        {% if transport.branch %}
                        {% endif %}
                        {% if transport.carrier %}
                        {% endif %}
                        {% if transport.deliveryDate %}
                        {% endif %}
                        {% if transport.packageType %}
                        {% endif %}
                        {% if transport.image %}
                        {% endif %}
                {% endfor %}
                {{ order.parentOrder.delivery.name }}
                {{ order.parentOrder.delivery.vatRate }}
                {% if order.parentOrder.delivery.deliveryAddressRequired %} ... {% endif %}
                {% if order.parentOrder.delivery.id %}
                        {{ order.parentOrder.delivery.id }}
                {% endif %}
                {% if order.parentOrder.delivery.freeLimit %}
                {% endif %}
                {% for catalogItem in order.parentOrder.catalogItems %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {% endfor %}
                        {% for catalogItem in catalogItem.children %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.availableConfigurators %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in order.parentOrder.items %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {% endfor %}
                        {% for catalogItem in catalogItem.children %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.availableConfigurators %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for discountItem in order.parentOrder.discountItems %}
                        {{ discountItem.amount }}
                        {{ discountItem.id }}
                        {{ discountItem.name }}
                        {{ discountItem.vatRate }}
                        {% if discountItem.amountChangeAllowed %} ... {% endif %}
                        {% if discountItem.catalogItem %} ... {% endif %}
                        {% if discountItem.deleteAllowed %} ... {% endif %}
                        {% if discountItem.discountItem %} ... {% endif %}
                        {% for discountItem in discountItem.children %}
                        {% endfor %}
                        {% if discountItem.note %}
                                {{ discountItem.note }}
                        {% endif %}
                        {% if discountItem.trackingId %}
                                {{ discountItem.trackingId }}
                        {% endif %}
                        {% if discountItem.percent %}
                                {{ discountItem.percent }}
                        {% endif %}
                        {% if discountItem.discountCode %}
                        {% endif %}
                        {% if discountItem.voucher %}
                        {% endif %}
                        {% if discountItem.price %}
                        {% endif %}
                        {% if discountItem.priceTotal %}
                        {% endif %}
                        {% if discountItem.unit %}
                        {% endif %}
                {% endfor %}
                {{ order.parentOrder.status.id }}
                {{ order.parentOrder.status.name }}
                {% for socialProfile in order.parentOrder.shop.socialProfiles %}
                {% endfor %}
                {% if order.parentOrder.shop.email %}
                        {{ order.parentOrder.shop.email }}
                {% endif %}
                {% if order.parentOrder.shop.language %}
                        {{ order.parentOrder.shop.language }}
                {% endif %}
                {% if order.parentOrder.shop.name %}
                        {{ order.parentOrder.shop.name }}
                {% endif %}
                {% if order.parentOrder.shop.phone %}
                        {{ order.parentOrder.shop.phone }}
                {% endif %}
                {% if order.parentOrder.shop.shortDomain %}
                        {{ order.parentOrder.shop.shortDomain }}
                {% endif %}
                {% if order.parentOrder.shop.url %}
                        {{ order.parentOrder.shop.url }}
                {% endif %}
                {% if order.parentOrder.shop.country %}
                {% endif %}
                {% if order.parentOrder.shop.image %}
                {% endif %}
                {{ order.parentOrder.url }}
                {{ order.parentOrder.url.absolute }}
                {{ order.parentOrder.url.path }}
                {% for giftVoucher in order.parentOrder.purchasedGiftVouchers %}
                        {{ giftVoucher.code }}
                        {{ giftVoucher.name }}
                        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {% endfor %}
                {% for giftVoucher in order.parentOrder.vouchers %}
                        {{ giftVoucher.code }}
                        {{ giftVoucher.name }}
                        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {% endfor %}
                {% if order.parentOrder.code %}
                        {{ order.parentOrder.code }}
                {% endif %}
                {% if order.parentOrder.note %}
                        {{ order.parentOrder.note }}
                {% endif %}
                {% if order.parentOrder.date %}
                        {{ order.parentOrder.date|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.parentOrder.dateInStatus %}
                        {{ order.parentOrder.dateInStatus|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.parentOrder.expectedShippingDate %}
                        {{ order.parentOrder.expectedShippingDate|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.parentOrder.customer %}
                        {{ order.parentOrder.customer.id }}
                        {{ order.parentOrder.customer.userPointsAvailable }}
                        {{ order.parentOrder.customer.userPointsExpiringOn }}
                        {{ order.parentOrder.customer.userPointsTotal }}
                        {{ order.parentOrder.customer.name }}
                        {{ order.parentOrder.customer.dateCreated|date('d. m. Y H:i') }}
                        {% if order.parentOrder.customer.productOnWishlist %} ... {% endif %}
                        {% if order.parentOrder.customer.vatCharged %} ... {% endif %}
                        {% if order.parentOrder.customer.wholesale %} ... {% endif %}
                        {% for accountingDocument in order.parentOrder.customer.receipts %}
                        {% endfor %}
                        {% for analyticsReport in order.parentOrder.customer.analyticReports %}
                        {% endfor %}
                        {% for order in order.parentOrder.customer.childOrders %}
                        {% endfor %}
                        {% for userPointChange in order.parentOrder.customer.userPointChanges %}
                        {% endfor %}
                        {{ order.parentOrder.customer.alternativeAddresses }}
                        {% if order.parentOrder.customer.loyaltyCard %}
                                {{ order.parentOrder.customer.loyaltyCard }}
                        {% endif %}
                        {% if order.parentOrder.customer.socialLoginId %}
                                {{ order.parentOrder.customer.socialLoginId }}
                        {% endif %}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery %}
                        {{ order.parentOrder.closestFreeDelivery.name }}
                        {{ order.parentOrder.closestFreeDelivery.vatRate }}
                        {% if order.parentOrder.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
                        {% if order.parentOrder.closestFreeDelivery.id %}
                                {{ order.parentOrder.closestFreeDelivery.id }}
                        {% endif %}
                        {% if order.parentOrder.closestFreeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if order.parentOrder.package %}
                        {{ order.parentOrder.package.trackingUrl }}
                        {{ order.parentOrder.package.date|date('d. m. Y H:i') }}
                        {% if order.parentOrder.package.code %}
                                {{ order.parentOrder.package.code }}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if order.package %}
                {{ order.package.trackingUrl }}
                {{ order.package.date|date('d. m. Y H:i') }}
                {% if order.package.status.delivered %} ... {% endif %}
                {% if order.package.status.deposited %} ... {% endif %}
                {% if order.package.status.inTransit %} ... {% endif %}
                {% if order.package.status.returned %} ... {% endif %}
                {% if order.package.code %}
                        {{ order.package.code }}
                {% endif %}
        {% endif %}
{% endfor %}

{% for order in customer.childOrders %}
        {{ order.amountOfItem }}
        {{ order.catalogItemCount }}
        {{ order.catalogItemTotalAmount }}
        {{ order.id }}
        {{ order.loyaltyPoints }}
        {{ order.usableLoyaltyPoints }}
        {{ order.language }}
        {{ order.vs }}
        {% if order.containsAnyOfLabels %} ... {% endif %}
        {% if order.containsItem %} ... {% endif %}
        {% if order.containsLabel %} ... {% endif %}
        {% if order.digitalPhysicalCombination %} ... {% endif %}
        {% if order.erotic %} ... {% endif %}
        {% if order.externalReviewAllowed %} ... {% endif %}
        {% if order.paid %} ... {% endif %}
        {% if order.useLoyaltyPoints %} ... {% endif %}
        {% if order.useLoyaltyPointsManually %} ... {% endif %}
        {% for accountingDocument in order.accountingDocuments %}
                {{ accountingDocument.code }}
                {{ accountingDocument.date|date('d. m. Y H:i') }}
                {{ accountingDocument.totalPrice.vatRate }}
                {% if accountingDocument.totalPrice.discountPercent %}
                        {{ accountingDocument.totalPrice.discountPercent }}
                {% endif %}
                {% if accountingDocument.totalPrice.discountValidTo %}
                        {{ accountingDocument.totalPrice.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if accountingDocument.totalPrice.beforeDiscount %}
                {% endif %}
                {% if accountingDocument.totalPrice.discount %}
                {% endif %}
                {{ accountingDocument.pdfUrl }}
                {{ accountingDocument.pdfUrl.absolute }}
                {{ accountingDocument.pdfUrl.path }}
        {% endfor %}
        {% if order.address.delivery.city %}
                {{ order.address.delivery.city }}
        {% endif %}
        {% if order.address.delivery.company %}
                {{ order.address.delivery.company }}
        {% endif %}
        {% if order.address.delivery.companyId %}
                {{ order.address.delivery.companyId }}
        {% endif %}
        {% if order.address.delivery.email %}
                {{ order.address.delivery.email }}
        {% endif %}
        {% if order.address.delivery.phone %}
                {{ order.address.delivery.phone }}
        {% endif %}
        {% if order.address.delivery.region %}
                {{ order.address.delivery.region }}
        {% endif %}
        {% if order.address.delivery.street %}
                {{ order.address.delivery.street }}
        {% endif %}
        {% if order.address.delivery.vatId %}
                {{ order.address.delivery.vatId }}
        {% endif %}
        {% if order.address.delivery.web %}
                {{ order.address.delivery.web }}
        {% endif %}
        {% if order.address.delivery.zip %}
                {{ order.address.delivery.zip }}
        {% endif %}
        {% if order.address.delivery.purpose %}
        {% endif %}
        {% if order.address.delivery.country %}
        {% endif %}
        {% if order.address.invoice.city %}
                {{ order.address.invoice.city }}
        {% endif %}
        {% if order.address.invoice.company %}
                {{ order.address.invoice.company }}
        {% endif %}
        {% if order.address.invoice.companyId %}
                {{ order.address.invoice.companyId }}
        {% endif %}
        {% if order.address.invoice.email %}
                {{ order.address.invoice.email }}
        {% endif %}
        {% if order.address.invoice.phone %}
                {{ order.address.invoice.phone }}
        {% endif %}
        {% if order.address.invoice.region %}
                {{ order.address.invoice.region }}
        {% endif %}
        {% if order.address.invoice.street %}
                {{ order.address.invoice.street }}
        {% endif %}
        {% if order.address.invoice.vatId %}
                {{ order.address.invoice.vatId }}
        {% endif %}
        {% if order.address.invoice.web %}
                {{ order.address.invoice.web }}
        {% endif %}
        {% if order.address.invoice.zip %}
                {{ order.address.invoice.zip }}
        {% endif %}
        {% if order.address.invoice.purpose %}
        {% endif %}
        {% if order.address.invoice.country %}
        {% endif %}
        {% for payment in order.availablePaymentMethods %}
                {{ payment.inputId }}
                {{ payment.name }}
                {{ payment.url }}
                {{ payment.vatRate }}
                {% if payment.free %} ... {% endif %}
                {% if payment.inAdvance %} ... {% endif %}
                {% if payment.selected %} ... {% endif %}
                {{ payment.price.vatRate }}
                {% if payment.price.discountPercent %}
                        {{ payment.price.discountPercent }}
                {% endif %}
                {% if payment.price.discountValidTo %}
                        {{ payment.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if payment.price.beforeDiscount %}
                {% endif %}
                {% if payment.price.discount %}
                {% endif %}
                {% if payment.code %}
                        {{ payment.code }}
                {% endif %}
                {% if payment.vs %}
                        {{ payment.vs }}
                {% endif %}
                {% if payment.qRCodeHTML %}
                        {{ payment.qRCodeHTML }}
                {% endif %}
                {% if payment.text %}
                        {{ payment.text }}
                {% endif %}
                {% if payment.bankAccount %}
                        {{ payment.bankAccount }}
                        {{ payment.bankAccount.currency }}
                        {% if payment.bankAccount.bic %}
                                {{ payment.bankAccount.bic }}
                        {% endif %}
                        {% if payment.bankAccount.iban %}
                                {{ payment.bankAccount.iban }}
                        {% endif %}
                        {% if payment.bankAccount.local %}
                                {{ payment.bankAccount.local }}
                        {% endif %}
                {% endif %}
                {% if payment.image %}
                        {{ payment.image.originalHeight }}
                        {{ payment.image.originalWidth }}
                        {{ payment.image.url }}
                        {% if payment.image.alt %}
                                {{ payment.image.alt }}
                        {% endif %}
                        {% if payment.image.text %}
                                {{ payment.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for payment in order.payments %}
                {{ payment.inputId }}
                {{ payment.name }}
                {{ payment.url }}
                {{ payment.vatRate }}
                {% if payment.free %} ... {% endif %}
                {% if payment.inAdvance %} ... {% endif %}
                {% if payment.selected %} ... {% endif %}
                {{ payment.price.vatRate }}
                {% if payment.price.discountPercent %}
                        {{ payment.price.discountPercent }}
                {% endif %}
                {% if payment.price.discountValidTo %}
                        {{ payment.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if payment.price.beforeDiscount %}
                {% endif %}
                {% if payment.price.discount %}
                {% endif %}
                {% if payment.code %}
                        {{ payment.code }}
                {% endif %}
                {% if payment.vs %}
                        {{ payment.vs }}
                {% endif %}
                {% if payment.qRCodeHTML %}
                        {{ payment.qRCodeHTML }}
                {% endif %}
                {% if payment.text %}
                        {{ payment.text }}
                {% endif %}
                {% if payment.bankAccount %}
                        {{ payment.bankAccount }}
                        {{ payment.bankAccount.currency }}
                        {% if payment.bankAccount.bic %}
                                {{ payment.bankAccount.bic }}
                        {% endif %}
                        {% if payment.bankAccount.iban %}
                                {{ payment.bankAccount.iban }}
                        {% endif %}
                        {% if payment.bankAccount.local %}
                                {{ payment.bankAccount.local }}
                        {% endif %}
                {% endif %}
                {% if payment.image %}
                        {{ payment.image.originalHeight }}
                        {{ payment.image.originalWidth }}
                        {{ payment.image.url }}
                        {% if payment.image.alt %}
                                {{ payment.image.alt }}
                        {% endif %}
                        {% if payment.image.text %}
                                {{ payment.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for transport in order.availableTransportMethods %}
                {{ transport.inputId }}
                {{ transport.name }}
                {{ transport.vatRate }}
                {% if transport.branchRequired %} ... {% endif %}
                {% if transport.currier %} ... {% endif %}
                {% if transport.dateGuaranteed %} ... {% endif %}
                {% if transport.deliveryToAddress %} ... {% endif %}
                {% if transport.digital %} ... {% endif %}
                {% if transport.free %} ... {% endif %}
                {% if transport.pickup %} ... {% endif %}
                {% if transport.selected %} ... {% endif %}
                {{ transport.price.vatRate }}
                {% if transport.price.discountPercent %}
                        {{ transport.price.discountPercent }}
                {% endif %}
                {% if transport.price.discountValidTo %}
                        {{ transport.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if transport.price.beforeDiscount %}
                {% endif %}
                {% if transport.price.discount %}
                {% endif %}
                {% if transport.text %}
                        {{ transport.text }}
                {% endif %}
                {% if transport.branch %}
                        {{ transport.branch.code }}
                        {{ transport.branch.name }}
                {% endif %}
                {% if transport.carrier %}
                        {{ transport.carrier.code }}
                        {{ transport.carrier.name }}
                {% endif %}
                {% if transport.deliveryDate %}
                        {{ transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                        {{ transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                        {{ transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                        {% if transport.deliveryDate.timeDelivered %}
                                {{ transport.deliveryDate.timeDelivered }}
                        {% endif %}
                {% endif %}
                {% if transport.packageType %}
                        {{ transport.packageType.code }}
                {% endif %}
                {% if transport.image %}
                        {{ transport.image.originalHeight }}
                        {{ transport.image.originalWidth }}
                        {{ transport.image.url }}
                        {% if transport.image.alt %}
                                {{ transport.image.alt }}
                        {% endif %}
                        {% if transport.image.text %}
                                {{ transport.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ order.delivery.name }}
        {{ order.delivery.vatRate }}
        {% if order.delivery.deliveryAddressRequired %} ... {% endif %}
        {{ order.delivery.payment.inputId }}
        {{ order.delivery.payment.name }}
        {{ order.delivery.payment.url }}
        {{ order.delivery.payment.vatRate }}
        {% if order.delivery.payment.free %} ... {% endif %}
        {% if order.delivery.payment.inAdvance %} ... {% endif %}
        {% if order.delivery.payment.selected %} ... {% endif %}
        {% if order.delivery.payment.code %}
                {{ order.delivery.payment.code }}
        {% endif %}
        {% if order.delivery.payment.vs %}
                {{ order.delivery.payment.vs }}
        {% endif %}
        {% if order.delivery.payment.qRCodeHTML %}
                {{ order.delivery.payment.qRCodeHTML }}
        {% endif %}
        {% if order.delivery.payment.text %}
                {{ order.delivery.payment.text }}
        {% endif %}
        {% if order.delivery.payment.bankAccount %}
        {% endif %}
        {% if order.delivery.payment.image %}
        {% endif %}
        {{ order.delivery.transport.inputId }}
        {{ order.delivery.transport.name }}
        {{ order.delivery.transport.vatRate }}
        {% if order.delivery.transport.branchRequired %} ... {% endif %}
        {% if order.delivery.transport.currier %} ... {% endif %}
        {% if order.delivery.transport.dateGuaranteed %} ... {% endif %}
        {% if order.delivery.transport.deliveryToAddress %} ... {% endif %}
        {% if order.delivery.transport.digital %} ... {% endif %}
        {% if order.delivery.transport.free %} ... {% endif %}
        {% if order.delivery.transport.pickup %} ... {% endif %}
        {% if order.delivery.transport.selected %} ... {% endif %}
        {% if order.delivery.transport.text %}
                {{ order.delivery.transport.text }}
        {% endif %}
        {% if order.delivery.transport.branch %}
        {% endif %}
        {% if order.delivery.transport.carrier %}
        {% endif %}
        {% if order.delivery.transport.deliveryDate %}
        {% endif %}
        {% if order.delivery.transport.packageType %}
        {% endif %}
        {% if order.delivery.transport.image %}
        {% endif %}
        {{ order.delivery.price.vatRate }}
        {% if order.delivery.price.discountPercent %}
                {{ order.delivery.price.discountPercent }}
        {% endif %}
        {% if order.delivery.price.discountValidTo %}
                {{ order.delivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.delivery.price.beforeDiscount %}
        {% endif %}
        {% if order.delivery.price.discount %}
        {% endif %}
        {% if order.delivery.id %}
                {{ order.delivery.id }}
        {% endif %}
        {% if order.delivery.freeLimit %}
                {{ order.delivery.freeLimit.percent }}
        {% endif %}
        {% for catalogItem in order.catalogItems %}
                {{ catalogItem.amount }}
                {{ catalogItem.id }}
                {{ catalogItem.name }}
                {{ catalogItem.productName }}
                {{ catalogItem.trackingId }}
                {{ catalogItem.vatRate }}
                {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                {% if catalogItem.catalogItem %} ... {% endif %}
                {% if catalogItem.deleteAllowed %} ... {% endif %}
                {% if catalogItem.discountItem %} ... {% endif %}
                {% if catalogItem.gift %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in catalogItem.children %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.availableConfigurators %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for orderItemError in catalogItem.errors %}
                        {{ orderItemError.recommendedAmount }}
                        {{ orderItemError.code }}
                        {{ orderItemError.itemName }}
                        {{ orderItemError.message }}
                {% endfor %}
                {{ catalogItem.price.vatRate }}
                {% if catalogItem.price.discountPercent %}
                        {{ catalogItem.price.discountPercent }}
                {% endif %}
                {% if catalogItem.price.discountValidTo %}
                        {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.price.discount %}
                {% endif %}
                {{ catalogItem.priceTotal.vatRate }}
                {% if catalogItem.priceTotal.discountPercent %}
                        {{ catalogItem.priceTotal.discountPercent }}
                {% endif %}
                {% if catalogItem.priceTotal.discountValidTo %}
                        {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.priceTotal.beforeDiscount %}
                {% endif %}
                {% if catalogItem.priceTotal.discount %}
                {% endif %}
                {% for productDesigner in catalogItem.availableConfigurators %}
                        {{ productDesigner.name }}
                        {% if productDesigner.result %}
                        {% endif %}
                {% endfor %}
                {% for upsell in catalogItem.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.trackingIds }}
                {% if catalogItem.code %}
                        {{ catalogItem.code }}
                {% endif %}
                {% if catalogItem.note %}
                        {{ catalogItem.note }}
                {% endif %}
                {% if catalogItem.variantName %}
                        {{ catalogItem.variantName }}
                {% endif %}
                {% if catalogItem.image %}
                        {{ catalogItem.image.originalHeight }}
                        {{ catalogItem.image.originalWidth }}
                        {{ catalogItem.image.url }}
                        {% if catalogItem.image.alt %}
                                {{ catalogItem.image.alt }}
                        {% endif %}
                        {% if catalogItem.image.text %}
                                {{ catalogItem.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item %}
                        {{ catalogItem.item.cartAmountRequiredMultiplier }}
                        {{ catalogItem.item.id }}
                        {{ catalogItem.item.loyaltyPointsAmount }}
                        {{ catalogItem.item.name }}
                        {{ catalogItem.item.trackingId }}
                        {% if catalogItem.item.digital %} ... {% endif %}
                        {% if catalogItem.item.sellable %} ... {% endif %}
                        {% if catalogItem.item.service %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.item.trackingIds }}
                        {{ catalogItem.item.storageLocations }}
                        {% if catalogItem.item.packageWeight %}
                                {{ catalogItem.item.packageWeight }}
                        {% endif %}
                        {% if catalogItem.item.code %}
                                {{ catalogItem.item.code }}
                        {% endif %}
                        {% if catalogItem.item.packageHeight %}
                                {{ catalogItem.item.packageHeight }}
                        {% endif %}
                        {% if catalogItem.item.packageLength %}
                                {{ catalogItem.item.packageLength }}
                        {% endif %}
                        {% if catalogItem.item.packageWidth %}
                                {{ catalogItem.item.packageWidth }}
                        {% endif %}
                        {% if catalogItem.item.bundle %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery %}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.packageDimensions %}
                        {% endif %}
                        {% if catalogItem.item.image %}
                        {% endif %}
                        {% if catalogItem.item.price %}
                        {% endif %}
                        {% if catalogItem.item.url %}
                        {% endif %}
                        {% if catalogItem.item.variant %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product %}
                        {{ catalogItem.product.id }}
                        {{ catalogItem.product.name }}
                        {{ catalogItem.product.trackingId }}
                        {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.active %} ... {% endif %}
                        {% if catalogItem.product.compared %} ... {% endif %}
                        {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.flagNew %} ... {% endif %}
                        {% if catalogItem.product.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.soldSeparately %} ... {% endif %}
                        {% for address in catalogItem.product.publicContacts %}
                        {% endfor %}
                        {% for attributeInstance in catalogItem.product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.labels %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.product.configurators %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.videos %}
                        {% endfor %}
                        {{ catalogItem.product.trackingIds }}
                        {% if catalogItem.product.currentSubName %}
                                {{ catalogItem.product.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.nameSuffix %}
                                {{ catalogItem.product.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.nameSupplier %}
                                {{ catalogItem.product.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.text %}
                                {{ catalogItem.product.text }}
                        {% endif %}
                        {% if catalogItem.product.attribute %}
                        {% endif %}
                        {% if catalogItem.product.brand %}
                        {% endif %}
                        {% if catalogItem.product.image %}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.successor %}
                        {% endif %}
                        {% if catalogItem.product.seo %}
                        {% endif %}
                        {% if catalogItem.product.supplier %}
                        {% endif %}
                        {% if catalogItem.product.unit %}
                        {% endif %}
                        {% if catalogItem.product.variant %}
                        {% endif %}
                        {% if catalogItem.product.warranty %}
                        {% endif %}
                        {% if catalogItem.product.contentGrid %}
                                {{ catalogItem.product.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.unit %}
                        {{ catalogItem.unit.name }}
                {% endif %}
                {% if catalogItem.upsell %}
                        {{ catalogItem.upsell.id }}
                        {{ catalogItem.upsell.name }}
                        {% if catalogItem.upsell.inCart %} ... {% endif %}
                        {% if catalogItem.upsell.code %}
                                {{ catalogItem.upsell.code }}
                        {% endif %}
                        {% if catalogItem.upsell.vatRate %}
                                {{ catalogItem.upsell.vatRate }}
                        {% endif %}
                        {% if catalogItem.upsell.image %}
                        {% endif %}
                        {% if catalogItem.upsell.unit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.variant %}
                        {{ catalogItem.variant.id }}
                        {{ catalogItem.variant.name }}
                        {{ catalogItem.variant.trackingId }}
                        {% if catalogItem.variant.active %} ... {% endif %}
                        {% if catalogItem.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.variant.legacyRel %}
                                {{ catalogItem.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.variant.image %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for catalogItem in order.items %}
                {{ catalogItem.amount }}
                {{ catalogItem.id }}
                {{ catalogItem.name }}
                {{ catalogItem.productName }}
                {{ catalogItem.trackingId }}
                {{ catalogItem.vatRate }}
                {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                {% if catalogItem.catalogItem %} ... {% endif %}
                {% if catalogItem.deleteAllowed %} ... {% endif %}
                {% if catalogItem.discountItem %} ... {% endif %}
                {% if catalogItem.gift %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in catalogItem.children %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.availableConfigurators %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for orderItemError in catalogItem.errors %}
                        {{ orderItemError.recommendedAmount }}
                        {{ orderItemError.code }}
                        {{ orderItemError.itemName }}
                        {{ orderItemError.message }}
                {% endfor %}
                {{ catalogItem.price.vatRate }}
                {% if catalogItem.price.discountPercent %}
                        {{ catalogItem.price.discountPercent }}
                {% endif %}
                {% if catalogItem.price.discountValidTo %}
                        {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.price.discount %}
                {% endif %}
                {{ catalogItem.priceTotal.vatRate }}
                {% if catalogItem.priceTotal.discountPercent %}
                        {{ catalogItem.priceTotal.discountPercent }}
                {% endif %}
                {% if catalogItem.priceTotal.discountValidTo %}
                        {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.priceTotal.beforeDiscount %}
                {% endif %}
                {% if catalogItem.priceTotal.discount %}
                {% endif %}
                {% for productDesigner in catalogItem.availableConfigurators %}
                        {{ productDesigner.name }}
                        {% if productDesigner.result %}
                        {% endif %}
                {% endfor %}
                {% for upsell in catalogItem.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.trackingIds }}
                {% if catalogItem.code %}
                        {{ catalogItem.code }}
                {% endif %}
                {% if catalogItem.note %}
                        {{ catalogItem.note }}
                {% endif %}
                {% if catalogItem.variantName %}
                        {{ catalogItem.variantName }}
                {% endif %}
                {% if catalogItem.image %}
                        {{ catalogItem.image.originalHeight }}
                        {{ catalogItem.image.originalWidth }}
                        {{ catalogItem.image.url }}
                        {% if catalogItem.image.alt %}
                                {{ catalogItem.image.alt }}
                        {% endif %}
                        {% if catalogItem.image.text %}
                                {{ catalogItem.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item %}
                        {{ catalogItem.item.cartAmountRequiredMultiplier }}
                        {{ catalogItem.item.id }}
                        {{ catalogItem.item.loyaltyPointsAmount }}
                        {{ catalogItem.item.name }}
                        {{ catalogItem.item.trackingId }}
                        {% if catalogItem.item.digital %} ... {% endif %}
                        {% if catalogItem.item.sellable %} ... {% endif %}
                        {% if catalogItem.item.service %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.item.trackingIds }}
                        {{ catalogItem.item.storageLocations }}
                        {% if catalogItem.item.packageWeight %}
                                {{ catalogItem.item.packageWeight }}
                        {% endif %}
                        {% if catalogItem.item.code %}
                                {{ catalogItem.item.code }}
                        {% endif %}
                        {% if catalogItem.item.packageHeight %}
                                {{ catalogItem.item.packageHeight }}
                        {% endif %}
                        {% if catalogItem.item.packageLength %}
                                {{ catalogItem.item.packageLength }}
                        {% endif %}
                        {% if catalogItem.item.packageWidth %}
                                {{ catalogItem.item.packageWidth }}
                        {% endif %}
                        {% if catalogItem.item.bundle %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery %}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.packageDimensions %}
                        {% endif %}
                        {% if catalogItem.item.image %}
                        {% endif %}
                        {% if catalogItem.item.price %}
                        {% endif %}
                        {% if catalogItem.item.url %}
                        {% endif %}
                        {% if catalogItem.item.variant %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product %}
                        {{ catalogItem.product.id }}
                        {{ catalogItem.product.name }}
                        {{ catalogItem.product.trackingId }}
                        {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.active %} ... {% endif %}
                        {% if catalogItem.product.compared %} ... {% endif %}
                        {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.flagNew %} ... {% endif %}
                        {% if catalogItem.product.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.soldSeparately %} ... {% endif %}
                        {% for address in catalogItem.product.publicContacts %}
                        {% endfor %}
                        {% for attributeInstance in catalogItem.product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.labels %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.product.configurators %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.videos %}
                        {% endfor %}
                        {{ catalogItem.product.trackingIds }}
                        {% if catalogItem.product.currentSubName %}
                                {{ catalogItem.product.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.nameSuffix %}
                                {{ catalogItem.product.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.nameSupplier %}
                                {{ catalogItem.product.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.text %}
                                {{ catalogItem.product.text }}
                        {% endif %}
                        {% if catalogItem.product.attribute %}
                        {% endif %}
                        {% if catalogItem.product.brand %}
                        {% endif %}
                        {% if catalogItem.product.image %}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.successor %}
                        {% endif %}
                        {% if catalogItem.product.seo %}
                        {% endif %}
                        {% if catalogItem.product.supplier %}
                        {% endif %}
                        {% if catalogItem.product.unit %}
                        {% endif %}
                        {% if catalogItem.product.variant %}
                        {% endif %}
                        {% if catalogItem.product.warranty %}
                        {% endif %}
                        {% if catalogItem.product.contentGrid %}
                                {{ catalogItem.product.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.unit %}
                        {{ catalogItem.unit.name }}
                {% endif %}
                {% if catalogItem.upsell %}
                        {{ catalogItem.upsell.id }}
                        {{ catalogItem.upsell.name }}
                        {% if catalogItem.upsell.inCart %} ... {% endif %}
                        {% if catalogItem.upsell.code %}
                                {{ catalogItem.upsell.code }}
                        {% endif %}
                        {% if catalogItem.upsell.vatRate %}
                                {{ catalogItem.upsell.vatRate }}
                        {% endif %}
                        {% if catalogItem.upsell.image %}
                        {% endif %}
                        {% if catalogItem.upsell.unit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.variant %}
                        {{ catalogItem.variant.id }}
                        {{ catalogItem.variant.name }}
                        {{ catalogItem.variant.trackingId }}
                        {% if catalogItem.variant.active %} ... {% endif %}
                        {% if catalogItem.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.variant.legacyRel %}
                                {{ catalogItem.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.variant.image %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for discountItem in order.discountItems %}
                {{ discountItem.amount }}
                {{ discountItem.id }}
                {{ discountItem.name }}
                {{ discountItem.vatRate }}
                {% if discountItem.amountChangeAllowed %} ... {% endif %}
                {% if discountItem.catalogItem %} ... {% endif %}
                {% if discountItem.deleteAllowed %} ... {% endif %}
                {% if discountItem.discountItem %} ... {% endif %}
                {% for discountItem in discountItem.children %}
                        {{ discountItem.amount }}
                        {{ discountItem.id }}
                        {{ discountItem.name }}
                        {{ discountItem.vatRate }}
                        {% if discountItem.amountChangeAllowed %} ... {% endif %}
                        {% if discountItem.catalogItem %} ... {% endif %}
                        {% if discountItem.deleteAllowed %} ... {% endif %}
                        {% if discountItem.discountItem %} ... {% endif %}
                        {% if discountItem.note %}
                                {{ discountItem.note }}
                        {% endif %}
                        {% if discountItem.trackingId %}
                                {{ discountItem.trackingId }}
                        {% endif %}
                        {% if discountItem.percent %}
                                {{ discountItem.percent }}
                        {% endif %}
                        {% if discountItem.discountCode %}
                        {% endif %}
                        {% if discountItem.voucher %}
                        {% endif %}
                        {% if discountItem.price %}
                        {% endif %}
                        {% if discountItem.priceTotal %}
                        {% endif %}
                        {% if discountItem.unit %}
                        {% endif %}
                {% endfor %}
                {% if discountItem.note %}
                        {{ discountItem.note }}
                {% endif %}
                {% if discountItem.trackingId %}
                        {{ discountItem.trackingId }}
                {% endif %}
                {% if discountItem.percent %}
                        {{ discountItem.percent }}
                {% endif %}
                {% if discountItem.discountCode %}
                        {{ discountItem.discountCode.code }}
                        {{ discountItem.discountCode.name }}
                        {{ discountItem.discountCode.validFrom|date('d. m. Y H:i') }}
                        {{ discountItem.discountCode.validTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if discountItem.voucher %}
                        {{ discountItem.voucher.code }}
                        {{ discountItem.voucher.validTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if discountItem.price %}
                        {{ discountItem.price.vatRate }}
                        {% if discountItem.price.discountPercent %}
                                {{ discountItem.price.discountPercent }}
                        {% endif %}
                        {% if discountItem.price.discountValidTo %}
                                {{ discountItem.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if discountItem.price.beforeDiscount %}
                        {% endif %}
                        {% if discountItem.price.discount %}
                        {% endif %}
                {% endif %}
                {% if discountItem.priceTotal %}
                        {{ discountItem.priceTotal.vatRate }}
                        {% if discountItem.priceTotal.discountPercent %}
                                {{ discountItem.priceTotal.discountPercent }}
                        {% endif %}
                        {% if discountItem.priceTotal.discountValidTo %}
                                {{ discountItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if discountItem.priceTotal.beforeDiscount %}
                        {% endif %}
                        {% if discountItem.priceTotal.discount %}
                        {% endif %}
                {% endif %}
                {% if discountItem.unit %}
                        {{ discountItem.unit.name }}
                {% endif %}
        {% endfor %}
        {{ order.price.total.currency }}
        {{ order.price.total.formatted }}
        {{ order.price.total.value }}
        {% if order.price.total.perUnit %}
        {% endif %}
        {{ order.price.unpaid.currency }}
        {{ order.price.unpaid.formatted }}
        {{ order.price.unpaid.value }}
        {% if order.price.unpaid.perUnit %}
        {% endif %}
        {{ order.price.paid.currency }}
        {{ order.price.paid.formatted }}
        {{ order.price.paid.value }}
        {% if order.price.paid.perUnit %}
        {% endif %}
        {{ order.status.id }}
        {{ order.status.name }}
        {% for socialProfile in order.shop.socialProfiles %}
                {{ socialProfile.type }}
                {{ socialProfile.url }}
        {% endfor %}
        {% if order.shop.email %}
                {{ order.shop.email }}
        {% endif %}
        {% if order.shop.language %}
                {{ order.shop.language }}
        {% endif %}
        {% if order.shop.name %}
                {{ order.shop.name }}
        {% endif %}
        {% if order.shop.phone %}
                {{ order.shop.phone }}
        {% endif %}
        {% if order.shop.shortDomain %}
                {{ order.shop.shortDomain }}
        {% endif %}
        {% if order.shop.url %}
                {{ order.shop.url }}
        {% endif %}
        {% if order.shop.country %}
                {{ order.shop.country.code }}
                {{ order.shop.country.flagCircleUrl }}
                {{ order.shop.country.flagUrl }}
                {{ order.shop.country.name }}
                {% if order.shop.country.eU %} ... {% endif %}
        {% endif %}
        {% if order.shop.image %}
                {{ order.shop.image.originalHeight }}
                {{ order.shop.image.originalWidth }}
                {{ order.shop.image.url }}
                {% if order.shop.image.alt %}
                        {{ order.shop.image.alt }}
                {% endif %}
                {% if order.shop.image.text %}
                        {{ order.shop.image.text }}
                {% endif %}
        {% endif %}
        {{ order.url }}
        {{ order.url.absolute }}
        {{ order.url.path }}
        {% for giftVoucher in order.purchasedGiftVouchers %}
                {{ giftVoucher.code }}
                {{ giftVoucher.name }}
                {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {{ giftVoucher.value.currency }}
                {{ giftVoucher.value.formatted }}
                {% if giftVoucher.value.perUnit %}
                {% endif %}
        {% endfor %}
        {% for giftVoucher in order.vouchers %}
                {{ giftVoucher.code }}
                {{ giftVoucher.name }}
                {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {{ giftVoucher.value.currency }}
                {{ giftVoucher.value.formatted }}
                {% if giftVoucher.value.perUnit %}
                {% endif %}
        {% endfor %}
        {% if order.code %}
                {{ order.code }}
        {% endif %}
        {% if order.note %}
                {{ order.note }}
        {% endif %}
        {% if order.date %}
                {{ order.date|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.dateInStatus %}
                {{ order.dateInStatus|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.expectedShippingDate %}
                {{ order.expectedShippingDate|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.customer %}
                {{ order.customer.id }}
                {{ order.customer.userPointsAvailable }}
                {{ order.customer.userPointsExpiringOn }}
                {{ order.customer.userPointsTotal }}
                {{ order.customer.name }}
                {{ order.customer.dateCreated|date('d. m. Y H:i') }}
                {% if order.customer.productOnWishlist %} ... {% endif %}
                {% if order.customer.vatCharged %} ... {% endif %}
                {% if order.customer.wholesale %} ... {% endif %}
                {% for accountingDocument in order.customer.receipts %}
                        {{ accountingDocument.code }}
                        {{ accountingDocument.date|date('d. m. Y H:i') }}
                {% endfor %}
                {% for analyticsReport in order.customer.analyticReports %}
                        {{ analyticsReport.name }}
                {% endfor %}
                {% for order in order.customer.orders %}
                        {{ order.amountOfItem }}
                        {{ order.catalogItemCount }}
                        {{ order.catalogItemTotalAmount }}
                        {{ order.id }}
                        {{ order.loyaltyPoints }}
                        {{ order.usableLoyaltyPoints }}
                        {{ order.language }}
                        {{ order.vs }}
                        {% if order.containsAnyOfLabels %} ... {% endif %}
                        {% if order.containsItem %} ... {% endif %}
                        {% if order.containsLabel %} ... {% endif %}
                        {% if order.digitalPhysicalCombination %} ... {% endif %}
                        {% if order.erotic %} ... {% endif %}
                        {% if order.externalReviewAllowed %} ... {% endif %}
                        {% if order.paid %} ... {% endif %}
                        {% if order.useLoyaltyPoints %} ... {% endif %}
                        {% if order.useLoyaltyPointsManually %} ... {% endif %}
                        {% for accountingDocument in order.accountingDocuments %}
                        {% endfor %}
                        {% for payment in order.availablePaymentMethods %}
                        {% endfor %}
                        {% for payment in order.payments %}
                        {% endfor %}
                        {% for transport in order.availableTransportMethods %}
                        {% endfor %}
                        {% for catalogItem in order.catalogItems %}
                        {% endfor %}
                        {% for catalogItem in order.items %}
                        {% endfor %}
                        {% for discountItem in order.discountItems %}
                        {% endfor %}
                        {% for giftVoucher in order.purchasedGiftVouchers %}
                        {% endfor %}
                        {% for giftVoucher in order.vouchers %}
                        {% endfor %}
                        {% if order.code %}
                                {{ order.code }}
                        {% endif %}
                        {% if order.note %}
                                {{ order.note }}
                        {% endif %}
                        {% if order.date %}
                                {{ order.date|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.dateInStatus %}
                                {{ order.dateInStatus|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.expectedShippingDate %}
                                {{ order.expectedShippingDate|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.closestFreeDelivery %}
                        {% endif %}
                        {% if order.parentOrder %}
                        {% endif %}
                        {% if order.package %}
                        {% endif %}
                {% endfor %}
                {% for userPointChange in order.customer.userPointChanges %}
                        {{ userPointChange.amount }}
                        {{ userPointChange.text }}
                        {{ userPointChange.date|date('d. m. Y H:i') }}
                        {% if userPointChange.dateExpire %}
                                {{ userPointChange.dateExpire|date('d. m. Y H:i') }}
                        {% endif %}
                {% endfor %}
                {{ order.customer.alternativeAddresses }}
                {% if order.customer.loyaltyCard %}
                        {{ order.customer.loyaltyCard }}
                {% endif %}
                {% if order.customer.socialLoginId %}
                        {{ order.customer.socialLoginId }}
                {% endif %}
        {% endif %}
        {% if order.closestFreeDelivery %}
                {{ order.closestFreeDelivery.name }}
                {{ order.closestFreeDelivery.vatRate }}
                {% if order.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
                {{ order.closestFreeDelivery.payment.inputId }}
                {{ order.closestFreeDelivery.payment.name }}
                {{ order.closestFreeDelivery.payment.url }}
                {{ order.closestFreeDelivery.payment.vatRate }}
                {% if order.closestFreeDelivery.payment.free %} ... {% endif %}
                {% if order.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
                {% if order.closestFreeDelivery.payment.selected %} ... {% endif %}
                {% if order.closestFreeDelivery.payment.code %}
                        {{ order.closestFreeDelivery.payment.code }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.vs %}
                        {{ order.closestFreeDelivery.payment.vs }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.qRCodeHTML %}
                        {{ order.closestFreeDelivery.payment.qRCodeHTML }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.text %}
                        {{ order.closestFreeDelivery.payment.text }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.bankAccount %}
                {% endif %}
                {% if order.closestFreeDelivery.payment.image %}
                {% endif %}
                {{ order.closestFreeDelivery.transport.inputId }}
                {{ order.closestFreeDelivery.transport.name }}
                {{ order.closestFreeDelivery.transport.vatRate }}
                {% if order.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.currier %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.digital %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.free %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.pickup %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.selected %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.text %}
                        {{ order.closestFreeDelivery.transport.text }}
                {% endif %}
                {% if order.closestFreeDelivery.transport.branch %}
                {% endif %}
                {% if order.closestFreeDelivery.transport.carrier %}
                {% endif %}
                {% if order.closestFreeDelivery.transport.deliveryDate %}
                {% endif %}
                {% if order.closestFreeDelivery.transport.packageType %}
                {% endif %}
                {% if order.closestFreeDelivery.transport.image %}
                {% endif %}
                {{ order.closestFreeDelivery.price.vatRate }}
                {% if order.closestFreeDelivery.price.discountPercent %}
                        {{ order.closestFreeDelivery.price.discountPercent }}
                {% endif %}
                {% if order.closestFreeDelivery.price.discountValidTo %}
                        {{ order.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.closestFreeDelivery.price.beforeDiscount %}
                {% endif %}
                {% if order.closestFreeDelivery.price.discount %}
                {% endif %}
                {% if order.closestFreeDelivery.id %}
                        {{ order.closestFreeDelivery.id }}
                {% endif %}
                {% if order.closestFreeDelivery.freeLimit %}
                        {{ order.closestFreeDelivery.freeLimit.percent }}
                {% endif %}
        {% endif %}
        {% if order.parentOrder %}
                {{ order.parentOrder.amountOfItem }}
                {{ order.parentOrder.catalogItemCount }}
                {{ order.parentOrder.catalogItemTotalAmount }}
                {{ order.parentOrder.id }}
                {{ order.parentOrder.loyaltyPoints }}
                {{ order.parentOrder.usableLoyaltyPoints }}
                {{ order.parentOrder.language }}
                {{ order.parentOrder.vs }}
                {% if order.parentOrder.containsAnyOfLabels %} ... {% endif %}
                {% if order.parentOrder.containsItem %} ... {% endif %}
                {% if order.parentOrder.containsLabel %} ... {% endif %}
                {% if order.parentOrder.digitalPhysicalCombination %} ... {% endif %}
                {% if order.parentOrder.erotic %} ... {% endif %}
                {% if order.parentOrder.externalReviewAllowed %} ... {% endif %}
                {% if order.parentOrder.paid %} ... {% endif %}
                {% if order.parentOrder.useLoyaltyPoints %} ... {% endif %}
                {% if order.parentOrder.useLoyaltyPointsManually %} ... {% endif %}
                {% for accountingDocument in order.parentOrder.accountingDocuments %}
                        {{ accountingDocument.code }}
                        {{ accountingDocument.date|date('d. m. Y H:i') }}
                {% endfor %}
                {% for payment in order.parentOrder.availablePaymentMethods %}
                        {{ payment.inputId }}
                        {{ payment.name }}
                        {{ payment.url }}
                        {{ payment.vatRate }}
                        {% if payment.free %} ... {% endif %}
                        {% if payment.inAdvance %} ... {% endif %}
                        {% if payment.selected %} ... {% endif %}
                        {% if payment.code %}
                                {{ payment.code }}
                        {% endif %}
                        {% if payment.vs %}
                                {{ payment.vs }}
                        {% endif %}
                        {% if payment.qRCodeHTML %}
                                {{ payment.qRCodeHTML }}
                        {% endif %}
                        {% if payment.text %}
                                {{ payment.text }}
                        {% endif %}
                        {% if payment.bankAccount %}
                        {% endif %}
                        {% if payment.image %}
                        {% endif %}
                {% endfor %}
                {% for payment in order.parentOrder.payments %}
                        {{ payment.inputId }}
                        {{ payment.name }}
                        {{ payment.url }}
                        {{ payment.vatRate }}
                        {% if payment.free %} ... {% endif %}
                        {% if payment.inAdvance %} ... {% endif %}
                        {% if payment.selected %} ... {% endif %}
                        {% if payment.code %}
                                {{ payment.code }}
                        {% endif %}
                        {% if payment.vs %}
                                {{ payment.vs }}
                        {% endif %}
                        {% if payment.qRCodeHTML %}
                                {{ payment.qRCodeHTML }}
                        {% endif %}
                        {% if payment.text %}
                                {{ payment.text }}
                        {% endif %}
                        {% if payment.bankAccount %}
                        {% endif %}
                        {% if payment.image %}
                        {% endif %}
                {% endfor %}
                {% for transport in order.parentOrder.availableTransportMethods %}
                        {{ transport.inputId }}
                        {{ transport.name }}
                        {{ transport.vatRate }}
                        {% if transport.branchRequired %} ... {% endif %}
                        {% if transport.currier %} ... {% endif %}
                        {% if transport.dateGuaranteed %} ... {% endif %}
                        {% if transport.deliveryToAddress %} ... {% endif %}
                        {% if transport.digital %} ... {% endif %}
                        {% if transport.free %} ... {% endif %}
                        {% if transport.pickup %} ... {% endif %}
                        {% if transport.selected %} ... {% endif %}
                        {% if transport.text %}
                                {{ transport.text }}
                        {% endif %}
                        {% if transport.branch %}
                        {% endif %}
                        {% if transport.carrier %}
                        {% endif %}
                        {% if transport.deliveryDate %}
                        {% endif %}
                        {% if transport.packageType %}
                        {% endif %}
                        {% if transport.image %}
                        {% endif %}
                {% endfor %}
                {{ order.parentOrder.delivery.name }}
                {{ order.parentOrder.delivery.vatRate }}
                {% if order.parentOrder.delivery.deliveryAddressRequired %} ... {% endif %}
                {% if order.parentOrder.delivery.id %}
                        {{ order.parentOrder.delivery.id }}
                {% endif %}
                {% if order.parentOrder.delivery.freeLimit %}
                {% endif %}
                {% for catalogItem in order.parentOrder.catalogItems %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {% endfor %}
                        {% for catalogItem in catalogItem.children %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.availableConfigurators %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in order.parentOrder.items %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {% endfor %}
                        {% for catalogItem in catalogItem.children %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.availableConfigurators %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for discountItem in order.parentOrder.discountItems %}
                        {{ discountItem.amount }}
                        {{ discountItem.id }}
                        {{ discountItem.name }}
                        {{ discountItem.vatRate }}
                        {% if discountItem.amountChangeAllowed %} ... {% endif %}
                        {% if discountItem.catalogItem %} ... {% endif %}
                        {% if discountItem.deleteAllowed %} ... {% endif %}
                        {% if discountItem.discountItem %} ... {% endif %}
                        {% for discountItem in discountItem.children %}
                        {% endfor %}
                        {% if discountItem.note %}
                                {{ discountItem.note }}
                        {% endif %}
                        {% if discountItem.trackingId %}
                                {{ discountItem.trackingId }}
                        {% endif %}
                        {% if discountItem.percent %}
                                {{ discountItem.percent }}
                        {% endif %}
                        {% if discountItem.discountCode %}
                        {% endif %}
                        {% if discountItem.voucher %}
                        {% endif %}
                        {% if discountItem.price %}
                        {% endif %}
                        {% if discountItem.priceTotal %}
                        {% endif %}
                        {% if discountItem.unit %}
                        {% endif %}
                {% endfor %}
                {{ order.parentOrder.status.id }}
                {{ order.parentOrder.status.name }}
                {% for socialProfile in order.parentOrder.shop.socialProfiles %}
                {% endfor %}
                {% if order.parentOrder.shop.email %}
                        {{ order.parentOrder.shop.email }}
                {% endif %}
                {% if order.parentOrder.shop.language %}
                        {{ order.parentOrder.shop.language }}
                {% endif %}
                {% if order.parentOrder.shop.name %}
                        {{ order.parentOrder.shop.name }}
                {% endif %}
                {% if order.parentOrder.shop.phone %}
                        {{ order.parentOrder.shop.phone }}
                {% endif %}
                {% if order.parentOrder.shop.shortDomain %}
                        {{ order.parentOrder.shop.shortDomain }}
                {% endif %}
                {% if order.parentOrder.shop.url %}
                        {{ order.parentOrder.shop.url }}
                {% endif %}
                {% if order.parentOrder.shop.country %}
                {% endif %}
                {% if order.parentOrder.shop.image %}
                {% endif %}
                {{ order.parentOrder.url }}
                {{ order.parentOrder.url.absolute }}
                {{ order.parentOrder.url.path }}
                {% for giftVoucher in order.parentOrder.purchasedGiftVouchers %}
                        {{ giftVoucher.code }}
                        {{ giftVoucher.name }}
                        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {% endfor %}
                {% for giftVoucher in order.parentOrder.vouchers %}
                        {{ giftVoucher.code }}
                        {{ giftVoucher.name }}
                        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {% endfor %}
                {% if order.parentOrder.code %}
                        {{ order.parentOrder.code }}
                {% endif %}
                {% if order.parentOrder.note %}
                        {{ order.parentOrder.note }}
                {% endif %}
                {% if order.parentOrder.date %}
                        {{ order.parentOrder.date|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.parentOrder.dateInStatus %}
                        {{ order.parentOrder.dateInStatus|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.parentOrder.expectedShippingDate %}
                        {{ order.parentOrder.expectedShippingDate|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.parentOrder.customer %}
                        {{ order.parentOrder.customer.id }}
                        {{ order.parentOrder.customer.userPointsAvailable }}
                        {{ order.parentOrder.customer.userPointsExpiringOn }}
                        {{ order.parentOrder.customer.userPointsTotal }}
                        {{ order.parentOrder.customer.name }}
                        {{ order.parentOrder.customer.dateCreated|date('d. m. Y H:i') }}
                        {% if order.parentOrder.customer.productOnWishlist %} ... {% endif %}
                        {% if order.parentOrder.customer.vatCharged %} ... {% endif %}
                        {% if order.parentOrder.customer.wholesale %} ... {% endif %}
                        {% for accountingDocument in order.parentOrder.customer.receipts %}
                        {% endfor %}
                        {% for analyticsReport in order.parentOrder.customer.analyticReports %}
                        {% endfor %}
                        {% for order in order.parentOrder.customer.orders %}
                        {% endfor %}
                        {% for userPointChange in order.parentOrder.customer.userPointChanges %}
                        {% endfor %}
                        {{ order.parentOrder.customer.alternativeAddresses }}
                        {% if order.parentOrder.customer.loyaltyCard %}
                                {{ order.parentOrder.customer.loyaltyCard }}
                        {% endif %}
                        {% if order.parentOrder.customer.socialLoginId %}
                                {{ order.parentOrder.customer.socialLoginId }}
                        {% endif %}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery %}
                        {{ order.parentOrder.closestFreeDelivery.name }}
                        {{ order.parentOrder.closestFreeDelivery.vatRate }}
                        {% if order.parentOrder.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
                        {% if order.parentOrder.closestFreeDelivery.id %}
                                {{ order.parentOrder.closestFreeDelivery.id }}
                        {% endif %}
                        {% if order.parentOrder.closestFreeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if order.parentOrder.package %}
                        {{ order.parentOrder.package.trackingUrl }}
                        {{ order.parentOrder.package.date|date('d. m. Y H:i') }}
                        {% if order.parentOrder.package.code %}
                                {{ order.parentOrder.package.code }}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if order.package %}
                {{ order.package.trackingUrl }}
                {{ order.package.date|date('d. m. Y H:i') }}
                {% if order.package.status.delivered %} ... {% endif %}
                {% if order.package.status.deposited %} ... {% endif %}
                {% if order.package.status.inTransit %} ... {% endif %}
                {% if order.package.status.returned %} ... {% endif %}
                {% if order.package.code %}
                        {{ order.package.code }}
                {% endif %}
        {% endif %}
{% endfor %}

{% for userPointChange in customer.userPointChanges %}
        {{ userPointChange.amount }}
        {{ userPointChange.text }}
        {{ userPointChange.date|date('d. m. Y H:i') }}
        {% if userPointChange.dateExpire %}
                {{ userPointChange.dateExpire|date('d. m. Y H:i') }}
        {% endif %}
{% endfor %}
{{ customer.alternativeAddresses }}

{% if customer.loyaltyCard %}
        {{ customer.loyaltyCard }}
{% endif %}

{% if customer.socialLoginId %}
        {{ customer.socialLoginId }}
{% endif %}

DayBlock

Attributy objektu DayBlock

Název

Typ

Popis

dayName

string

Název dne v týdnu

dayNameShort

string

Zkrácený název dne v týdnu

date

datetime

Datum

timeBlocks

TimeBlock[] | null

Časy otevření

Příklady:

{{ dayblock.dayName }}
{{ dayblock.dayNameShort }}
{{ dayblock.date|date('d. m. Y H:i') }}

{% for timeBlock in dayblock.timeBlocks %}
        {{ timeBlock.timeBlocks }}
        {{ timeBlock.end }}
        {{ timeBlock.separator }}
        {{ timeBlock.start }}
{% endfor %}

Delivery

Attributy objektu Delivery

Název

Typ

Popis

name

string

Název

vatRate

float

Sazba DPH

deliveryAddressRequired

bool

Je v košíku povinná adresa?

payment

Delivery/Payment

Způsob platby

transport

Delivery/Transport

Způsob dodání

price

Price

Cena

id

int | null

ID

freeLimit

Order/FreeLimit | null

Hranice dodání zdarma

Příklady:

{{ delivery.name }}
{{ delivery.vatRate }}
{% if delivery.deliveryAddressRequired %} ... {% endif %}
{{ delivery.payment.inputId }}
{{ delivery.payment.name }}
{{ delivery.payment.url }}
{{ delivery.payment.vatRate }}
{% if delivery.payment.free %} ... {% endif %}
{% if delivery.payment.inAdvance %} ... {% endif %}
{% if delivery.payment.selected %} ... {% endif %}
{{ delivery.payment.price.vatRate }}
{{ delivery.payment.price.current.currency }}
{{ delivery.payment.price.current.formatted }}
{{ delivery.payment.price.current.value }}
{% if delivery.payment.price.current.perUnit %}
{% endif %}
{% if delivery.payment.price.discountPercent %}
        {{ delivery.payment.price.discountPercent }}
{% endif %}
{% if delivery.payment.price.discountValidTo %}
        {{ delivery.payment.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if delivery.payment.price.beforeDiscount %}
        {{ delivery.payment.price.beforeDiscount.currency }}
        {{ delivery.payment.price.beforeDiscount.formatted }}
        {{ delivery.payment.price.beforeDiscount.value }}
        {% if delivery.payment.price.beforeDiscount.perUnit %}
        {% endif %}
{% endif %}
{% if delivery.payment.price.discount %}
        {{ delivery.payment.price.discount.currency }}
        {{ delivery.payment.price.discount.formatted }}
        {{ delivery.payment.price.discount.value }}
        {% if delivery.payment.price.discount.perUnit %}
        {% endif %}
{% endif %}
{% if delivery.payment.code %}
        {{ delivery.payment.code }}
{% endif %}
{% if delivery.payment.vs %}
        {{ delivery.payment.vs }}
{% endif %}
{% if delivery.payment.qRCodeHTML %}
        {{ delivery.payment.qRCodeHTML }}
{% endif %}
{% if delivery.payment.text %}
        {{ delivery.payment.text }}
{% endif %}
{% if delivery.payment.bankAccount %}
        {{ delivery.payment.bankAccount }}
        {{ delivery.payment.bankAccount.currency }}
        {% if delivery.payment.bankAccount.bic %}
                {{ delivery.payment.bankAccount.bic }}
        {% endif %}
        {% if delivery.payment.bankAccount.iban %}
                {{ delivery.payment.bankAccount.iban }}
        {% endif %}
        {% if delivery.payment.bankAccount.local %}
                {{ delivery.payment.bankAccount.local }}
        {% endif %}
{% endif %}
{% if delivery.payment.image %}
        {{ delivery.payment.image.originalHeight }}
        {{ delivery.payment.image.originalWidth }}
        {{ delivery.payment.image.url }}
        {% if delivery.payment.image.alt %}
                {{ delivery.payment.image.alt }}
        {% endif %}
        {% if delivery.payment.image.text %}
                {{ delivery.payment.image.text }}
        {% endif %}
{% endif %}
{{ delivery.transport.inputId }}
{{ delivery.transport.name }}
{{ delivery.transport.vatRate }}
{% if delivery.transport.branchRequired %} ... {% endif %}
{% if delivery.transport.currier %} ... {% endif %}
{% if delivery.transport.dateGuaranteed %} ... {% endif %}
{% if delivery.transport.deliveryToAddress %} ... {% endif %}
{% if delivery.transport.digital %} ... {% endif %}
{% if delivery.transport.free %} ... {% endif %}
{% if delivery.transport.pickup %} ... {% endif %}
{% if delivery.transport.selected %} ... {% endif %}
{{ delivery.transport.price.vatRate }}
{{ delivery.transport.price.current.currency }}
{{ delivery.transport.price.current.formatted }}
{{ delivery.transport.price.current.value }}
{% if delivery.transport.price.current.perUnit %}
{% endif %}
{% if delivery.transport.price.discountPercent %}
        {{ delivery.transport.price.discountPercent }}
{% endif %}
{% if delivery.transport.price.discountValidTo %}
        {{ delivery.transport.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if delivery.transport.price.beforeDiscount %}
        {{ delivery.transport.price.beforeDiscount.currency }}
        {{ delivery.transport.price.beforeDiscount.formatted }}
        {{ delivery.transport.price.beforeDiscount.value }}
        {% if delivery.transport.price.beforeDiscount.perUnit %}
        {% endif %}
{% endif %}
{% if delivery.transport.price.discount %}
        {{ delivery.transport.price.discount.currency }}
        {{ delivery.transport.price.discount.formatted }}
        {{ delivery.transport.price.discount.value }}
        {% if delivery.transport.price.discount.perUnit %}
        {% endif %}
{% endif %}
{% if delivery.transport.text %}
        {{ delivery.transport.text }}
{% endif %}
{% if delivery.transport.branch %}
        {{ delivery.transport.branch.code }}
        {{ delivery.transport.branch.name }}
        {{ delivery.transport.branch.address }}
        {% if delivery.transport.branch.address.city %}
                {{ delivery.transport.branch.address.city }}
        {% endif %}
        {% if delivery.transport.branch.address.company %}
                {{ delivery.transport.branch.address.company }}
        {% endif %}
        {% if delivery.transport.branch.address.street %}
                {{ delivery.transport.branch.address.street }}
        {% endif %}
        {% if delivery.transport.branch.address.country %}
        {% endif %}
{% endif %}
{% if delivery.transport.carrier %}
        {{ delivery.transport.carrier.code }}
        {{ delivery.transport.carrier.name }}
{% endif %}
{% if delivery.transport.deliveryDate %}
        {{ delivery.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
        {{ delivery.transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
        {{ delivery.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
        {% if delivery.transport.deliveryDate.timeDelivered %}
                {{ delivery.transport.deliveryDate.timeDelivered }}
        {% endif %}
{% endif %}
{% if delivery.transport.packageType %}
        {{ delivery.transport.packageType.code }}
{% endif %}
{% if delivery.transport.image %}
        {{ delivery.transport.image.originalHeight }}
        {{ delivery.transport.image.originalWidth }}
        {{ delivery.transport.image.url }}
        {% if delivery.transport.image.alt %}
                {{ delivery.transport.image.alt }}
        {% endif %}
        {% if delivery.transport.image.text %}
                {{ delivery.transport.image.text }}
        {% endif %}
{% endif %}
{{ delivery.price.vatRate }}
{{ delivery.price.current.currency }}
{{ delivery.price.current.formatted }}
{{ delivery.price.current.value }}
{% if delivery.price.current.perUnit %}
        {{ delivery.price.current.perUnit }}
        {{ delivery.price.current.perUnit.formatted }}
        {{ delivery.price.current.perUnit.unit }}
{% endif %}
{% if delivery.price.discountPercent %}
        {{ delivery.price.discountPercent }}
{% endif %}
{% if delivery.price.discountValidTo %}
        {{ delivery.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if delivery.price.beforeDiscount %}
        {{ delivery.price.beforeDiscount.currency }}
        {{ delivery.price.beforeDiscount.formatted }}
        {{ delivery.price.beforeDiscount.value }}
        {% if delivery.price.beforeDiscount.perUnit %}
                {{ delivery.price.beforeDiscount.perUnit }}
                {{ delivery.price.beforeDiscount.perUnit.formatted }}
                {{ delivery.price.beforeDiscount.perUnit.unit }}
        {% endif %}
{% endif %}
{% if delivery.price.discount %}
        {{ delivery.price.discount.currency }}
        {{ delivery.price.discount.formatted }}
        {{ delivery.price.discount.value }}
        {% if delivery.price.discount.perUnit %}
                {{ delivery.price.discount.perUnit }}
                {{ delivery.price.discount.perUnit.formatted }}
                {{ delivery.price.discount.perUnit.unit }}
        {% endif %}
{% endif %}

{% if delivery.id %}
        {{ delivery.id }}
{% endif %}

{% if delivery.freeLimit %}
        {{ delivery.freeLimit.percent }}
        {{ delivery.freeLimit.total.currency }}
        {{ delivery.freeLimit.total.formatted }}
        {{ delivery.freeLimit.total.value }}
        {% if delivery.freeLimit.total.perUnit %}
                {{ delivery.freeLimit.total.perUnit }}
                {{ delivery.freeLimit.total.perUnit.formatted }}
                {{ delivery.freeLimit.total.perUnit.unit }}
        {% endif %}
        {{ delivery.freeLimit.remains.currency }}
        {{ delivery.freeLimit.remains.formatted }}
        {{ delivery.freeLimit.remains.value }}
        {% if delivery.freeLimit.remains.perUnit %}
                {{ delivery.freeLimit.remains.perUnit }}
                {{ delivery.freeLimit.remains.perUnit.formatted }}
                {{ delivery.freeLimit.remains.perUnit.unit }}
        {% endif %}
{% endif %}

Delivery/BankAccount

Attributy objektu Delivery/BankAccount

Název

Typ

Popis

Příklad výstupu

currency

string

Měna

bic

string | null

BIC

iban

string | null

IBAN

local

string | null

Místní formát

123456789/2010

Příklady:

{{ bankaccount }}
{{ bankaccount.currency }}

{% if bankaccount.bic %}
        {{ bankaccount.bic }}
{% endif %}

{% if bankaccount.iban %}
        {{ bankaccount.iban }}
{% endif %}

{% if bankaccount.local %}
        {{ bankaccount.local }}
{% endif %}

Delivery/Branch

Attributy objektu Delivery/Branch

Název

Typ

Popis

code

string

Kód

name

string

Název

address

Delivery/Branch/Address

Adresa

Příklady:

{{ branch.code }}
{{ branch.name }}
{{ branch.address }}
{% if branch.address.city %}
        {{ branch.address.city }}
{% endif %}
{% if branch.address.company %}
        {{ branch.address.company }}
{% endif %}
{% if branch.address.street %}
        {{ branch.address.street }}
{% endif %}
{% if branch.address.country %}
        {{ branch.address.country.code }}
        {{ branch.address.country.flagCircleUrl }}
        {{ branch.address.country.flagUrl }}
        {{ branch.address.country.name }}
        {% if branch.address.country.eU %} ... {% endif %}
{% endif %}

Delivery/Branch/Address

Attributy objektu Delivery/Branch/Address

Název

Typ

Popis

city

string | null

Město

company

string | null

Název firmy

street

string | null

Ulice a č.p.

country

Address/Country | null

Země

Příklady:

{{ address }}

{% if address.city %}
        {{ address.city }}
{% endif %}

{% if address.company %}
        {{ address.company }}
{% endif %}

{% if address.street %}
        {{ address.street }}
{% endif %}

{% if address.country %}
        {{ address.country.code }}
        {{ address.country.flagCircleUrl }}
        {{ address.country.flagUrl }}
        {{ address.country.name }}
        {% if address.country.eU %} ... {% endif %}
{% endif %}

Delivery/Carrier

Attributy objektu Delivery/Carrier

Název

Typ

Popis

code

string

Kód

name

string

Název

Příklady:

{{ carrier.code }}
{{ carrier.name }}

Delivery/DeliveryDate

Attributy objektu Delivery/DeliveryDate

Název

Typ

Popis

dateDelivered

datetime

Datum dodání k zákazníkovi

dateSent

datetime

Datum odeslání zásilky

orderDeadline

datetime

Datum a čas do kdy je nutné objednat pro splnění termínů

timeDelivered

string | null

Čas doručení zákazníkovi (např. „08:00-12:00“)

Příklady:

{{ deliverydate.dateDelivered|date('d. m. Y H:i') }}
{{ deliverydate.dateSent|date('d. m. Y H:i') }}
{{ deliverydate.orderDeadline|date('d. m. Y H:i') }}

{% if deliverydate.timeDelivered %}
        {{ deliverydate.timeDelivered }}
{% endif %}

Delivery/PackageType

Attributy objektu Delivery/PackageType

Název

Typ

Popis

code

string

Kód

Příklady:

{{ packagetype.code }}

Delivery/Payment

Attributy objektu Delivery/Payment

Název

Typ

Popis

Příklad výstupu

inputId

string

Id pro svázání inputu s label

name

string

Název

Bankovní převod

url

string

URL pro platbu

vatRate

float

Sazba DPH

21

free

bool

Je zdarma?

inAdvance

bool

Je vyžadována platba předem?

selected

bool

Je vybrána?

price

Price

Cena

code

null | string

Kód

P123

vs

string | null

Variabilní symbol

2160001

qRCodeHTML

html | null

HTML kód obrázku s QR kódem pro platbu převodem

text

html | null

Text

bankAccount

Delivery/BankAccount | null

Bankovní účet

111111111/2010

image

Image | null

Obrázek

Příklady:

{{ payment.inputId }}
{{ payment.name }}
{{ payment.url }}
{{ payment.vatRate }}
{% if payment.free %} ... {% endif %}
{% if payment.inAdvance %} ... {% endif %}
{% if payment.selected %} ... {% endif %}
{{ payment.price.vatRate }}
{{ payment.price.current.currency }}
{{ payment.price.current.formatted }}
{{ payment.price.current.value }}
{% if payment.price.current.perUnit %}
        {{ payment.price.current.perUnit }}
        {{ payment.price.current.perUnit.formatted }}
        {{ payment.price.current.perUnit.unit }}
{% endif %}
{% if payment.price.discountPercent %}
        {{ payment.price.discountPercent }}
{% endif %}
{% if payment.price.discountValidTo %}
        {{ payment.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if payment.price.beforeDiscount %}
        {{ payment.price.beforeDiscount.currency }}
        {{ payment.price.beforeDiscount.formatted }}
        {{ payment.price.beforeDiscount.value }}
        {% if payment.price.beforeDiscount.perUnit %}
                {{ payment.price.beforeDiscount.perUnit }}
                {{ payment.price.beforeDiscount.perUnit.formatted }}
                {{ payment.price.beforeDiscount.perUnit.unit }}
        {% endif %}
{% endif %}
{% if payment.price.discount %}
        {{ payment.price.discount.currency }}
        {{ payment.price.discount.formatted }}
        {{ payment.price.discount.value }}
        {% if payment.price.discount.perUnit %}
                {{ payment.price.discount.perUnit }}
                {{ payment.price.discount.perUnit.formatted }}
                {{ payment.price.discount.perUnit.unit }}
        {% endif %}
{% endif %}

{% if payment.code %}
        {{ payment.code }}
{% endif %}

{% if payment.vs %}
        {{ payment.vs }}
{% endif %}

{% if payment.qRCodeHTML %}
        {{ payment.qRCodeHTML }}
{% endif %}

{% if payment.text %}
        {{ payment.text }}
{% endif %}

{% if payment.bankAccount %}
        {{ payment.bankAccount }}
        {{ payment.bankAccount.currency }}
        {% if payment.bankAccount.bic %}
                {{ payment.bankAccount.bic }}
        {% endif %}
        {% if payment.bankAccount.iban %}
                {{ payment.bankAccount.iban }}
        {% endif %}
        {% if payment.bankAccount.local %}
                {{ payment.bankAccount.local }}
        {% endif %}
{% endif %}

{% if payment.image %}
        {{ payment.image.originalHeight }}
        {{ payment.image.originalWidth }}
        {{ payment.image.url }}
        {% if payment.image.alt %}
                {{ payment.image.alt }}
        {% endif %}
        {% if payment.image.text %}
                {{ payment.image.text }}
        {% endif %}
{% endif %}

Delivery/Transport

Attributy objektu Delivery/Transport

Název

Typ

Popis

inputId

string

Id pro svázání inputu s label

name

string

Název

vatRate

float

Sazba DPH

branchRequired

bool

Je vyžadování pobočka?

currier

bool

Je osobním kurýrem?

dateGuaranteed

bool

Je datum doručení jisté?

deliveryToAddress

bool

Je doprava doručením na (domovní) adresu?

digital

bool

Je digitální?

free

bool

Je zdarma?

pickup

bool

Je osobním odběrem?

selected

bool

Je vybráno?

price

Price

Cena

text

html | null

Text

branch

Delivery/Branch | null

Pobočka

carrier

Delivery/Carrier | null

Přepravce

deliveryDate

Delivery/DeliveryDate | null

Předpokládaný datum doručení

packageType

Delivery/PackageType | null

Typ balíku

image

Image | null

Obrázek

Příklady:

{{ transport.inputId }}
{{ transport.name }}
{{ transport.vatRate }}
{% if transport.branchRequired %} ... {% endif %}
{% if transport.currier %} ... {% endif %}
{% if transport.dateGuaranteed %} ... {% endif %}
{% if transport.deliveryToAddress %} ... {% endif %}
{% if transport.digital %} ... {% endif %}
{% if transport.free %} ... {% endif %}
{% if transport.pickup %} ... {% endif %}
{% if transport.selected %} ... {% endif %}
{{ transport.price.vatRate }}
{{ transport.price.current.currency }}
{{ transport.price.current.formatted }}
{{ transport.price.current.value }}
{% if transport.price.current.perUnit %}
        {{ transport.price.current.perUnit }}
        {{ transport.price.current.perUnit.formatted }}
        {{ transport.price.current.perUnit.unit }}
{% endif %}
{% if transport.price.discountPercent %}
        {{ transport.price.discountPercent }}
{% endif %}
{% if transport.price.discountValidTo %}
        {{ transport.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if transport.price.beforeDiscount %}
        {{ transport.price.beforeDiscount.currency }}
        {{ transport.price.beforeDiscount.formatted }}
        {{ transport.price.beforeDiscount.value }}
        {% if transport.price.beforeDiscount.perUnit %}
                {{ transport.price.beforeDiscount.perUnit }}
                {{ transport.price.beforeDiscount.perUnit.formatted }}
                {{ transport.price.beforeDiscount.perUnit.unit }}
        {% endif %}
{% endif %}
{% if transport.price.discount %}
        {{ transport.price.discount.currency }}
        {{ transport.price.discount.formatted }}
        {{ transport.price.discount.value }}
        {% if transport.price.discount.perUnit %}
                {{ transport.price.discount.perUnit }}
                {{ transport.price.discount.perUnit.formatted }}
                {{ transport.price.discount.perUnit.unit }}
        {% endif %}
{% endif %}

{% if transport.text %}
        {{ transport.text }}
{% endif %}

{% if transport.branch %}
        {{ transport.branch.code }}
        {{ transport.branch.name }}
        {{ transport.branch.address }}
        {% if transport.branch.address.city %}
                {{ transport.branch.address.city }}
        {% endif %}
        {% if transport.branch.address.company %}
                {{ transport.branch.address.company }}
        {% endif %}
        {% if transport.branch.address.street %}
                {{ transport.branch.address.street }}
        {% endif %}
        {% if transport.branch.address.country %}
                {{ transport.branch.address.country.code }}
                {{ transport.branch.address.country.flagCircleUrl }}
                {{ transport.branch.address.country.flagUrl }}
                {{ transport.branch.address.country.name }}
                {% if transport.branch.address.country.eU %} ... {% endif %}
        {% endif %}
{% endif %}

{% if transport.carrier %}
        {{ transport.carrier.code }}
        {{ transport.carrier.name }}
{% endif %}

{% if transport.deliveryDate %}
        {{ transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
        {{ transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
        {{ transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
        {% if transport.deliveryDate.timeDelivered %}
                {{ transport.deliveryDate.timeDelivered }}
        {% endif %}
{% endif %}

{% if transport.packageType %}
        {{ transport.packageType.code }}
{% endif %}

{% if transport.image %}
        {{ transport.image.originalHeight }}
        {{ transport.image.originalWidth }}
        {{ transport.image.url }}
        {% if transport.image.alt %}
                {{ transport.image.alt }}
        {% endif %}
        {% if transport.image.text %}
                {{ transport.image.text }}
        {% endif %}
{% endif %}

DeliveryOption

Attributy objektu DeliveryOption

Název

Typ

Popis

dateDelivered

datetime

Datum dodání k zákazníkovi

dateSent

datetime

Datum odeslání zásilky

orderDeadline

datetime

Datum a čas do kdy je nutné objednat pro splnění termínů

transport

Delivery/Transport

Přepravce

timeDelivered

string | null

Čas doručení zákazníkovi (např. „08:00-12:00“)

Příklady:

{{ deliveryoption.dateDelivered|date('d. m. Y H:i') }}
{{ deliveryoption.dateSent|date('d. m. Y H:i') }}
{{ deliveryoption.orderDeadline|date('d. m. Y H:i') }}
{{ deliveryoption.transport.inputId }}
{{ deliveryoption.transport.name }}
{{ deliveryoption.transport.vatRate }}
{% if deliveryoption.transport.branchRequired %} ... {% endif %}
{% if deliveryoption.transport.currier %} ... {% endif %}
{% if deliveryoption.transport.dateGuaranteed %} ... {% endif %}
{% if deliveryoption.transport.deliveryToAddress %} ... {% endif %}
{% if deliveryoption.transport.digital %} ... {% endif %}
{% if deliveryoption.transport.free %} ... {% endif %}
{% if deliveryoption.transport.pickup %} ... {% endif %}
{% if deliveryoption.transport.selected %} ... {% endif %}
{{ deliveryoption.transport.price.vatRate }}
{{ deliveryoption.transport.price.current.currency }}
{{ deliveryoption.transport.price.current.formatted }}
{{ deliveryoption.transport.price.current.value }}
{% if deliveryoption.transport.price.current.perUnit %}
{% endif %}
{% if deliveryoption.transport.price.discountPercent %}
        {{ deliveryoption.transport.price.discountPercent }}
{% endif %}
{% if deliveryoption.transport.price.discountValidTo %}
        {{ deliveryoption.transport.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if deliveryoption.transport.price.beforeDiscount %}
        {{ deliveryoption.transport.price.beforeDiscount.currency }}
        {{ deliveryoption.transport.price.beforeDiscount.formatted }}
        {{ deliveryoption.transport.price.beforeDiscount.value }}
        {% if deliveryoption.transport.price.beforeDiscount.perUnit %}
        {% endif %}
{% endif %}
{% if deliveryoption.transport.price.discount %}
        {{ deliveryoption.transport.price.discount.currency }}
        {{ deliveryoption.transport.price.discount.formatted }}
        {{ deliveryoption.transport.price.discount.value }}
        {% if deliveryoption.transport.price.discount.perUnit %}
        {% endif %}
{% endif %}
{% if deliveryoption.transport.text %}
        {{ deliveryoption.transport.text }}
{% endif %}
{% if deliveryoption.transport.branch %}
        {{ deliveryoption.transport.branch.code }}
        {{ deliveryoption.transport.branch.name }}
        {{ deliveryoption.transport.branch.address }}
        {% if deliveryoption.transport.branch.address.city %}
                {{ deliveryoption.transport.branch.address.city }}
        {% endif %}
        {% if deliveryoption.transport.branch.address.company %}
                {{ deliveryoption.transport.branch.address.company }}
        {% endif %}
        {% if deliveryoption.transport.branch.address.street %}
                {{ deliveryoption.transport.branch.address.street }}
        {% endif %}
        {% if deliveryoption.transport.branch.address.country %}
        {% endif %}
{% endif %}
{% if deliveryoption.transport.carrier %}
        {{ deliveryoption.transport.carrier.code }}
        {{ deliveryoption.transport.carrier.name }}
{% endif %}
{% if deliveryoption.transport.deliveryDate %}
        {{ deliveryoption.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
        {{ deliveryoption.transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
        {{ deliveryoption.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
        {% if deliveryoption.transport.deliveryDate.timeDelivered %}
                {{ deliveryoption.transport.deliveryDate.timeDelivered }}
        {% endif %}
{% endif %}
{% if deliveryoption.transport.packageType %}
        {{ deliveryoption.transport.packageType.code }}
{% endif %}
{% if deliveryoption.transport.image %}
        {{ deliveryoption.transport.image.originalHeight }}
        {{ deliveryoption.transport.image.originalWidth }}
        {{ deliveryoption.transport.image.url }}
        {% if deliveryoption.transport.image.alt %}
                {{ deliveryoption.transport.image.alt }}
        {% endif %}
        {% if deliveryoption.transport.image.text %}
                {{ deliveryoption.transport.image.text }}
        {% endif %}
{% endif %}

{% if deliveryoption.timeDelivered %}
        {{ deliveryoption.timeDelivered }}
{% endif %}

Dimensions

Attributy objektu Dimensions

Název

Typ

Popis

unit

string

Jednotka

height

float

Výška

length

float

Hloubka

width

float

Šířka

Příklady:

{{ dimensions }}
{{ dimensions.unit }}
{{ dimensions.height }}
{{ dimensions.length }}
{{ dimensions.width }}

DynamicCategory

Attributy objektu DynamicCategory

Název

Typ

Popis

id

int

Id

name

string

Název

dynamic

bool

Dynamická kategorie? (vždy true))

url

Url

URL značky

text

html | null

Text

image

Image | null

Obrázek

seo

Seo | null

SEO attributy

Příklady:

{{ dynamiccategory.id }}
{{ dynamiccategory.name }}
{% if dynamiccategory.dynamic %} ... {% endif %}
{{ dynamiccategory.url }}
{{ dynamiccategory.url.absolute }}
{{ dynamiccategory.url.path }}

{% if dynamiccategory.text %}
        {{ dynamiccategory.text }}
{% endif %}

{% if dynamiccategory.image %}
        {{ dynamiccategory.image.originalHeight }}
        {{ dynamiccategory.image.originalWidth }}
        {{ dynamiccategory.image.url }}
        {% if dynamiccategory.image.alt %}
                {{ dynamiccategory.image.alt }}
        {% endif %}
        {% if dynamiccategory.image.text %}
                {{ dynamiccategory.image.text }}
        {% endif %}
{% endif %}

{% if dynamiccategory.seo %}
        {% if dynamiccategory.seo.description %}
                {{ dynamiccategory.seo.description }}
        {% endif %}
        {% if dynamiccategory.seo.keywords %}
                {{ dynamiccategory.seo.keywords }}
        {% endif %}
        {% if dynamiccategory.seo.title %}
                {{ dynamiccategory.seo.title }}
        {% endif %}
{% endif %}

EmptyOrder

Attributy objektu EmptyOrder

Název

Typ

Popis

catalogItemTotalAmount

int

Celkový počet kusů v objednávce

price

Order/Price

Celkové ceny

closestFreeDelivery

Delivery | null

Nejbližší dostupná doprava zdarma

Příklady:

{{ emptyorder.catalogItemTotalAmount }}
{{ emptyorder.price.total.currency }}
{{ emptyorder.price.total.formatted }}
{{ emptyorder.price.total.value }}
{% if emptyorder.price.total.perUnit %}
        {{ emptyorder.price.total.perUnit }}
        {{ emptyorder.price.total.perUnit.formatted }}
        {{ emptyorder.price.total.perUnit.unit }}
{% endif %}
{{ emptyorder.price.unpaid.currency }}
{{ emptyorder.price.unpaid.formatted }}
{{ emptyorder.price.unpaid.value }}
{% if emptyorder.price.unpaid.perUnit %}
        {{ emptyorder.price.unpaid.perUnit }}
        {{ emptyorder.price.unpaid.perUnit.formatted }}
        {{ emptyorder.price.unpaid.perUnit.unit }}
{% endif %}
{{ emptyorder.price.paid.currency }}
{{ emptyorder.price.paid.formatted }}
{{ emptyorder.price.paid.value }}
{% if emptyorder.price.paid.perUnit %}
        {{ emptyorder.price.paid.perUnit }}
        {{ emptyorder.price.paid.perUnit.formatted }}
        {{ emptyorder.price.paid.perUnit.unit }}
{% endif %}

{% if emptyorder.closestFreeDelivery %}
        {{ emptyorder.closestFreeDelivery.name }}
        {{ emptyorder.closestFreeDelivery.vatRate }}
        {% if emptyorder.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
        {{ emptyorder.closestFreeDelivery.payment.inputId }}
        {{ emptyorder.closestFreeDelivery.payment.name }}
        {{ emptyorder.closestFreeDelivery.payment.url }}
        {{ emptyorder.closestFreeDelivery.payment.vatRate }}
        {% if emptyorder.closestFreeDelivery.payment.free %} ... {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.selected %} ... {% endif %}
        {{ emptyorder.closestFreeDelivery.payment.price.vatRate }}
        {% if emptyorder.closestFreeDelivery.payment.price.discountPercent %}
                {{ emptyorder.closestFreeDelivery.payment.price.discountPercent }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.price.discountValidTo %}
                {{ emptyorder.closestFreeDelivery.payment.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.price.beforeDiscount %}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.price.discount %}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.code %}
                {{ emptyorder.closestFreeDelivery.payment.code }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.vs %}
                {{ emptyorder.closestFreeDelivery.payment.vs }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.qRCodeHTML %}
                {{ emptyorder.closestFreeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.text %}
                {{ emptyorder.closestFreeDelivery.payment.text }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.bankAccount %}
                {{ emptyorder.closestFreeDelivery.payment.bankAccount }}
                {{ emptyorder.closestFreeDelivery.payment.bankAccount.currency }}
                {% if emptyorder.closestFreeDelivery.payment.bankAccount.bic %}
                        {{ emptyorder.closestFreeDelivery.payment.bankAccount.bic }}
                {% endif %}
                {% if emptyorder.closestFreeDelivery.payment.bankAccount.iban %}
                        {{ emptyorder.closestFreeDelivery.payment.bankAccount.iban }}
                {% endif %}
                {% if emptyorder.closestFreeDelivery.payment.bankAccount.local %}
                        {{ emptyorder.closestFreeDelivery.payment.bankAccount.local }}
                {% endif %}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.image %}
                {{ emptyorder.closestFreeDelivery.payment.image.originalHeight }}
                {{ emptyorder.closestFreeDelivery.payment.image.originalWidth }}
                {{ emptyorder.closestFreeDelivery.payment.image.url }}
                {% if emptyorder.closestFreeDelivery.payment.image.alt %}
                        {{ emptyorder.closestFreeDelivery.payment.image.alt }}
                {% endif %}
                {% if emptyorder.closestFreeDelivery.payment.image.text %}
                        {{ emptyorder.closestFreeDelivery.payment.image.text }}
                {% endif %}
        {% endif %}
        {{ emptyorder.closestFreeDelivery.transport.inputId }}
        {{ emptyorder.closestFreeDelivery.transport.name }}
        {{ emptyorder.closestFreeDelivery.transport.vatRate }}
        {% if emptyorder.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.currier %} ... {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.digital %} ... {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.free %} ... {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.pickup %} ... {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.selected %} ... {% endif %}
        {{ emptyorder.closestFreeDelivery.transport.price.vatRate }}
        {% if emptyorder.closestFreeDelivery.transport.price.discountPercent %}
                {{ emptyorder.closestFreeDelivery.transport.price.discountPercent }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.price.discountValidTo %}
                {{ emptyorder.closestFreeDelivery.transport.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.price.beforeDiscount %}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.price.discount %}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.text %}
                {{ emptyorder.closestFreeDelivery.transport.text }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.branch %}
                {{ emptyorder.closestFreeDelivery.transport.branch.code }}
                {{ emptyorder.closestFreeDelivery.transport.branch.name }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.carrier %}
                {{ emptyorder.closestFreeDelivery.transport.carrier.code }}
                {{ emptyorder.closestFreeDelivery.transport.carrier.name }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.deliveryDate %}
                {{ emptyorder.closestFreeDelivery.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ emptyorder.closestFreeDelivery.transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ emptyorder.closestFreeDelivery.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if emptyorder.closestFreeDelivery.transport.deliveryDate.timeDelivered %}
                        {{ emptyorder.closestFreeDelivery.transport.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.packageType %}
                {{ emptyorder.closestFreeDelivery.transport.packageType.code }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.image %}
                {{ emptyorder.closestFreeDelivery.transport.image.originalHeight }}
                {{ emptyorder.closestFreeDelivery.transport.image.originalWidth }}
                {{ emptyorder.closestFreeDelivery.transport.image.url }}
                {% if emptyorder.closestFreeDelivery.transport.image.alt %}
                        {{ emptyorder.closestFreeDelivery.transport.image.alt }}
                {% endif %}
                {% if emptyorder.closestFreeDelivery.transport.image.text %}
                        {{ emptyorder.closestFreeDelivery.transport.image.text }}
                {% endif %}
        {% endif %}
        {{ emptyorder.closestFreeDelivery.price.vatRate }}
        {{ emptyorder.closestFreeDelivery.price.current.currency }}
        {{ emptyorder.closestFreeDelivery.price.current.formatted }}
        {{ emptyorder.closestFreeDelivery.price.current.value }}
        {% if emptyorder.closestFreeDelivery.price.current.perUnit %}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.price.discountPercent %}
                {{ emptyorder.closestFreeDelivery.price.discountPercent }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.price.discountValidTo %}
                {{ emptyorder.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.price.beforeDiscount %}
                {{ emptyorder.closestFreeDelivery.price.beforeDiscount.currency }}
                {{ emptyorder.closestFreeDelivery.price.beforeDiscount.formatted }}
                {{ emptyorder.closestFreeDelivery.price.beforeDiscount.value }}
                {% if emptyorder.closestFreeDelivery.price.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.price.discount %}
                {{ emptyorder.closestFreeDelivery.price.discount.currency }}
                {{ emptyorder.closestFreeDelivery.price.discount.formatted }}
                {{ emptyorder.closestFreeDelivery.price.discount.value }}
                {% if emptyorder.closestFreeDelivery.price.discount.perUnit %}
                {% endif %}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.id %}
                {{ emptyorder.closestFreeDelivery.id }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.freeLimit %}
                {{ emptyorder.closestFreeDelivery.freeLimit.percent }}
                {{ emptyorder.closestFreeDelivery.freeLimit.total.currency }}
                {{ emptyorder.closestFreeDelivery.freeLimit.total.formatted }}
                {{ emptyorder.closestFreeDelivery.freeLimit.total.value }}
                {% if emptyorder.closestFreeDelivery.freeLimit.total.perUnit %}
                {% endif %}
                {{ emptyorder.closestFreeDelivery.freeLimit.remains.currency }}
                {{ emptyorder.closestFreeDelivery.freeLimit.remains.formatted }}
                {{ emptyorder.closestFreeDelivery.freeLimit.remains.value }}
                {% if emptyorder.closestFreeDelivery.freeLimit.remains.perUnit %}
                {% endif %}
        {% endif %}
{% endif %}

EnumValue

Hodnota číselníku

Attributy objektu EnumValue

Název

Typ

Popis

id

int

Id

name

string

Název

enum

ProductEnum

Číselník

text

html | null

Text

image

Image | null

Obrázek

Příklady:

{{ enumvalue.id }}
{{ enumvalue.name }}
{{ enumvalue.enum.id }}
{{ enumvalue.enum.name }}
{% for enumValue in enumvalue.enum.values %}
        {{ enumValue.id }}
        {{ enumValue.name }}
        {% if enumValue.text %}
                {{ enumValue.text }}
        {% endif %}
        {% if enumValue.image %}
                {{ enumValue.image.originalHeight }}
                {{ enumValue.image.originalWidth }}
                {{ enumValue.image.url }}
                {% if enumValue.image.alt %}
                        {{ enumValue.image.alt }}
                {% endif %}
                {% if enumValue.image.text %}
                        {{ enumValue.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% if enumvalue.enum.text %}
        {{ enumvalue.enum.text }}
{% endif %}
{% if enumvalue.enum.meaning %}
        {{ enumvalue.enum.meaning.code }}
{% endif %}

{% if enumvalue.text %}
        {{ enumvalue.text }}
{% endif %}

{% if enumvalue.image %}
        {{ enumvalue.image.originalHeight }}
        {{ enumvalue.image.originalWidth }}
        {{ enumvalue.image.url }}
        {% if enumvalue.image.alt %}
                {{ enumvalue.image.alt }}
        {% endif %}
        {% if enumvalue.image.text %}
                {{ enumvalue.image.text }}
        {% endif %}
{% endif %}

Event/CartItemChange

Attributy objektu Event/CartItemChange

Název

Typ

Popis

amountChange

int

Počet přidaných/odebraných kusů

rowId

int

ID řádku objednávku pro deduplikaci v trackingu

catalogItem

Item

Položka (varianta nebo produkt)

price

Price

Cena za kus

Příklady:

{{ cartitemchange.amountChange }}
{{ cartitemchange.rowId }}
{{ cartitemchange.catalogItem.cartAmountRequiredMultiplier }}
{{ cartitemchange.catalogItem.id }}
{{ cartitemchange.catalogItem.loyaltyPointsAmount }}
{{ cartitemchange.catalogItem.name }}
{{ cartitemchange.catalogItem.trackingId }}
{% if cartitemchange.catalogItem.digital %} ... {% endif %}
{% if cartitemchange.catalogItem.sellable %} ... {% endif %}
{% if cartitemchange.catalogItem.service %} ... {% endif %}
{{ cartitemchange.catalogItem.availability.availableAmount }}
{{ cartitemchange.catalogItem.availability.availableAmountExpectedToStorageRoom }}
{{ cartitemchange.catalogItem.availability.availableAmountInShowroom }}
{{ cartitemchange.catalogItem.availability.availableAmountInStockroom }}
{{ cartitemchange.catalogItem.availability.availableAmountInStorageCenter }}
{{ cartitemchange.catalogItem.availability.availableAmountOnWayToStorageRoom }}
{{ cartitemchange.catalogItem.availability.availableDemandsAmountFromSupplierToStorageRoom }}
{{ cartitemchange.catalogItem.availability.hours }}
{{ cartitemchange.catalogItem.availability.totalAmount }}
{% if cartitemchange.catalogItem.availability.inShowroom %} ... {% endif %}
{% if cartitemchange.catalogItem.availability.inStock %} ... {% endif %}
{% if cartitemchange.catalogItem.availability.preorder %} ... {% endif %}
{% if cartitemchange.catalogItem.availability.watchdogSupported %} ... {% endif %}
{% for deliveryOption in cartitemchange.catalogItem.availability.deliveryOptions %}
        {{ deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {% if deliveryOption.timeDelivered %}
                {{ deliveryOption.timeDelivered }}
        {% endif %}
{% endfor %}
{% for expectedAmount in cartitemchange.catalogItem.availability.availableAmountsExpectedToStorageRoom %}
        {{ expectedAmount.amount }}
{% endfor %}
{% for expectedAmount in cartitemchange.catalogItem.availability.availableAmountsOnWayToStorageRoom %}
        {{ expectedAmount.amount }}
{% endfor %}
{% for expectedSupplierAmount in cartitemchange.catalogItem.availability.availableDemandsFromSupplierToStorageRoom %}
        {{ expectedSupplierAmount.amount }}
        {% if expectedSupplierAmount.expectedDate %}
                {{ expectedSupplierAmount.expectedDate|date('d. m. Y H:i') }}
        {% endif %}
        {% if expectedSupplierAmount.orderDate %}
                {{ expectedSupplierAmount.orderDate|date('d. m. Y H:i') }}
        {% endif %}
{% endfor %}
{% if cartitemchange.catalogItem.availability.text %}
        {{ cartitemchange.catalogItem.availability.text }}
{% endif %}
{% if cartitemchange.catalogItem.availability.dateExpected %}
        {{ cartitemchange.catalogItem.availability.dateExpected|date('d. m. Y H:i') }}
{% endif %}
{% if cartitemchange.catalogItem.availability.deliveryOption %}
        {{ cartitemchange.catalogItem.availability.deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ cartitemchange.catalogItem.availability.deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ cartitemchange.catalogItem.availability.deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {% if cartitemchange.catalogItem.availability.deliveryOption.timeDelivered %}
                {{ cartitemchange.catalogItem.availability.deliveryOption.timeDelivered }}
        {% endif %}
{% endif %}
{% for availableUpsellGroup in cartitemchange.catalogItem.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{{ cartitemchange.catalogItem.product.id }}
{{ cartitemchange.catalogItem.product.name }}
{{ cartitemchange.catalogItem.product.trackingId }}
{{ cartitemchange.catalogItem.product.dateCreated|date('d. m. Y H:i') }}
{% if cartitemchange.catalogItem.product.active %} ... {% endif %}
{% if cartitemchange.catalogItem.product.compared %} ... {% endif %}
{% if cartitemchange.catalogItem.product.differentVariantPrices %} ... {% endif %}
{% if cartitemchange.catalogItem.product.flagNew %} ... {% endif %}
{% if cartitemchange.catalogItem.product.flagPromo %} ... {% endif %}
{% if cartitemchange.catalogItem.product.flagSecondHand %} ... {% endif %}
{% if cartitemchange.catalogItem.product.flagSellout %} ... {% endif %}
{% if cartitemchange.catalogItem.product.otherDiscountApplicable %} ... {% endif %}
{% if cartitemchange.catalogItem.product.soldSeparately %} ... {% endif %}
{% for address in cartitemchange.catalogItem.product.publicContacts %}
        {% if address.city %}
                {{ address.city }}
        {% endif %}
        {% if address.company %}
                {{ address.company }}
        {% endif %}
        {% if address.companyId %}
                {{ address.companyId }}
        {% endif %}
        {% if address.email %}
                {{ address.email }}
        {% endif %}
        {% if address.phone %}
                {{ address.phone }}
        {% endif %}
        {% if address.region %}
                {{ address.region }}
        {% endif %}
        {% if address.street %}
                {{ address.street }}
        {% endif %}
        {% if address.vatId %}
                {{ address.vatId }}
        {% endif %}
        {% if address.web %}
                {{ address.web }}
        {% endif %}
        {% if address.zip %}
                {{ address.zip }}
        {% endif %}
        {% if address.purpose %}
        {% endif %}
        {% if address.country %}
        {% endif %}
{% endfor %}
{% for attributeInstance in cartitemchange.catalogItem.product.attributes %}
        {{ attributeInstance.name }}
        {{ attributeInstance.valuesHtml }}
        {% for attributeValueInstance in attributeInstance.values %}
        {% endfor %}
        {% if attributeInstance.description %}
                {{ attributeInstance.description }}
        {% endif %}
        {% if attributeInstance.group %}
        {% endif %}
        {% if attributeInstance.image %}
        {% endif %}
{% endfor %}
{% for availableUpsellGroup in cartitemchange.catalogItem.product.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{{ cartitemchange.catalogItem.product.category.id }}
{{ cartitemchange.catalogItem.product.category.productCount }}
{{ cartitemchange.catalogItem.product.category.productInStockCount }}
{{ cartitemchange.catalogItem.product.category.totalStockQuantity }}
{{ cartitemchange.catalogItem.product.category.headline }}
{{ cartitemchange.catalogItem.product.category.menuName }}
{{ cartitemchange.catalogItem.product.category.name }}
{% if cartitemchange.catalogItem.product.category.flagErotic %} ... {% endif %}
{% if cartitemchange.catalogItem.product.category.flagImportant %} ... {% endif %}
{% if cartitemchange.catalogItem.product.category.noFollow %} ... {% endif %}
{% for category in cartitemchange.catalogItem.product.category.subcategories %}
{% endfor %}
{% for video in cartitemchange.catalogItem.product.category.videos %}
{% endfor %}
{{ cartitemchange.catalogItem.product.category.pathNames }}
{{ cartitemchange.catalogItem.product.category.pathIds }}
{{ cartitemchange.catalogItem.product.category.templateAttribute }}
{% if cartitemchange.catalogItem.product.category.subHeadline %}
        {{ cartitemchange.catalogItem.product.category.subHeadline }}
{% endif %}
{% if cartitemchange.catalogItem.product.category.text %}
        {{ cartitemchange.catalogItem.product.category.text }}
{% endif %}
{% if cartitemchange.catalogItem.product.category.parent %}
{% endif %}
{% if cartitemchange.catalogItem.product.category.image %}
{% endif %}
{% if cartitemchange.catalogItem.product.category.contentGrid %}
        {{ cartitemchange.catalogItem.product.category.contentGrid }}
{% endif %}
{% for category in cartitemchange.catalogItem.product.categories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
        {% endfor %}
        {% for video in category.videos %}
        {% endfor %}
        {{ category.pathNames }}
        {{ category.pathIds }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
        {% endif %}
        {% if category.image %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for category in cartitemchange.catalogItem.product.otherCategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
        {% endfor %}
        {% for video in category.videos %}
        {% endfor %}
        {{ category.pathNames }}
        {{ category.pathIds }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
        {% endif %}
        {% if category.image %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for file in cartitemchange.catalogItem.product.files %}
        {{ file.bytes }}
        {{ file.url }}
        {% if file.mime %}
                {{ file.mime }}
        {% endif %}
        {% if file.name %}
                {{ file.name }}
        {% endif %}
{% endfor %}
{% for image in cartitemchange.catalogItem.product.images %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in cartitemchange.catalogItem.product.imagesWithEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in cartitemchange.catalogItem.product.images360 %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in cartitemchange.catalogItem.product.currentImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in cartitemchange.catalogItem.product.imagesWithoutEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in cartitemchange.catalogItem.product.otherImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{{ cartitemchange.catalogItem.product.item.cartAmountRequiredMultiplier }}
{{ cartitemchange.catalogItem.product.item.id }}
{{ cartitemchange.catalogItem.product.item.loyaltyPointsAmount }}
{{ cartitemchange.catalogItem.product.item.name }}
{{ cartitemchange.catalogItem.product.item.trackingId }}
{% if cartitemchange.catalogItem.product.item.digital %} ... {% endif %}
{% if cartitemchange.catalogItem.product.item.sellable %} ... {% endif %}
{% if cartitemchange.catalogItem.product.item.service %} ... {% endif %}
{% for availableUpsellGroup in cartitemchange.catalogItem.product.item.availableUpsellGroups %}
{% endfor %}
{% for upsell in cartitemchange.catalogItem.product.item.availableUpsells %}
{% endfor %}
{{ cartitemchange.catalogItem.product.item.trackingIds }}
{{ cartitemchange.catalogItem.product.item.storageLocations }}
{% if cartitemchange.catalogItem.product.item.packageWeight %}
        {{ cartitemchange.catalogItem.product.item.packageWeight }}
{% endif %}
{% if cartitemchange.catalogItem.product.item.code %}
        {{ cartitemchange.catalogItem.product.item.code }}
{% endif %}
{% if cartitemchange.catalogItem.product.item.packageHeight %}
        {{ cartitemchange.catalogItem.product.item.packageHeight }}
{% endif %}
{% if cartitemchange.catalogItem.product.item.packageLength %}
        {{ cartitemchange.catalogItem.product.item.packageLength }}
{% endif %}
{% if cartitemchange.catalogItem.product.item.packageWidth %}
        {{ cartitemchange.catalogItem.product.item.packageWidth }}
{% endif %}
{% if cartitemchange.catalogItem.product.item.bundle %}
{% endif %}
{% if cartitemchange.catalogItem.product.item.cheapestDelivery %}
{% endif %}
{% if cartitemchange.catalogItem.product.item.freeDelivery %}
{% endif %}
{% if cartitemchange.catalogItem.product.item.closestFreeDelivery %}
{% endif %}
{% if cartitemchange.catalogItem.product.item.packageDimensions %}
{% endif %}
{% if cartitemchange.catalogItem.product.item.image %}
{% endif %}
{% if cartitemchange.catalogItem.product.item.price %}
{% endif %}
{% if cartitemchange.catalogItem.product.item.url %}
{% endif %}
{% if cartitemchange.catalogItem.product.item.variant %}
{% endif %}
{% for label in cartitemchange.catalogItem.product.labels %}
        {{ label.id }}
        {{ label.name }}
        {% if label.code %}
                {{ label.code }}
        {% endif %}
        {% if label.colorCode %}
                {{ label.colorCode }}
        {% endif %}
        {% if label.image %}
        {% endif %}
{% endfor %}
{% for productDesigner in cartitemchange.catalogItem.product.configurators %}
        {{ productDesigner.name }}
        {% if productDesigner.result %}
        {% endif %}
{% endfor %}
{% for productEnumValue in cartitemchange.catalogItem.product.enumValues %}
        {{ productEnumValue.id }}
        {{ productEnumValue.name }}
        {% if productEnumValue.selected %} ... {% endif %}
        {% for variant in productEnumValue.variants %}
        {% endfor %}
        {% if productEnumValue.text %}
                {{ productEnumValue.text }}
        {% endif %}
        {% if productEnumValue.image %}
        {% endif %}
        {% if productEnumValue.variantImage %}
        {% endif %}
{% endfor %}
{% for product in cartitemchange.catalogItem.product.packTemplateProducts %}
        {{ product.id }}
        {{ product.name }}
        {{ product.trackingId }}
        {{ product.dateCreated|date('d. m. Y H:i') }}
        {% if product.active %} ... {% endif %}
        {% if product.compared %} ... {% endif %}
        {% if product.differentVariantPrices %} ... {% endif %}
        {% if product.flagNew %} ... {% endif %}
        {% if product.flagPromo %} ... {% endif %}
        {% if product.flagSecondHand %} ... {% endif %}
        {% if product.flagSellout %} ... {% endif %}
        {% if product.otherDiscountApplicable %} ... {% endif %}
        {% if product.soldSeparately %} ... {% endif %}
        {% for address in product.publicContacts %}
        {% endfor %}
        {% for attributeInstance in product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in product.availableUpsellGroups %}
        {% endfor %}
        {% for category in product.categories %}
        {% endfor %}
        {% for category in product.otherCategories %}
        {% endfor %}
        {% for file in product.files %}
        {% endfor %}
        {% for image in product.images %}
        {% endfor %}
        {% for image in product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in product.images360 %}
        {% endfor %}
        {% for image in product.currentImages %}
        {% endfor %}
        {% for image in product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in product.otherImages %}
        {% endfor %}
        {% for label in product.labels %}
        {% endfor %}
        {% for productDesigner in product.configurators %}
        {% endfor %}
        {% for productEnumValue in product.enumValues %}
        {% endfor %}
        {% for upsell in product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in product.currentVariants %}
        {% endfor %}
        {% for variant in product.variants %}
        {% endfor %}
        {% for variant in product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in product.videos %}
        {% endfor %}
        {{ product.trackingIds }}
        {% if product.currentSubName %}
                {{ product.currentSubName }}
        {% endif %}
        {% if product.nameSuffix %}
                {{ product.nameSuffix }}
        {% endif %}
        {% if product.nameSupplier %}
                {{ product.nameSupplier }}
        {% endif %}
        {% if product.text %}
                {{ product.text }}
        {% endif %}
        {% if product.attribute %}
        {% endif %}
        {% if product.brand %}
        {% endif %}
        {% if product.image %}
        {% endif %}
        {% if product.imageForEnumValueId %}
        {% endif %}
        {% if product.successor %}
        {% endif %}
        {% if product.seo %}
        {% endif %}
        {% if product.supplier %}
        {% endif %}
        {% if product.unit %}
        {% endif %}
        {% if product.variant %}
        {% endif %}
        {% if product.warranty %}
        {% endif %}
        {% if product.contentGrid %}
                {{ product.contentGrid }}
        {% endif %}
{% endfor %}
{{ cartitemchange.catalogItem.product.rating.count }}
{% if cartitemchange.catalogItem.product.rating.voted %} ... {% endif %}
{% if cartitemchange.catalogItem.product.rating.average %}
        {{ cartitemchange.catalogItem.product.rating.average }}
{% endif %}
{% for upsell in cartitemchange.catalogItem.product.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
        {% endif %}
        {% if upsell.unit %}
        {% endif %}
{% endfor %}
{{ cartitemchange.catalogItem.product.url }}
{{ cartitemchange.catalogItem.product.url.absolute }}
{{ cartitemchange.catalogItem.product.url.path }}
{% for variantChoiceStep in cartitemchange.catalogItem.product.variantChoiceSteps %}
        {{ variantChoiceStep.headline }}
        {{ variantChoiceStep.inputName }}
        {{ variantChoiceStep.mode }}
        {% if variantChoiceStep.final %} ... {% endif %}
        {% for variantChoice in variantChoiceStep.choices %}
        {% endfor %}
        {% if variantChoiceStep.description %}
                {{ variantChoiceStep.description }}
        {% endif %}
        {% if variantChoiceStep.infoDescription %}
                {{ variantChoiceStep.infoDescription }}
        {% endif %}
        {% if variantChoiceStep.messageEmpty %}
                {{ variantChoiceStep.messageEmpty }}
        {% endif %}
        {% if variantChoiceStep.placeholder %}
                {{ variantChoiceStep.placeholder }}
        {% endif %}
        {% if variantChoiceStep.icon %}
        {% endif %}
        {% if variantChoiceStep.infoIcon %}
        {% endif %}
        {% if variantChoiceStep.info %}
        {% endif %}
        {% if variantChoiceStep.selectedChoice %}
        {% endif %}
{% endfor %}
{% for variant in cartitemchange.catalogItem.product.currentVariants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
        {% endfor %}
        {% for image in variant.images %}
        {% endfor %}
        {% for upsell in variant.availableUpsells %}
        {% endfor %}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
        {% endif %}
{% endfor %}
{% for variant in cartitemchange.catalogItem.product.variants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
        {% endfor %}
        {% for image in variant.images %}
        {% endfor %}
        {% for upsell in variant.availableUpsells %}
        {% endfor %}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
        {% endif %}
{% endfor %}
{% for variant in cartitemchange.catalogItem.product.variantsWithEnumValueIds %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
        {% endfor %}
        {% for image in variant.images %}
        {% endfor %}
        {% for upsell in variant.availableUpsells %}
        {% endfor %}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
        {% endif %}
{% endfor %}
{{ cartitemchange.catalogItem.product.variantType.id }}
{{ cartitemchange.catalogItem.product.variantType.name }}
{% for video in cartitemchange.catalogItem.product.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
        {% endif %}
{% endfor %}
{{ cartitemchange.catalogItem.product.trackingIds }}
{% if cartitemchange.catalogItem.product.currentSubName %}
        {{ cartitemchange.catalogItem.product.currentSubName }}
{% endif %}
{% if cartitemchange.catalogItem.product.nameSuffix %}
        {{ cartitemchange.catalogItem.product.nameSuffix }}
{% endif %}
{% if cartitemchange.catalogItem.product.nameSupplier %}
        {{ cartitemchange.catalogItem.product.nameSupplier }}
{% endif %}
{% if cartitemchange.catalogItem.product.text %}
        {{ cartitemchange.catalogItem.product.text }}
{% endif %}
{% if cartitemchange.catalogItem.product.attribute %}
        {{ cartitemchange.catalogItem.product.attribute.name }}
        {{ cartitemchange.catalogItem.product.attribute.valuesHtml }}
        {% for attributeValueInstance in cartitemchange.catalogItem.product.attribute.values %}
        {% endfor %}
        {% if cartitemchange.catalogItem.product.attribute.description %}
                {{ cartitemchange.catalogItem.product.attribute.description }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.attribute.group %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.attribute.image %}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.product.brand %}
        {{ cartitemchange.catalogItem.product.brand.id }}
        {{ cartitemchange.catalogItem.product.brand.headline }}
        {{ cartitemchange.catalogItem.product.brand.name }}
        {% if cartitemchange.catalogItem.product.brand.flagImportant %} ... {% endif %}
        {% for address in cartitemchange.catalogItem.product.brand.publicContacts %}
        {% endfor %}
        {% for category in cartitemchange.catalogItem.product.brand.categories %}
        {% endfor %}
        {% if cartitemchange.catalogItem.product.brand.code %}
                {{ cartitemchange.catalogItem.product.brand.code }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.brand.web %}
                {{ cartitemchange.catalogItem.product.brand.web }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.brand.text %}
                {{ cartitemchange.catalogItem.product.brand.text }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.brand.image %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.brand.seo %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.brand.contentGrid %}
                {{ cartitemchange.catalogItem.product.brand.contentGrid }}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.product.image %}
        {{ cartitemchange.catalogItem.product.image.originalHeight }}
        {{ cartitemchange.catalogItem.product.image.originalWidth }}
        {{ cartitemchange.catalogItem.product.image.url }}
        {% if cartitemchange.catalogItem.product.image.alt %}
                {{ cartitemchange.catalogItem.product.image.alt }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.image.text %}
                {{ cartitemchange.catalogItem.product.image.text }}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.product.imageForEnumValueId %}
        {{ cartitemchange.catalogItem.product.imageForEnumValueId.originalHeight }}
        {{ cartitemchange.catalogItem.product.imageForEnumValueId.originalWidth }}
        {{ cartitemchange.catalogItem.product.imageForEnumValueId.url }}
        {% if cartitemchange.catalogItem.product.imageForEnumValueId.alt %}
                {{ cartitemchange.catalogItem.product.imageForEnumValueId.alt }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.imageForEnumValueId.text %}
                {{ cartitemchange.catalogItem.product.imageForEnumValueId.text }}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.product.successor %}
        {{ cartitemchange.catalogItem.product.successor.id }}
        {{ cartitemchange.catalogItem.product.successor.name }}
        {{ cartitemchange.catalogItem.product.successor.trackingId }}
        {{ cartitemchange.catalogItem.product.successor.dateCreated|date('d. m. Y H:i') }}
        {% if cartitemchange.catalogItem.product.successor.active %} ... {% endif %}
        {% if cartitemchange.catalogItem.product.successor.compared %} ... {% endif %}
        {% if cartitemchange.catalogItem.product.successor.differentVariantPrices %} ... {% endif %}
        {% if cartitemchange.catalogItem.product.successor.flagNew %} ... {% endif %}
        {% if cartitemchange.catalogItem.product.successor.flagPromo %} ... {% endif %}
        {% if cartitemchange.catalogItem.product.successor.flagSecondHand %} ... {% endif %}
        {% if cartitemchange.catalogItem.product.successor.flagSellout %} ... {% endif %}
        {% if cartitemchange.catalogItem.product.successor.otherDiscountApplicable %} ... {% endif %}
        {% if cartitemchange.catalogItem.product.successor.soldSeparately %} ... {% endif %}
        {% for address in cartitemchange.catalogItem.product.successor.publicContacts %}
        {% endfor %}
        {% for attributeInstance in cartitemchange.catalogItem.product.successor.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in cartitemchange.catalogItem.product.successor.availableUpsellGroups %}
        {% endfor %}
        {% for category in cartitemchange.catalogItem.product.successor.categories %}
        {% endfor %}
        {% for category in cartitemchange.catalogItem.product.successor.otherCategories %}
        {% endfor %}
        {% for file in cartitemchange.catalogItem.product.successor.files %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.product.successor.images %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.product.successor.imagesWithEnumValue %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.product.successor.images360 %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.product.successor.currentImages %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.product.successor.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.product.successor.otherImages %}
        {% endfor %}
        {% for label in cartitemchange.catalogItem.product.successor.labels %}
        {% endfor %}
        {% for productDesigner in cartitemchange.catalogItem.product.successor.configurators %}
        {% endfor %}
        {% for productEnumValue in cartitemchange.catalogItem.product.successor.enumValues %}
        {% endfor %}
        {% for product in cartitemchange.catalogItem.product.successor.packTemplateProducts %}
        {% endfor %}
        {% for upsell in cartitemchange.catalogItem.product.successor.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in cartitemchange.catalogItem.product.successor.variantChoiceSteps %}
        {% endfor %}
        {% for variant in cartitemchange.catalogItem.product.successor.currentVariants %}
        {% endfor %}
        {% for variant in cartitemchange.catalogItem.product.successor.variants %}
        {% endfor %}
        {% for variant in cartitemchange.catalogItem.product.successor.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in cartitemchange.catalogItem.product.successor.videos %}
        {% endfor %}
        {{ cartitemchange.catalogItem.product.successor.trackingIds }}
        {% if cartitemchange.catalogItem.product.successor.currentSubName %}
                {{ cartitemchange.catalogItem.product.successor.currentSubName }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.nameSuffix %}
                {{ cartitemchange.catalogItem.product.successor.nameSuffix }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.nameSupplier %}
                {{ cartitemchange.catalogItem.product.successor.nameSupplier }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.text %}
                {{ cartitemchange.catalogItem.product.successor.text }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.attribute %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.brand %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.image %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.imageForEnumValueId %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.seo %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.supplier %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.unit %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.variant %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.warranty %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.contentGrid %}
                {{ cartitemchange.catalogItem.product.successor.contentGrid }}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.product.seo %}
        {% if cartitemchange.catalogItem.product.seo.description %}
                {{ cartitemchange.catalogItem.product.seo.description }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.seo.keywords %}
                {{ cartitemchange.catalogItem.product.seo.keywords }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.seo.title %}
                {{ cartitemchange.catalogItem.product.seo.title }}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.product.supplier %}
        {{ cartitemchange.catalogItem.product.supplier.id }}
        {{ cartitemchange.catalogItem.product.supplier.name }}
        {% for address in cartitemchange.catalogItem.product.supplier.publicContacts %}
        {% endfor %}
{% endif %}
{% if cartitemchange.catalogItem.product.unit %}
        {{ cartitemchange.catalogItem.product.unit.name }}
{% endif %}
{% if cartitemchange.catalogItem.product.variant %}
        {{ cartitemchange.catalogItem.product.variant.id }}
        {{ cartitemchange.catalogItem.product.variant.name }}
        {{ cartitemchange.catalogItem.product.variant.trackingId }}
        {% if cartitemchange.catalogItem.product.variant.active %} ... {% endif %}
        {% if cartitemchange.catalogItem.product.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in cartitemchange.catalogItem.product.variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in cartitemchange.catalogItem.product.variant.enumValues %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.product.variant.images %}
        {% endfor %}
        {% for upsell in cartitemchange.catalogItem.product.variant.availableUpsells %}
        {% endfor %}
        {% if cartitemchange.catalogItem.product.variant.legacyRel %}
                {{ cartitemchange.catalogItem.product.variant.legacyRel }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.variant.image %}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.product.warranty %}
        {{ cartitemchange.catalogItem.product.warranty.months }}
{% endif %}
{% if cartitemchange.catalogItem.product.contentGrid %}
        {{ cartitemchange.catalogItem.product.contentGrid }}
{% endif %}
{% for upsell in cartitemchange.catalogItem.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {{ upsell.category.id }}
        {{ upsell.category.productCount }}
        {{ upsell.category.productInStockCount }}
        {{ upsell.category.totalStockQuantity }}
        {{ upsell.category.headline }}
        {{ upsell.category.menuName }}
        {{ upsell.category.name }}
        {% if upsell.category.flagErotic %} ... {% endif %}
        {% if upsell.category.flagImportant %} ... {% endif %}
        {% if upsell.category.noFollow %} ... {% endif %}
        {% for category in upsell.category.subcategories %}
        {% endfor %}
        {% for video in upsell.category.videos %}
        {% endfor %}
        {{ upsell.category.pathNames }}
        {{ upsell.category.pathIds }}
        {{ upsell.category.templateAttribute }}
        {% if upsell.category.subHeadline %}
                {{ upsell.category.subHeadline }}
        {% endif %}
        {% if upsell.category.text %}
                {{ upsell.category.text }}
        {% endif %}
        {% if upsell.category.parent %}
        {% endif %}
        {% if upsell.category.image %}
        {% endif %}
        {% if upsell.category.contentGrid %}
                {{ upsell.category.contentGrid }}
        {% endif %}
        {{ upsell.price.vatRate }}
        {% if upsell.price.discountPercent %}
                {{ upsell.price.discountPercent }}
        {% endif %}
        {% if upsell.price.discountValidTo %}
                {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if upsell.price.beforeDiscount %}
        {% endif %}
        {% if upsell.price.discount %}
        {% endif %}
        {{ upsell.product.id }}
        {{ upsell.product.name }}
        {{ upsell.product.trackingId }}
        {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
        {% if upsell.product.active %} ... {% endif %}
        {% if upsell.product.compared %} ... {% endif %}
        {% if upsell.product.differentVariantPrices %} ... {% endif %}
        {% if upsell.product.flagNew %} ... {% endif %}
        {% if upsell.product.flagPromo %} ... {% endif %}
        {% if upsell.product.flagSecondHand %} ... {% endif %}
        {% if upsell.product.flagSellout %} ... {% endif %}
        {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
        {% if upsell.product.soldSeparately %} ... {% endif %}
        {% for address in upsell.product.publicContacts %}
        {% endfor %}
        {% for attributeInstance in upsell.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in upsell.product.categories %}
        {% endfor %}
        {% for category in upsell.product.otherCategories %}
        {% endfor %}
        {% for file in upsell.product.files %}
        {% endfor %}
        {% for image in upsell.product.images %}
        {% endfor %}
        {% for image in upsell.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in upsell.product.images360 %}
        {% endfor %}
        {% for image in upsell.product.currentImages %}
        {% endfor %}
        {% for image in upsell.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in upsell.product.otherImages %}
        {% endfor %}
        {% for label in upsell.product.labels %}
        {% endfor %}
        {% for productDesigner in upsell.product.configurators %}
        {% endfor %}
        {% for productEnumValue in upsell.product.enumValues %}
        {% endfor %}
        {% for product in upsell.product.packTemplateProducts %}
        {% endfor %}
        {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in upsell.product.currentVariants %}
        {% endfor %}
        {% for variant in upsell.product.variants %}
        {% endfor %}
        {% for variant in upsell.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in upsell.product.videos %}
        {% endfor %}
        {{ upsell.product.trackingIds }}
        {% if upsell.product.currentSubName %}
                {{ upsell.product.currentSubName }}
        {% endif %}
        {% if upsell.product.nameSuffix %}
                {{ upsell.product.nameSuffix }}
        {% endif %}
        {% if upsell.product.nameSupplier %}
                {{ upsell.product.nameSupplier }}
        {% endif %}
        {% if upsell.product.text %}
                {{ upsell.product.text }}
        {% endif %}
        {% if upsell.product.attribute %}
        {% endif %}
        {% if upsell.product.brand %}
        {% endif %}
        {% if upsell.product.image %}
        {% endif %}
        {% if upsell.product.imageForEnumValueId %}
        {% endif %}
        {% if upsell.product.successor %}
        {% endif %}
        {% if upsell.product.seo %}
        {% endif %}
        {% if upsell.product.supplier %}
        {% endif %}
        {% if upsell.product.unit %}
        {% endif %}
        {% if upsell.product.variant %}
        {% endif %}
        {% if upsell.product.warranty %}
        {% endif %}
        {% if upsell.product.contentGrid %}
                {{ upsell.product.contentGrid }}
        {% endif %}
        {{ upsell.group.id }}
        {{ upsell.group.requiredNoteMaximumLength }}
        {{ upsell.group.name }}
        {% if upsell.group.requiredNote %} ... {% endif %}
        {% if upsell.group.requiredUpload %} ... {% endif %}
        {% if upsell.group.singleSelection %} ... {% endif %}
        {% if upsell.group.text %}
                {{ upsell.group.text }}
        {% endif %}
        {% if upsell.group.uploadInput %}
                {{ upsell.group.uploadInput }}
        {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
                {{ upsell.image.originalHeight }}
                {{ upsell.image.originalWidth }}
                {{ upsell.image.url }}
                {% if upsell.image.alt %}
                        {{ upsell.image.alt }}
                {% endif %}
                {% if upsell.image.text %}
                        {{ upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.unit %}
                {{ upsell.unit.name }}
        {% endif %}
{% endfor %}
{{ cartitemchange.catalogItem.trackingIds }}
{{ cartitemchange.catalogItem.storageLocations }}
{% if cartitemchange.catalogItem.packageWeight %}
        {{ cartitemchange.catalogItem.packageWeight }}
{% endif %}
{% if cartitemchange.catalogItem.code %}
        {{ cartitemchange.catalogItem.code }}
{% endif %}
{% if cartitemchange.catalogItem.packageHeight %}
        {{ cartitemchange.catalogItem.packageHeight }}
{% endif %}
{% if cartitemchange.catalogItem.packageLength %}
        {{ cartitemchange.catalogItem.packageLength }}
{% endif %}
{% if cartitemchange.catalogItem.packageWidth %}
        {{ cartitemchange.catalogItem.packageWidth }}
{% endif %}
{% if cartitemchange.catalogItem.bundle %}
        {% if cartitemchange.catalogItem.bundle.multiPack %} ... {% endif %}
        {% if cartitemchange.catalogItem.bundle.price %}
                {{ cartitemchange.catalogItem.bundle.price.vatRate }}
                {% if cartitemchange.catalogItem.bundle.price.discountPercent %}
                        {{ cartitemchange.catalogItem.bundle.price.discountPercent }}
                {% endif %}
                {% if cartitemchange.catalogItem.bundle.price.discountValidTo %}
                        {{ cartitemchange.catalogItem.bundle.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if cartitemchange.catalogItem.bundle.price.beforeDiscount %}
                {% endif %}
                {% if cartitemchange.catalogItem.bundle.price.discount %}
                {% endif %}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.cheapestDelivery %}
        {{ cartitemchange.catalogItem.cheapestDelivery.inputId }}
        {{ cartitemchange.catalogItem.cheapestDelivery.name }}
        {{ cartitemchange.catalogItem.cheapestDelivery.vatRate }}
        {% if cartitemchange.catalogItem.cheapestDelivery.branchRequired %} ... {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.currier %} ... {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.dateGuaranteed %} ... {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.deliveryToAddress %} ... {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.digital %} ... {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.free %} ... {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.pickup %} ... {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.selected %} ... {% endif %}
        {{ cartitemchange.catalogItem.cheapestDelivery.price.vatRate }}
        {% if cartitemchange.catalogItem.cheapestDelivery.price.discountPercent %}
                {{ cartitemchange.catalogItem.cheapestDelivery.price.discountPercent }}
        {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.price.discountValidTo %}
                {{ cartitemchange.catalogItem.cheapestDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.price.beforeDiscount %}
        {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.price.discount %}
        {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.text %}
                {{ cartitemchange.catalogItem.cheapestDelivery.text }}
        {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.branch %}
                {{ cartitemchange.catalogItem.cheapestDelivery.branch.code }}
                {{ cartitemchange.catalogItem.cheapestDelivery.branch.name }}
        {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.carrier %}
                {{ cartitemchange.catalogItem.cheapestDelivery.carrier.code }}
                {{ cartitemchange.catalogItem.cheapestDelivery.carrier.name }}
        {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.deliveryDate %}
                {{ cartitemchange.catalogItem.cheapestDelivery.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ cartitemchange.catalogItem.cheapestDelivery.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ cartitemchange.catalogItem.cheapestDelivery.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if cartitemchange.catalogItem.cheapestDelivery.deliveryDate.timeDelivered %}
                        {{ cartitemchange.catalogItem.cheapestDelivery.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.packageType %}
                {{ cartitemchange.catalogItem.cheapestDelivery.packageType.code }}
        {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.image %}
                {{ cartitemchange.catalogItem.cheapestDelivery.image.originalHeight }}
                {{ cartitemchange.catalogItem.cheapestDelivery.image.originalWidth }}
                {{ cartitemchange.catalogItem.cheapestDelivery.image.url }}
                {% if cartitemchange.catalogItem.cheapestDelivery.image.alt %}
                        {{ cartitemchange.catalogItem.cheapestDelivery.image.alt }}
                {% endif %}
                {% if cartitemchange.catalogItem.cheapestDelivery.image.text %}
                        {{ cartitemchange.catalogItem.cheapestDelivery.image.text }}
                {% endif %}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.freeDelivery %}
        {{ cartitemchange.catalogItem.freeDelivery.name }}
        {{ cartitemchange.catalogItem.freeDelivery.vatRate }}
        {% if cartitemchange.catalogItem.freeDelivery.deliveryAddressRequired %} ... {% endif %}
        {{ cartitemchange.catalogItem.freeDelivery.payment.inputId }}
        {{ cartitemchange.catalogItem.freeDelivery.payment.name }}
        {{ cartitemchange.catalogItem.freeDelivery.payment.url }}
        {{ cartitemchange.catalogItem.freeDelivery.payment.vatRate }}
        {% if cartitemchange.catalogItem.freeDelivery.payment.free %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.payment.inAdvance %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.payment.selected %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.payment.code %}
                {{ cartitemchange.catalogItem.freeDelivery.payment.code }}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.payment.vs %}
                {{ cartitemchange.catalogItem.freeDelivery.payment.vs }}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.payment.qRCodeHTML %}
                {{ cartitemchange.catalogItem.freeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.payment.text %}
                {{ cartitemchange.catalogItem.freeDelivery.payment.text }}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.payment.bankAccount %}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.payment.image %}
        {% endif %}
        {{ cartitemchange.catalogItem.freeDelivery.transport.inputId }}
        {{ cartitemchange.catalogItem.freeDelivery.transport.name }}
        {{ cartitemchange.catalogItem.freeDelivery.transport.vatRate }}
        {% if cartitemchange.catalogItem.freeDelivery.transport.branchRequired %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.currier %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.digital %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.free %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.pickup %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.selected %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.text %}
                {{ cartitemchange.catalogItem.freeDelivery.transport.text }}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.branch %}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.carrier %}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.deliveryDate %}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.packageType %}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.image %}
        {% endif %}
        {{ cartitemchange.catalogItem.freeDelivery.price.vatRate }}
        {% if cartitemchange.catalogItem.freeDelivery.price.discountPercent %}
                {{ cartitemchange.catalogItem.freeDelivery.price.discountPercent }}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.price.discountValidTo %}
                {{ cartitemchange.catalogItem.freeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.price.beforeDiscount %}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.price.discount %}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.id %}
                {{ cartitemchange.catalogItem.freeDelivery.id }}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.freeLimit %}
                {{ cartitemchange.catalogItem.freeDelivery.freeLimit.percent }}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.closestFreeDelivery %}
        {{ cartitemchange.catalogItem.closestFreeDelivery.name }}
        {{ cartitemchange.catalogItem.closestFreeDelivery.vatRate }}
        {% if cartitemchange.catalogItem.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
        {{ cartitemchange.catalogItem.closestFreeDelivery.payment.inputId }}
        {{ cartitemchange.catalogItem.closestFreeDelivery.payment.name }}
        {{ cartitemchange.catalogItem.closestFreeDelivery.payment.url }}
        {{ cartitemchange.catalogItem.closestFreeDelivery.payment.vatRate }}
        {% if cartitemchange.catalogItem.closestFreeDelivery.payment.free %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.payment.selected %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.payment.code %}
                {{ cartitemchange.catalogItem.closestFreeDelivery.payment.code }}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.payment.vs %}
                {{ cartitemchange.catalogItem.closestFreeDelivery.payment.vs }}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.payment.qRCodeHTML %}
                {{ cartitemchange.catalogItem.closestFreeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.payment.text %}
                {{ cartitemchange.catalogItem.closestFreeDelivery.payment.text }}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.payment.bankAccount %}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.payment.image %}
        {% endif %}
        {{ cartitemchange.catalogItem.closestFreeDelivery.transport.inputId }}
        {{ cartitemchange.catalogItem.closestFreeDelivery.transport.name }}
        {{ cartitemchange.catalogItem.closestFreeDelivery.transport.vatRate }}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.currier %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.digital %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.free %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.pickup %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.selected %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.text %}
                {{ cartitemchange.catalogItem.closestFreeDelivery.transport.text }}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.branch %}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.carrier %}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.deliveryDate %}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.packageType %}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.image %}
        {% endif %}
        {{ cartitemchange.catalogItem.closestFreeDelivery.price.vatRate }}
        {% if cartitemchange.catalogItem.closestFreeDelivery.price.discountPercent %}
                {{ cartitemchange.catalogItem.closestFreeDelivery.price.discountPercent }}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.price.discountValidTo %}
                {{ cartitemchange.catalogItem.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.price.beforeDiscount %}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.price.discount %}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.id %}
                {{ cartitemchange.catalogItem.closestFreeDelivery.id }}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.freeLimit %}
                {{ cartitemchange.catalogItem.closestFreeDelivery.freeLimit.percent }}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.packageDimensions %}
        {{ cartitemchange.catalogItem.packageDimensions }}
        {{ cartitemchange.catalogItem.packageDimensions.unit }}
        {{ cartitemchange.catalogItem.packageDimensions.height }}
        {{ cartitemchange.catalogItem.packageDimensions.length }}
        {{ cartitemchange.catalogItem.packageDimensions.width }}
{% endif %}
{% if cartitemchange.catalogItem.image %}
        {{ cartitemchange.catalogItem.image.originalHeight }}
        {{ cartitemchange.catalogItem.image.originalWidth }}
        {{ cartitemchange.catalogItem.image.url }}
        {% if cartitemchange.catalogItem.image.alt %}
                {{ cartitemchange.catalogItem.image.alt }}
        {% endif %}
        {% if cartitemchange.catalogItem.image.text %}
                {{ cartitemchange.catalogItem.image.text }}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.price %}
        {{ cartitemchange.catalogItem.price.vatRate }}
        {{ cartitemchange.catalogItem.price.current.currency }}
        {{ cartitemchange.catalogItem.price.current.formatted }}
        {{ cartitemchange.catalogItem.price.current.value }}
        {% if cartitemchange.catalogItem.price.current.perUnit %}
        {% endif %}
        {% if cartitemchange.catalogItem.price.discountPercent %}
                {{ cartitemchange.catalogItem.price.discountPercent }}
        {% endif %}
        {% if cartitemchange.catalogItem.price.discountValidTo %}
                {{ cartitemchange.catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if cartitemchange.catalogItem.price.beforeDiscount %}
                {{ cartitemchange.catalogItem.price.beforeDiscount.currency }}
                {{ cartitemchange.catalogItem.price.beforeDiscount.formatted }}
                {{ cartitemchange.catalogItem.price.beforeDiscount.value }}
                {% if cartitemchange.catalogItem.price.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if cartitemchange.catalogItem.price.discount %}
                {{ cartitemchange.catalogItem.price.discount.currency }}
                {{ cartitemchange.catalogItem.price.discount.formatted }}
                {{ cartitemchange.catalogItem.price.discount.value }}
                {% if cartitemchange.catalogItem.price.discount.perUnit %}
                {% endif %}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.url %}
        {{ cartitemchange.catalogItem.url }}
        {{ cartitemchange.catalogItem.url.absolute }}
        {{ cartitemchange.catalogItem.url.path }}
{% endif %}
{% if cartitemchange.catalogItem.variant %}
        {{ cartitemchange.catalogItem.variant.id }}
        {{ cartitemchange.catalogItem.variant.name }}
        {{ cartitemchange.catalogItem.variant.trackingId }}
        {% if cartitemchange.catalogItem.variant.active %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in cartitemchange.catalogItem.variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in cartitemchange.catalogItem.variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ cartitemchange.catalogItem.variant.item.cartAmountRequiredMultiplier }}
        {{ cartitemchange.catalogItem.variant.item.id }}
        {{ cartitemchange.catalogItem.variant.item.loyaltyPointsAmount }}
        {{ cartitemchange.catalogItem.variant.item.name }}
        {{ cartitemchange.catalogItem.variant.item.trackingId }}
        {% if cartitemchange.catalogItem.variant.item.digital %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.item.sellable %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.item.service %} ... {% endif %}
        {% for availableUpsellGroup in cartitemchange.catalogItem.variant.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in cartitemchange.catalogItem.variant.item.availableUpsells %}
        {% endfor %}
        {{ cartitemchange.catalogItem.variant.item.trackingIds }}
        {{ cartitemchange.catalogItem.variant.item.storageLocations }}
        {% if cartitemchange.catalogItem.variant.item.packageWeight %}
                {{ cartitemchange.catalogItem.variant.item.packageWeight }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.code %}
                {{ cartitemchange.catalogItem.variant.item.code }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.packageHeight %}
                {{ cartitemchange.catalogItem.variant.item.packageHeight }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.packageLength %}
                {{ cartitemchange.catalogItem.variant.item.packageLength }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.packageWidth %}
                {{ cartitemchange.catalogItem.variant.item.packageWidth }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.bundle %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.cheapestDelivery %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.freeDelivery %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.closestFreeDelivery %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.packageDimensions %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.image %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.price %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.url %}
        {% endif %}
        {{ cartitemchange.catalogItem.variant.product.id }}
        {{ cartitemchange.catalogItem.variant.product.name }}
        {{ cartitemchange.catalogItem.variant.product.trackingId }}
        {{ cartitemchange.catalogItem.variant.product.dateCreated|date('d. m. Y H:i') }}
        {% if cartitemchange.catalogItem.variant.product.active %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.product.compared %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.product.differentVariantPrices %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.product.flagNew %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.product.flagPromo %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.product.flagSecondHand %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.product.flagSellout %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.product.otherDiscountApplicable %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.product.soldSeparately %} ... {% endif %}
        {% for address in cartitemchange.catalogItem.variant.product.publicContacts %}
        {% endfor %}
        {% for attributeInstance in cartitemchange.catalogItem.variant.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in cartitemchange.catalogItem.variant.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in cartitemchange.catalogItem.variant.product.categories %}
        {% endfor %}
        {% for category in cartitemchange.catalogItem.variant.product.otherCategories %}
        {% endfor %}
        {% for file in cartitemchange.catalogItem.variant.product.files %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.variant.product.images %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.variant.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.variant.product.images360 %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.variant.product.currentImages %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.variant.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.variant.product.otherImages %}
        {% endfor %}
        {% for label in cartitemchange.catalogItem.variant.product.labels %}
        {% endfor %}
        {% for productDesigner in cartitemchange.catalogItem.variant.product.configurators %}
        {% endfor %}
        {% for productEnumValue in cartitemchange.catalogItem.variant.product.enumValues %}
        {% endfor %}
        {% for product in cartitemchange.catalogItem.variant.product.packTemplateProducts %}
        {% endfor %}
        {% for upsell in cartitemchange.catalogItem.variant.product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in cartitemchange.catalogItem.variant.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in cartitemchange.catalogItem.variant.product.currentVariants %}
        {% endfor %}
        {% for variant in cartitemchange.catalogItem.variant.product.variants %}
        {% endfor %}
        {% for variant in cartitemchange.catalogItem.variant.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in cartitemchange.catalogItem.variant.product.videos %}
        {% endfor %}
        {{ cartitemchange.catalogItem.variant.product.trackingIds }}
        {% if cartitemchange.catalogItem.variant.product.currentSubName %}
                {{ cartitemchange.catalogItem.variant.product.currentSubName }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.nameSuffix %}
                {{ cartitemchange.catalogItem.variant.product.nameSuffix }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.nameSupplier %}
                {{ cartitemchange.catalogItem.variant.product.nameSupplier }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.text %}
                {{ cartitemchange.catalogItem.variant.product.text }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.attribute %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.brand %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.image %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.imageForEnumValueId %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.successor %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.seo %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.supplier %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.unit %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.warranty %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.contentGrid %}
                {{ cartitemchange.catalogItem.variant.product.contentGrid }}
        {% endif %}
        {% for upsell in cartitemchange.catalogItem.variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ cartitemchange.catalogItem.variant.url }}
        {{ cartitemchange.catalogItem.variant.url.absolute }}
        {{ cartitemchange.catalogItem.variant.url.path }}
        {% if cartitemchange.catalogItem.variant.legacyRel %}
                {{ cartitemchange.catalogItem.variant.legacyRel }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.image %}
                {{ cartitemchange.catalogItem.variant.image.originalHeight }}
                {{ cartitemchange.catalogItem.variant.image.originalWidth }}
                {{ cartitemchange.catalogItem.variant.image.url }}
                {% if cartitemchange.catalogItem.variant.image.alt %}
                        {{ cartitemchange.catalogItem.variant.image.alt }}
                {% endif %}
                {% if cartitemchange.catalogItem.variant.image.text %}
                        {{ cartitemchange.catalogItem.variant.image.text }}
                {% endif %}
        {% endif %}
{% endif %}
{{ cartitemchange.price.vatRate }}
{{ cartitemchange.price.current.currency }}
{{ cartitemchange.price.current.formatted }}
{{ cartitemchange.price.current.value }}
{% if cartitemchange.price.current.perUnit %}
        {{ cartitemchange.price.current.perUnit }}
        {{ cartitemchange.price.current.perUnit.formatted }}
        {{ cartitemchange.price.current.perUnit.unit }}
{% endif %}
{% if cartitemchange.price.discountPercent %}
        {{ cartitemchange.price.discountPercent }}
{% endif %}
{% if cartitemchange.price.discountValidTo %}
        {{ cartitemchange.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if cartitemchange.price.beforeDiscount %}
        {{ cartitemchange.price.beforeDiscount.currency }}
        {{ cartitemchange.price.beforeDiscount.formatted }}
        {{ cartitemchange.price.beforeDiscount.value }}
        {% if cartitemchange.price.beforeDiscount.perUnit %}
                {{ cartitemchange.price.beforeDiscount.perUnit }}
                {{ cartitemchange.price.beforeDiscount.perUnit.formatted }}
                {{ cartitemchange.price.beforeDiscount.perUnit.unit }}
        {% endif %}
{% endif %}
{% if cartitemchange.price.discount %}
        {{ cartitemchange.price.discount.currency }}
        {{ cartitemchange.price.discount.formatted }}
        {{ cartitemchange.price.discount.value }}
        {% if cartitemchange.price.discount.perUnit %}
                {{ cartitemchange.price.discount.perUnit }}
                {{ cartitemchange.price.discount.perUnit.formatted }}
                {{ cartitemchange.price.discount.perUnit.unit }}
        {% endif %}
{% endif %}

ExpectedAmount

Attributy objektu ExpectedAmount

Název

Typ

Popis

amount

int

Počet volných kusů

sourceStorageRoom

StorageRoom

Z jakého skladu se kusy doplňují

Příklady:

{{ expectedamount.amount }}
{{ expectedamount.sourceStorageRoom.name }}
{% if expectedamount.sourceStorageRoom.doesSupportLocations %} ... {% endif %}

ExpectedSupplierAmount

Attributy objektu ExpectedSupplierAmount

Název

Typ

Popis

amount

int

Počet volných kusů

sourceStorageCenter

StorageCenter

Na jaké středisko poptávka dorazí (a následně se kusy přesunou)

expectedDate

datetime | null

Kdy je očekáváno dodání

orderDate

datetime | null

Kdy byla poptávka odeslána (pokud byla)

Příklady:

{{ expectedsupplieramount.amount }}
{{ expectedsupplieramount.sourceStorageCenter.name }}
{% for storageRoom in expectedsupplieramount.sourceStorageCenter.storageRooms %}
        {{ storageRoom.name }}
        {% if storageRoom.doesSupportLocations %} ... {% endif %}
{% endfor %}
{% if expectedsupplieramount.sourceStorageCenter.shortName %}
        {{ expectedsupplieramount.sourceStorageCenter.shortName }}
{% endif %}
{% if expectedsupplieramount.sourceStorageCenter.address %}
        {{ expectedsupplieramount.sourceStorageCenter.address.name }}
        {% if expectedsupplieramount.sourceStorageCenter.address.name.first %}
                {{ expectedsupplieramount.sourceStorageCenter.address.name.first }}
        {% endif %}
        {% if expectedsupplieramount.sourceStorageCenter.address.name.last %}
                {{ expectedsupplieramount.sourceStorageCenter.address.name.last }}
        {% endif %}
        {% if expectedsupplieramount.sourceStorageCenter.address.city %}
                {{ expectedsupplieramount.sourceStorageCenter.address.city }}
        {% endif %}
        {% if expectedsupplieramount.sourceStorageCenter.address.company %}
                {{ expectedsupplieramount.sourceStorageCenter.address.company }}
        {% endif %}
        {% if expectedsupplieramount.sourceStorageCenter.address.companyId %}
                {{ expectedsupplieramount.sourceStorageCenter.address.companyId }}
        {% endif %}
        {% if expectedsupplieramount.sourceStorageCenter.address.email %}
                {{ expectedsupplieramount.sourceStorageCenter.address.email }}
        {% endif %}
        {% if expectedsupplieramount.sourceStorageCenter.address.phone %}
                {{ expectedsupplieramount.sourceStorageCenter.address.phone }}
        {% endif %}
        {% if expectedsupplieramount.sourceStorageCenter.address.region %}
                {{ expectedsupplieramount.sourceStorageCenter.address.region }}
        {% endif %}
        {% if expectedsupplieramount.sourceStorageCenter.address.street %}
                {{ expectedsupplieramount.sourceStorageCenter.address.street }}
        {% endif %}
        {% if expectedsupplieramount.sourceStorageCenter.address.vatId %}
                {{ expectedsupplieramount.sourceStorageCenter.address.vatId }}
        {% endif %}
        {% if expectedsupplieramount.sourceStorageCenter.address.web %}
                {{ expectedsupplieramount.sourceStorageCenter.address.web }}
        {% endif %}
        {% if expectedsupplieramount.sourceStorageCenter.address.zip %}
                {{ expectedsupplieramount.sourceStorageCenter.address.zip }}
        {% endif %}
        {% if expectedsupplieramount.sourceStorageCenter.address.purpose %}
                {{ expectedsupplieramount.sourceStorageCenter.address.purpose.headline }}
        {% endif %}
        {% if expectedsupplieramount.sourceStorageCenter.address.country %}
                {{ expectedsupplieramount.sourceStorageCenter.address.country.code }}
                {{ expectedsupplieramount.sourceStorageCenter.address.country.flagCircleUrl }}
                {{ expectedsupplieramount.sourceStorageCenter.address.country.flagUrl }}
                {{ expectedsupplieramount.sourceStorageCenter.address.country.name }}
                {% if expectedsupplieramount.sourceStorageCenter.address.country.eU %} ... {% endif %}
        {% endif %}
{% endif %}

{% if expectedsupplieramount.expectedDate %}
        {{ expectedsupplieramount.expectedDate|date('d. m. Y H:i') }}
{% endif %}

{% if expectedsupplieramount.orderDate %}
        {{ expectedsupplieramount.orderDate|date('d. m. Y H:i') }}
{% endif %}

File

Soubor

Attributy objektu File

Název

Typ

Popis

bytes

int

Velikost v bytech

url

string

Url

usage

FileUsage

Způsob použití

mime

string | null

Mime type

name

string | null

Název

Příklady:

{{ file.bytes }}
{{ file.url }}
{% if file.usage.archive %} ... {% endif %}
{% if file.usage.graphic %} ... {% endif %}
{% if file.usage.manual %} ... {% endif %}
{% if file.usage.other %} ... {% endif %}
{% if file.usage.sound %} ... {% endif %}
{% if file.usage.specification %} ... {% endif %}

{% if file.mime %}
        {{ file.mime }}
{% endif %}

{% if file.name %}
        {{ file.name }}
{% endif %}

FileUsage

Attributy objektu FileUsage

Název

Typ

Popis

archive

bool

Archiv

graphic

bool

Grafický

manual

bool

Manuál

other

bool

Ostatní

sound

bool

Zvuk

specification

bool

Specifikace

Příklady:

{% if fileusage.archive %} ... {% endif %}
{% if fileusage.graphic %} ... {% endif %}
{% if fileusage.manual %} ... {% endif %}
{% if fileusage.other %} ... {% endif %}
{% if fileusage.sound %} ... {% endif %}
{% if fileusage.specification %} ... {% endif %}

Gift

Attributy objektu Gift

Název

Typ

Popis

id

int

Id

name

string

Název

item

Item

Položka

image

Image | null

Obrázek

Příklady:

{{ gift.id }}
{{ gift.name }}
{{ gift.item.cartAmountRequiredMultiplier }}
{{ gift.item.id }}
{{ gift.item.loyaltyPointsAmount }}
{{ gift.item.name }}
{{ gift.item.trackingId }}
{% if gift.item.digital %} ... {% endif %}
{% if gift.item.sellable %} ... {% endif %}
{% if gift.item.service %} ... {% endif %}
{{ gift.item.availability.availableAmount }}
{{ gift.item.availability.availableAmountExpectedToStorageRoom }}
{{ gift.item.availability.availableAmountInShowroom }}
{{ gift.item.availability.availableAmountInStockroom }}
{{ gift.item.availability.availableAmountInStorageCenter }}
{{ gift.item.availability.availableAmountOnWayToStorageRoom }}
{{ gift.item.availability.availableDemandsAmountFromSupplierToStorageRoom }}
{{ gift.item.availability.hours }}
{{ gift.item.availability.totalAmount }}
{% if gift.item.availability.inShowroom %} ... {% endif %}
{% if gift.item.availability.inStock %} ... {% endif %}
{% if gift.item.availability.preorder %} ... {% endif %}
{% if gift.item.availability.watchdogSupported %} ... {% endif %}
{% for deliveryOption in gift.item.availability.deliveryOptions %}
        {{ deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {% if deliveryOption.timeDelivered %}
                {{ deliveryOption.timeDelivered }}
        {% endif %}
{% endfor %}
{% for expectedAmount in gift.item.availability.availableAmountsExpectedToStorageRoom %}
        {{ expectedAmount.amount }}
{% endfor %}
{% for expectedAmount in gift.item.availability.availableAmountsOnWayToStorageRoom %}
        {{ expectedAmount.amount }}
{% endfor %}
{% for expectedSupplierAmount in gift.item.availability.availableDemandsFromSupplierToStorageRoom %}
        {{ expectedSupplierAmount.amount }}
        {% if expectedSupplierAmount.expectedDate %}
                {{ expectedSupplierAmount.expectedDate|date('d. m. Y H:i') }}
        {% endif %}
        {% if expectedSupplierAmount.orderDate %}
                {{ expectedSupplierAmount.orderDate|date('d. m. Y H:i') }}
        {% endif %}
{% endfor %}
{% if gift.item.availability.text %}
        {{ gift.item.availability.text }}
{% endif %}
{% if gift.item.availability.dateExpected %}
        {{ gift.item.availability.dateExpected|date('d. m. Y H:i') }}
{% endif %}
{% if gift.item.availability.deliveryOption %}
        {{ gift.item.availability.deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ gift.item.availability.deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ gift.item.availability.deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {% if gift.item.availability.deliveryOption.timeDelivered %}
                {{ gift.item.availability.deliveryOption.timeDelivered }}
        {% endif %}
{% endif %}
{% for availableUpsellGroup in gift.item.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{{ gift.item.product.id }}
{{ gift.item.product.name }}
{{ gift.item.product.trackingId }}
{{ gift.item.product.dateCreated|date('d. m. Y H:i') }}
{% if gift.item.product.active %} ... {% endif %}
{% if gift.item.product.compared %} ... {% endif %}
{% if gift.item.product.differentVariantPrices %} ... {% endif %}
{% if gift.item.product.flagNew %} ... {% endif %}
{% if gift.item.product.flagPromo %} ... {% endif %}
{% if gift.item.product.flagSecondHand %} ... {% endif %}
{% if gift.item.product.flagSellout %} ... {% endif %}
{% if gift.item.product.otherDiscountApplicable %} ... {% endif %}
{% if gift.item.product.soldSeparately %} ... {% endif %}
{% for address in gift.item.product.publicContacts %}
        {% if address.city %}
                {{ address.city }}
        {% endif %}
        {% if address.company %}
                {{ address.company }}
        {% endif %}
        {% if address.companyId %}
                {{ address.companyId }}
        {% endif %}
        {% if address.email %}
                {{ address.email }}
        {% endif %}
        {% if address.phone %}
                {{ address.phone }}
        {% endif %}
        {% if address.region %}
                {{ address.region }}
        {% endif %}
        {% if address.street %}
                {{ address.street }}
        {% endif %}
        {% if address.vatId %}
                {{ address.vatId }}
        {% endif %}
        {% if address.web %}
                {{ address.web }}
        {% endif %}
        {% if address.zip %}
                {{ address.zip }}
        {% endif %}
        {% if address.purpose %}
        {% endif %}
        {% if address.country %}
        {% endif %}
{% endfor %}
{% for attributeInstance in gift.item.product.attributes %}
        {{ attributeInstance.name }}
        {{ attributeInstance.valuesHtml }}
        {% for attributeValueInstance in attributeInstance.values %}
        {% endfor %}
        {% if attributeInstance.description %}
                {{ attributeInstance.description }}
        {% endif %}
        {% if attributeInstance.group %}
        {% endif %}
        {% if attributeInstance.image %}
        {% endif %}
{% endfor %}
{% for availableUpsellGroup in gift.item.product.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{{ gift.item.product.category.id }}
{{ gift.item.product.category.productCount }}
{{ gift.item.product.category.productInStockCount }}
{{ gift.item.product.category.totalStockQuantity }}
{{ gift.item.product.category.headline }}
{{ gift.item.product.category.menuName }}
{{ gift.item.product.category.name }}
{% if gift.item.product.category.flagErotic %} ... {% endif %}
{% if gift.item.product.category.flagImportant %} ... {% endif %}
{% if gift.item.product.category.noFollow %} ... {% endif %}
{% for category in gift.item.product.category.subcategories %}
{% endfor %}
{% for video in gift.item.product.category.videos %}
{% endfor %}
{{ gift.item.product.category.pathNames }}
{{ gift.item.product.category.pathIds }}
{{ gift.item.product.category.templateAttribute }}
{% if gift.item.product.category.subHeadline %}
        {{ gift.item.product.category.subHeadline }}
{% endif %}
{% if gift.item.product.category.text %}
        {{ gift.item.product.category.text }}
{% endif %}
{% if gift.item.product.category.parent %}
{% endif %}
{% if gift.item.product.category.image %}
{% endif %}
{% if gift.item.product.category.contentGrid %}
        {{ gift.item.product.category.contentGrid }}
{% endif %}
{% for category in gift.item.product.categories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
        {% endfor %}
        {% for video in category.videos %}
        {% endfor %}
        {{ category.pathNames }}
        {{ category.pathIds }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
        {% endif %}
        {% if category.image %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for category in gift.item.product.otherCategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
        {% endfor %}
        {% for video in category.videos %}
        {% endfor %}
        {{ category.pathNames }}
        {{ category.pathIds }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
        {% endif %}
        {% if category.image %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for file in gift.item.product.files %}
        {{ file.bytes }}
        {{ file.url }}
        {% if file.mime %}
                {{ file.mime }}
        {% endif %}
        {% if file.name %}
                {{ file.name }}
        {% endif %}
{% endfor %}
{% for image in gift.item.product.images %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in gift.item.product.imagesWithEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in gift.item.product.images360 %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in gift.item.product.currentImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in gift.item.product.imagesWithoutEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in gift.item.product.otherImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for label in gift.item.product.labels %}
        {{ label.id }}
        {{ label.name }}
        {% if label.code %}
                {{ label.code }}
        {% endif %}
        {% if label.colorCode %}
                {{ label.colorCode }}
        {% endif %}
        {% if label.image %}
        {% endif %}
{% endfor %}
{% for productDesigner in gift.item.product.configurators %}
        {{ productDesigner.name }}
        {% if productDesigner.result %}
        {% endif %}
{% endfor %}
{% for productEnumValue in gift.item.product.enumValues %}
        {{ productEnumValue.id }}
        {{ productEnumValue.name }}
        {% if productEnumValue.selected %} ... {% endif %}
        {% for variant in productEnumValue.variants %}
        {% endfor %}
        {% if productEnumValue.text %}
                {{ productEnumValue.text }}
        {% endif %}
        {% if productEnumValue.image %}
        {% endif %}
        {% if productEnumValue.variantImage %}
        {% endif %}
{% endfor %}
{% for product in gift.item.product.packTemplateProducts %}
        {{ product.id }}
        {{ product.name }}
        {{ product.trackingId }}
        {{ product.dateCreated|date('d. m. Y H:i') }}
        {% if product.active %} ... {% endif %}
        {% if product.compared %} ... {% endif %}
        {% if product.differentVariantPrices %} ... {% endif %}
        {% if product.flagNew %} ... {% endif %}
        {% if product.flagPromo %} ... {% endif %}
        {% if product.flagSecondHand %} ... {% endif %}
        {% if product.flagSellout %} ... {% endif %}
        {% if product.otherDiscountApplicable %} ... {% endif %}
        {% if product.soldSeparately %} ... {% endif %}
        {% for address in product.publicContacts %}
        {% endfor %}
        {% for attributeInstance in product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in product.availableUpsellGroups %}
        {% endfor %}
        {% for category in product.categories %}
        {% endfor %}
        {% for category in product.otherCategories %}
        {% endfor %}
        {% for file in product.files %}
        {% endfor %}
        {% for image in product.images %}
        {% endfor %}
        {% for image in product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in product.images360 %}
        {% endfor %}
        {% for image in product.currentImages %}
        {% endfor %}
        {% for image in product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in product.otherImages %}
        {% endfor %}
        {% for label in product.labels %}
        {% endfor %}
        {% for productDesigner in product.configurators %}
        {% endfor %}
        {% for productEnumValue in product.enumValues %}
        {% endfor %}
        {% for upsell in product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in product.currentVariants %}
        {% endfor %}
        {% for variant in product.variants %}
        {% endfor %}
        {% for variant in product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in product.videos %}
        {% endfor %}
        {{ product.trackingIds }}
        {% if product.currentSubName %}
                {{ product.currentSubName }}
        {% endif %}
        {% if product.nameSuffix %}
                {{ product.nameSuffix }}
        {% endif %}
        {% if product.nameSupplier %}
                {{ product.nameSupplier }}
        {% endif %}
        {% if product.text %}
                {{ product.text }}
        {% endif %}
        {% if product.attribute %}
        {% endif %}
        {% if product.brand %}
        {% endif %}
        {% if product.image %}
        {% endif %}
        {% if product.imageForEnumValueId %}
        {% endif %}
        {% if product.successor %}
        {% endif %}
        {% if product.seo %}
        {% endif %}
        {% if product.supplier %}
        {% endif %}
        {% if product.unit %}
        {% endif %}
        {% if product.variant %}
        {% endif %}
        {% if product.warranty %}
        {% endif %}
        {% if product.contentGrid %}
                {{ product.contentGrid }}
        {% endif %}
{% endfor %}
{{ gift.item.product.rating.count }}
{% if gift.item.product.rating.voted %} ... {% endif %}
{% if gift.item.product.rating.average %}
        {{ gift.item.product.rating.average }}
{% endif %}
{% for upsell in gift.item.product.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
        {% endif %}
        {% if upsell.unit %}
        {% endif %}
{% endfor %}
{{ gift.item.product.url }}
{{ gift.item.product.url.absolute }}
{{ gift.item.product.url.path }}
{% for variantChoiceStep in gift.item.product.variantChoiceSteps %}
        {{ variantChoiceStep.headline }}
        {{ variantChoiceStep.inputName }}
        {{ variantChoiceStep.mode }}
        {% if variantChoiceStep.final %} ... {% endif %}
        {% for variantChoice in variantChoiceStep.choices %}
        {% endfor %}
        {% if variantChoiceStep.description %}
                {{ variantChoiceStep.description }}
        {% endif %}
        {% if variantChoiceStep.infoDescription %}
                {{ variantChoiceStep.infoDescription }}
        {% endif %}
        {% if variantChoiceStep.messageEmpty %}
                {{ variantChoiceStep.messageEmpty }}
        {% endif %}
        {% if variantChoiceStep.placeholder %}
                {{ variantChoiceStep.placeholder }}
        {% endif %}
        {% if variantChoiceStep.icon %}
        {% endif %}
        {% if variantChoiceStep.infoIcon %}
        {% endif %}
        {% if variantChoiceStep.info %}
        {% endif %}
        {% if variantChoiceStep.selectedChoice %}
        {% endif %}
{% endfor %}
{% for variant in gift.item.product.currentVariants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
        {% endfor %}
        {% for image in variant.images %}
        {% endfor %}
        {% for upsell in variant.availableUpsells %}
        {% endfor %}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
        {% endif %}
{% endfor %}
{% for variant in gift.item.product.variants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
        {% endfor %}
        {% for image in variant.images %}
        {% endfor %}
        {% for upsell in variant.availableUpsells %}
        {% endfor %}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
        {% endif %}
{% endfor %}
{% for variant in gift.item.product.variantsWithEnumValueIds %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
        {% endfor %}
        {% for image in variant.images %}
        {% endfor %}
        {% for upsell in variant.availableUpsells %}
        {% endfor %}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
        {% endif %}
{% endfor %}
{{ gift.item.product.variantType.id }}
{{ gift.item.product.variantType.name }}
{% for video in gift.item.product.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
        {% endif %}
{% endfor %}
{{ gift.item.product.trackingIds }}
{% if gift.item.product.currentSubName %}
        {{ gift.item.product.currentSubName }}
{% endif %}
{% if gift.item.product.nameSuffix %}
        {{ gift.item.product.nameSuffix }}
{% endif %}
{% if gift.item.product.nameSupplier %}
        {{ gift.item.product.nameSupplier }}
{% endif %}
{% if gift.item.product.text %}
        {{ gift.item.product.text }}
{% endif %}
{% if gift.item.product.attribute %}
        {{ gift.item.product.attribute.name }}
        {{ gift.item.product.attribute.valuesHtml }}
        {% for attributeValueInstance in gift.item.product.attribute.values %}
        {% endfor %}
        {% if gift.item.product.attribute.description %}
                {{ gift.item.product.attribute.description }}
        {% endif %}
        {% if gift.item.product.attribute.group %}
        {% endif %}
        {% if gift.item.product.attribute.image %}
        {% endif %}
{% endif %}
{% if gift.item.product.brand %}
        {{ gift.item.product.brand.id }}
        {{ gift.item.product.brand.headline }}
        {{ gift.item.product.brand.name }}
        {% if gift.item.product.brand.flagImportant %} ... {% endif %}
        {% for address in gift.item.product.brand.publicContacts %}
        {% endfor %}
        {% for category in gift.item.product.brand.categories %}
        {% endfor %}
        {% if gift.item.product.brand.code %}
                {{ gift.item.product.brand.code }}
        {% endif %}
        {% if gift.item.product.brand.web %}
                {{ gift.item.product.brand.web }}
        {% endif %}
        {% if gift.item.product.brand.text %}
                {{ gift.item.product.brand.text }}
        {% endif %}
        {% if gift.item.product.brand.image %}
        {% endif %}
        {% if gift.item.product.brand.seo %}
        {% endif %}
        {% if gift.item.product.brand.contentGrid %}
                {{ gift.item.product.brand.contentGrid }}
        {% endif %}
{% endif %}
{% if gift.item.product.image %}
        {{ gift.item.product.image.originalHeight }}
        {{ gift.item.product.image.originalWidth }}
        {{ gift.item.product.image.url }}
        {% if gift.item.product.image.alt %}
                {{ gift.item.product.image.alt }}
        {% endif %}
        {% if gift.item.product.image.text %}
                {{ gift.item.product.image.text }}
        {% endif %}
{% endif %}
{% if gift.item.product.imageForEnumValueId %}
        {{ gift.item.product.imageForEnumValueId.originalHeight }}
        {{ gift.item.product.imageForEnumValueId.originalWidth }}
        {{ gift.item.product.imageForEnumValueId.url }}
        {% if gift.item.product.imageForEnumValueId.alt %}
                {{ gift.item.product.imageForEnumValueId.alt }}
        {% endif %}
        {% if gift.item.product.imageForEnumValueId.text %}
                {{ gift.item.product.imageForEnumValueId.text }}
        {% endif %}
{% endif %}
{% if gift.item.product.successor %}
        {{ gift.item.product.successor.id }}
        {{ gift.item.product.successor.name }}
        {{ gift.item.product.successor.trackingId }}
        {{ gift.item.product.successor.dateCreated|date('d. m. Y H:i') }}
        {% if gift.item.product.successor.active %} ... {% endif %}
        {% if gift.item.product.successor.compared %} ... {% endif %}
        {% if gift.item.product.successor.differentVariantPrices %} ... {% endif %}
        {% if gift.item.product.successor.flagNew %} ... {% endif %}
        {% if gift.item.product.successor.flagPromo %} ... {% endif %}
        {% if gift.item.product.successor.flagSecondHand %} ... {% endif %}
        {% if gift.item.product.successor.flagSellout %} ... {% endif %}
        {% if gift.item.product.successor.otherDiscountApplicable %} ... {% endif %}
        {% if gift.item.product.successor.soldSeparately %} ... {% endif %}
        {% for address in gift.item.product.successor.publicContacts %}
        {% endfor %}
        {% for attributeInstance in gift.item.product.successor.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in gift.item.product.successor.availableUpsellGroups %}
        {% endfor %}
        {% for category in gift.item.product.successor.categories %}
        {% endfor %}
        {% for category in gift.item.product.successor.otherCategories %}
        {% endfor %}
        {% for file in gift.item.product.successor.files %}
        {% endfor %}
        {% for image in gift.item.product.successor.images %}
        {% endfor %}
        {% for image in gift.item.product.successor.imagesWithEnumValue %}
        {% endfor %}
        {% for image in gift.item.product.successor.images360 %}
        {% endfor %}
        {% for image in gift.item.product.successor.currentImages %}
        {% endfor %}
        {% for image in gift.item.product.successor.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in gift.item.product.successor.otherImages %}
        {% endfor %}
        {% for label in gift.item.product.successor.labels %}
        {% endfor %}
        {% for productDesigner in gift.item.product.successor.configurators %}
        {% endfor %}
        {% for productEnumValue in gift.item.product.successor.enumValues %}
        {% endfor %}
        {% for product in gift.item.product.successor.packTemplateProducts %}
        {% endfor %}
        {% for upsell in gift.item.product.successor.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in gift.item.product.successor.variantChoiceSteps %}
        {% endfor %}
        {% for variant in gift.item.product.successor.currentVariants %}
        {% endfor %}
        {% for variant in gift.item.product.successor.variants %}
        {% endfor %}
        {% for variant in gift.item.product.successor.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in gift.item.product.successor.videos %}
        {% endfor %}
        {{ gift.item.product.successor.trackingIds }}
        {% if gift.item.product.successor.currentSubName %}
                {{ gift.item.product.successor.currentSubName }}
        {% endif %}
        {% if gift.item.product.successor.nameSuffix %}
                {{ gift.item.product.successor.nameSuffix }}
        {% endif %}
        {% if gift.item.product.successor.nameSupplier %}
                {{ gift.item.product.successor.nameSupplier }}
        {% endif %}
        {% if gift.item.product.successor.text %}
                {{ gift.item.product.successor.text }}
        {% endif %}
        {% if gift.item.product.successor.attribute %}
        {% endif %}
        {% if gift.item.product.successor.brand %}
        {% endif %}
        {% if gift.item.product.successor.image %}
        {% endif %}
        {% if gift.item.product.successor.imageForEnumValueId %}
        {% endif %}
        {% if gift.item.product.successor.seo %}
        {% endif %}
        {% if gift.item.product.successor.supplier %}
        {% endif %}
        {% if gift.item.product.successor.unit %}
        {% endif %}
        {% if gift.item.product.successor.variant %}
        {% endif %}
        {% if gift.item.product.successor.warranty %}
        {% endif %}
        {% if gift.item.product.successor.contentGrid %}
                {{ gift.item.product.successor.contentGrid }}
        {% endif %}
{% endif %}
{% if gift.item.product.seo %}
        {% if gift.item.product.seo.description %}
                {{ gift.item.product.seo.description }}
        {% endif %}
        {% if gift.item.product.seo.keywords %}
                {{ gift.item.product.seo.keywords }}
        {% endif %}
        {% if gift.item.product.seo.title %}
                {{ gift.item.product.seo.title }}
        {% endif %}
{% endif %}
{% if gift.item.product.supplier %}
        {{ gift.item.product.supplier.id }}
        {{ gift.item.product.supplier.name }}
        {% for address in gift.item.product.supplier.publicContacts %}
        {% endfor %}
{% endif %}
{% if gift.item.product.unit %}
        {{ gift.item.product.unit.name }}
{% endif %}
{% if gift.item.product.variant %}
        {{ gift.item.product.variant.id }}
        {{ gift.item.product.variant.name }}
        {{ gift.item.product.variant.trackingId }}
        {% if gift.item.product.variant.active %} ... {% endif %}
        {% if gift.item.product.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in gift.item.product.variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in gift.item.product.variant.enumValues %}
        {% endfor %}
        {% for image in gift.item.product.variant.images %}
        {% endfor %}
        {% for upsell in gift.item.product.variant.availableUpsells %}
        {% endfor %}
        {% if gift.item.product.variant.legacyRel %}
                {{ gift.item.product.variant.legacyRel }}
        {% endif %}
        {% if gift.item.product.variant.image %}
        {% endif %}
{% endif %}
{% if gift.item.product.warranty %}
        {{ gift.item.product.warranty.months }}
{% endif %}
{% if gift.item.product.contentGrid %}
        {{ gift.item.product.contentGrid }}
{% endif %}
{% for upsell in gift.item.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {{ upsell.category.id }}
        {{ upsell.category.productCount }}
        {{ upsell.category.productInStockCount }}
        {{ upsell.category.totalStockQuantity }}
        {{ upsell.category.headline }}
        {{ upsell.category.menuName }}
        {{ upsell.category.name }}
        {% if upsell.category.flagErotic %} ... {% endif %}
        {% if upsell.category.flagImportant %} ... {% endif %}
        {% if upsell.category.noFollow %} ... {% endif %}
        {% for category in upsell.category.subcategories %}
        {% endfor %}
        {% for video in upsell.category.videos %}
        {% endfor %}
        {{ upsell.category.pathNames }}
        {{ upsell.category.pathIds }}
        {{ upsell.category.templateAttribute }}
        {% if upsell.category.subHeadline %}
                {{ upsell.category.subHeadline }}
        {% endif %}
        {% if upsell.category.text %}
                {{ upsell.category.text }}
        {% endif %}
        {% if upsell.category.parent %}
        {% endif %}
        {% if upsell.category.image %}
        {% endif %}
        {% if upsell.category.contentGrid %}
                {{ upsell.category.contentGrid }}
        {% endif %}
        {{ upsell.price.vatRate }}
        {% if upsell.price.discountPercent %}
                {{ upsell.price.discountPercent }}
        {% endif %}
        {% if upsell.price.discountValidTo %}
                {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if upsell.price.beforeDiscount %}
        {% endif %}
        {% if upsell.price.discount %}
        {% endif %}
        {{ upsell.product.id }}
        {{ upsell.product.name }}
        {{ upsell.product.trackingId }}
        {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
        {% if upsell.product.active %} ... {% endif %}
        {% if upsell.product.compared %} ... {% endif %}
        {% if upsell.product.differentVariantPrices %} ... {% endif %}
        {% if upsell.product.flagNew %} ... {% endif %}
        {% if upsell.product.flagPromo %} ... {% endif %}
        {% if upsell.product.flagSecondHand %} ... {% endif %}
        {% if upsell.product.flagSellout %} ... {% endif %}
        {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
        {% if upsell.product.soldSeparately %} ... {% endif %}
        {% for address in upsell.product.publicContacts %}
        {% endfor %}
        {% for attributeInstance in upsell.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in upsell.product.categories %}
        {% endfor %}
        {% for category in upsell.product.otherCategories %}
        {% endfor %}
        {% for file in upsell.product.files %}
        {% endfor %}
        {% for image in upsell.product.images %}
        {% endfor %}
        {% for image in upsell.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in upsell.product.images360 %}
        {% endfor %}
        {% for image in upsell.product.currentImages %}
        {% endfor %}
        {% for image in upsell.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in upsell.product.otherImages %}
        {% endfor %}
        {% for label in upsell.product.labels %}
        {% endfor %}
        {% for productDesigner in upsell.product.configurators %}
        {% endfor %}
        {% for productEnumValue in upsell.product.enumValues %}
        {% endfor %}
        {% for product in upsell.product.packTemplateProducts %}
        {% endfor %}
        {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in upsell.product.currentVariants %}
        {% endfor %}
        {% for variant in upsell.product.variants %}
        {% endfor %}
        {% for variant in upsell.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in upsell.product.videos %}
        {% endfor %}
        {{ upsell.product.trackingIds }}
        {% if upsell.product.currentSubName %}
                {{ upsell.product.currentSubName }}
        {% endif %}
        {% if upsell.product.nameSuffix %}
                {{ upsell.product.nameSuffix }}
        {% endif %}
        {% if upsell.product.nameSupplier %}
                {{ upsell.product.nameSupplier }}
        {% endif %}
        {% if upsell.product.text %}
                {{ upsell.product.text }}
        {% endif %}
        {% if upsell.product.attribute %}
        {% endif %}
        {% if upsell.product.brand %}
        {% endif %}
        {% if upsell.product.image %}
        {% endif %}
        {% if upsell.product.imageForEnumValueId %}
        {% endif %}
        {% if upsell.product.successor %}
        {% endif %}
        {% if upsell.product.seo %}
        {% endif %}
        {% if upsell.product.supplier %}
        {% endif %}
        {% if upsell.product.unit %}
        {% endif %}
        {% if upsell.product.variant %}
        {% endif %}
        {% if upsell.product.warranty %}
        {% endif %}
        {% if upsell.product.contentGrid %}
                {{ upsell.product.contentGrid }}
        {% endif %}
        {{ upsell.group.id }}
        {{ upsell.group.requiredNoteMaximumLength }}
        {{ upsell.group.name }}
        {% if upsell.group.requiredNote %} ... {% endif %}
        {% if upsell.group.requiredUpload %} ... {% endif %}
        {% if upsell.group.singleSelection %} ... {% endif %}
        {% if upsell.group.text %}
                {{ upsell.group.text }}
        {% endif %}
        {% if upsell.group.uploadInput %}
                {{ upsell.group.uploadInput }}
        {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
                {{ upsell.image.originalHeight }}
                {{ upsell.image.originalWidth }}
                {{ upsell.image.url }}
                {% if upsell.image.alt %}
                        {{ upsell.image.alt }}
                {% endif %}
                {% if upsell.image.text %}
                        {{ upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.unit %}
                {{ upsell.unit.name }}
        {% endif %}
{% endfor %}
{{ gift.item.trackingIds }}
{{ gift.item.storageLocations }}
{% if gift.item.packageWeight %}
        {{ gift.item.packageWeight }}
{% endif %}
{% if gift.item.code %}
        {{ gift.item.code }}
{% endif %}
{% if gift.item.packageHeight %}
        {{ gift.item.packageHeight }}
{% endif %}
{% if gift.item.packageLength %}
        {{ gift.item.packageLength }}
{% endif %}
{% if gift.item.packageWidth %}
        {{ gift.item.packageWidth }}
{% endif %}
{% if gift.item.bundle %}
        {% if gift.item.bundle.multiPack %} ... {% endif %}
        {% if gift.item.bundle.price %}
                {{ gift.item.bundle.price.vatRate }}
                {% if gift.item.bundle.price.discountPercent %}
                        {{ gift.item.bundle.price.discountPercent }}
                {% endif %}
                {% if gift.item.bundle.price.discountValidTo %}
                        {{ gift.item.bundle.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if gift.item.bundle.price.beforeDiscount %}
                {% endif %}
                {% if gift.item.bundle.price.discount %}
                {% endif %}
        {% endif %}
{% endif %}
{% if gift.item.cheapestDelivery %}
        {{ gift.item.cheapestDelivery.inputId }}
        {{ gift.item.cheapestDelivery.name }}
        {{ gift.item.cheapestDelivery.vatRate }}
        {% if gift.item.cheapestDelivery.branchRequired %} ... {% endif %}
        {% if gift.item.cheapestDelivery.currier %} ... {% endif %}
        {% if gift.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
        {% if gift.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
        {% if gift.item.cheapestDelivery.digital %} ... {% endif %}
        {% if gift.item.cheapestDelivery.free %} ... {% endif %}
        {% if gift.item.cheapestDelivery.pickup %} ... {% endif %}
        {% if gift.item.cheapestDelivery.selected %} ... {% endif %}
        {{ gift.item.cheapestDelivery.price.vatRate }}
        {% if gift.item.cheapestDelivery.price.discountPercent %}
                {{ gift.item.cheapestDelivery.price.discountPercent }}
        {% endif %}
        {% if gift.item.cheapestDelivery.price.discountValidTo %}
                {{ gift.item.cheapestDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if gift.item.cheapestDelivery.price.beforeDiscount %}
        {% endif %}
        {% if gift.item.cheapestDelivery.price.discount %}
        {% endif %}
        {% if gift.item.cheapestDelivery.text %}
                {{ gift.item.cheapestDelivery.text }}
        {% endif %}
        {% if gift.item.cheapestDelivery.branch %}
                {{ gift.item.cheapestDelivery.branch.code }}
                {{ gift.item.cheapestDelivery.branch.name }}
        {% endif %}
        {% if gift.item.cheapestDelivery.carrier %}
                {{ gift.item.cheapestDelivery.carrier.code }}
                {{ gift.item.cheapestDelivery.carrier.name }}
        {% endif %}
        {% if gift.item.cheapestDelivery.deliveryDate %}
                {{ gift.item.cheapestDelivery.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ gift.item.cheapestDelivery.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ gift.item.cheapestDelivery.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if gift.item.cheapestDelivery.deliveryDate.timeDelivered %}
                        {{ gift.item.cheapestDelivery.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if gift.item.cheapestDelivery.packageType %}
                {{ gift.item.cheapestDelivery.packageType.code }}
        {% endif %}
        {% if gift.item.cheapestDelivery.image %}
                {{ gift.item.cheapestDelivery.image.originalHeight }}
                {{ gift.item.cheapestDelivery.image.originalWidth }}
                {{ gift.item.cheapestDelivery.image.url }}
                {% if gift.item.cheapestDelivery.image.alt %}
                        {{ gift.item.cheapestDelivery.image.alt }}
                {% endif %}
                {% if gift.item.cheapestDelivery.image.text %}
                        {{ gift.item.cheapestDelivery.image.text }}
                {% endif %}
        {% endif %}
{% endif %}
{% if gift.item.freeDelivery %}
        {{ gift.item.freeDelivery.name }}
        {{ gift.item.freeDelivery.vatRate }}
        {% if gift.item.freeDelivery.deliveryAddressRequired %} ... {% endif %}
        {{ gift.item.freeDelivery.payment.inputId }}
        {{ gift.item.freeDelivery.payment.name }}
        {{ gift.item.freeDelivery.payment.url }}
        {{ gift.item.freeDelivery.payment.vatRate }}
        {% if gift.item.freeDelivery.payment.free %} ... {% endif %}
        {% if gift.item.freeDelivery.payment.inAdvance %} ... {% endif %}
        {% if gift.item.freeDelivery.payment.selected %} ... {% endif %}
        {% if gift.item.freeDelivery.payment.code %}
                {{ gift.item.freeDelivery.payment.code }}
        {% endif %}
        {% if gift.item.freeDelivery.payment.vs %}
                {{ gift.item.freeDelivery.payment.vs }}
        {% endif %}
        {% if gift.item.freeDelivery.payment.qRCodeHTML %}
                {{ gift.item.freeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if gift.item.freeDelivery.payment.text %}
                {{ gift.item.freeDelivery.payment.text }}
        {% endif %}
        {% if gift.item.freeDelivery.payment.bankAccount %}
        {% endif %}
        {% if gift.item.freeDelivery.payment.image %}
        {% endif %}
        {{ gift.item.freeDelivery.transport.inputId }}
        {{ gift.item.freeDelivery.transport.name }}
        {{ gift.item.freeDelivery.transport.vatRate }}
        {% if gift.item.freeDelivery.transport.branchRequired %} ... {% endif %}
        {% if gift.item.freeDelivery.transport.currier %} ... {% endif %}
        {% if gift.item.freeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if gift.item.freeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if gift.item.freeDelivery.transport.digital %} ... {% endif %}
        {% if gift.item.freeDelivery.transport.free %} ... {% endif %}
        {% if gift.item.freeDelivery.transport.pickup %} ... {% endif %}
        {% if gift.item.freeDelivery.transport.selected %} ... {% endif %}
        {% if gift.item.freeDelivery.transport.text %}
                {{ gift.item.freeDelivery.transport.text }}
        {% endif %}
        {% if gift.item.freeDelivery.transport.branch %}
        {% endif %}
        {% if gift.item.freeDelivery.transport.carrier %}
        {% endif %}
        {% if gift.item.freeDelivery.transport.deliveryDate %}
        {% endif %}
        {% if gift.item.freeDelivery.transport.packageType %}
        {% endif %}
        {% if gift.item.freeDelivery.transport.image %}
        {% endif %}
        {{ gift.item.freeDelivery.price.vatRate }}
        {% if gift.item.freeDelivery.price.discountPercent %}
                {{ gift.item.freeDelivery.price.discountPercent }}
        {% endif %}
        {% if gift.item.freeDelivery.price.discountValidTo %}
                {{ gift.item.freeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if gift.item.freeDelivery.price.beforeDiscount %}
        {% endif %}
        {% if gift.item.freeDelivery.price.discount %}
        {% endif %}
        {% if gift.item.freeDelivery.id %}
                {{ gift.item.freeDelivery.id }}
        {% endif %}
        {% if gift.item.freeDelivery.freeLimit %}
                {{ gift.item.freeDelivery.freeLimit.percent }}
        {% endif %}
{% endif %}
{% if gift.item.closestFreeDelivery %}
        {{ gift.item.closestFreeDelivery.name }}
        {{ gift.item.closestFreeDelivery.vatRate }}
        {% if gift.item.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
        {{ gift.item.closestFreeDelivery.payment.inputId }}
        {{ gift.item.closestFreeDelivery.payment.name }}
        {{ gift.item.closestFreeDelivery.payment.url }}
        {{ gift.item.closestFreeDelivery.payment.vatRate }}
        {% if gift.item.closestFreeDelivery.payment.free %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.payment.selected %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.payment.code %}
                {{ gift.item.closestFreeDelivery.payment.code }}
        {% endif %}
        {% if gift.item.closestFreeDelivery.payment.vs %}
                {{ gift.item.closestFreeDelivery.payment.vs }}
        {% endif %}
        {% if gift.item.closestFreeDelivery.payment.qRCodeHTML %}
                {{ gift.item.closestFreeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if gift.item.closestFreeDelivery.payment.text %}
                {{ gift.item.closestFreeDelivery.payment.text }}
        {% endif %}
        {% if gift.item.closestFreeDelivery.payment.bankAccount %}
        {% endif %}
        {% if gift.item.closestFreeDelivery.payment.image %}
        {% endif %}
        {{ gift.item.closestFreeDelivery.transport.inputId }}
        {{ gift.item.closestFreeDelivery.transport.name }}
        {{ gift.item.closestFreeDelivery.transport.vatRate }}
        {% if gift.item.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.transport.currier %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.transport.digital %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.transport.free %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.transport.pickup %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.transport.selected %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.transport.text %}
                {{ gift.item.closestFreeDelivery.transport.text }}
        {% endif %}
        {% if gift.item.closestFreeDelivery.transport.branch %}
        {% endif %}
        {% if gift.item.closestFreeDelivery.transport.carrier %}
        {% endif %}
        {% if gift.item.closestFreeDelivery.transport.deliveryDate %}
        {% endif %}
        {% if gift.item.closestFreeDelivery.transport.packageType %}
        {% endif %}
        {% if gift.item.closestFreeDelivery.transport.image %}
        {% endif %}
        {{ gift.item.closestFreeDelivery.price.vatRate }}
        {% if gift.item.closestFreeDelivery.price.discountPercent %}
                {{ gift.item.closestFreeDelivery.price.discountPercent }}
        {% endif %}
        {% if gift.item.closestFreeDelivery.price.discountValidTo %}
                {{ gift.item.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if gift.item.closestFreeDelivery.price.beforeDiscount %}
        {% endif %}
        {% if gift.item.closestFreeDelivery.price.discount %}
        {% endif %}
        {% if gift.item.closestFreeDelivery.id %}
                {{ gift.item.closestFreeDelivery.id }}
        {% endif %}
        {% if gift.item.closestFreeDelivery.freeLimit %}
                {{ gift.item.closestFreeDelivery.freeLimit.percent }}
        {% endif %}
{% endif %}
{% if gift.item.packageDimensions %}
        {{ gift.item.packageDimensions }}
        {{ gift.item.packageDimensions.unit }}
        {{ gift.item.packageDimensions.height }}
        {{ gift.item.packageDimensions.length }}
        {{ gift.item.packageDimensions.width }}
{% endif %}
{% if gift.item.image %}
        {{ gift.item.image.originalHeight }}
        {{ gift.item.image.originalWidth }}
        {{ gift.item.image.url }}
        {% if gift.item.image.alt %}
                {{ gift.item.image.alt }}
        {% endif %}
        {% if gift.item.image.text %}
                {{ gift.item.image.text }}
        {% endif %}
{% endif %}
{% if gift.item.price %}
        {{ gift.item.price.vatRate }}
        {{ gift.item.price.current.currency }}
        {{ gift.item.price.current.formatted }}
        {{ gift.item.price.current.value }}
        {% if gift.item.price.current.perUnit %}
        {% endif %}
        {% if gift.item.price.discountPercent %}
                {{ gift.item.price.discountPercent }}
        {% endif %}
        {% if gift.item.price.discountValidTo %}
                {{ gift.item.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if gift.item.price.beforeDiscount %}
                {{ gift.item.price.beforeDiscount.currency }}
                {{ gift.item.price.beforeDiscount.formatted }}
                {{ gift.item.price.beforeDiscount.value }}
                {% if gift.item.price.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if gift.item.price.discount %}
                {{ gift.item.price.discount.currency }}
                {{ gift.item.price.discount.formatted }}
                {{ gift.item.price.discount.value }}
                {% if gift.item.price.discount.perUnit %}
                {% endif %}
        {% endif %}
{% endif %}
{% if gift.item.url %}
        {{ gift.item.url }}
        {{ gift.item.url.absolute }}
        {{ gift.item.url.path }}
{% endif %}
{% if gift.item.variant %}
        {{ gift.item.variant.id }}
        {{ gift.item.variant.name }}
        {{ gift.item.variant.trackingId }}
        {% if gift.item.variant.active %} ... {% endif %}
        {% if gift.item.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in gift.item.variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in gift.item.variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in gift.item.variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ gift.item.variant.product.id }}
        {{ gift.item.variant.product.name }}
        {{ gift.item.variant.product.trackingId }}
        {{ gift.item.variant.product.dateCreated|date('d. m. Y H:i') }}
        {% if gift.item.variant.product.active %} ... {% endif %}
        {% if gift.item.variant.product.compared %} ... {% endif %}
        {% if gift.item.variant.product.differentVariantPrices %} ... {% endif %}
        {% if gift.item.variant.product.flagNew %} ... {% endif %}
        {% if gift.item.variant.product.flagPromo %} ... {% endif %}
        {% if gift.item.variant.product.flagSecondHand %} ... {% endif %}
        {% if gift.item.variant.product.flagSellout %} ... {% endif %}
        {% if gift.item.variant.product.otherDiscountApplicable %} ... {% endif %}
        {% if gift.item.variant.product.soldSeparately %} ... {% endif %}
        {% for address in gift.item.variant.product.publicContacts %}
        {% endfor %}
        {% for attributeInstance in gift.item.variant.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in gift.item.variant.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in gift.item.variant.product.categories %}
        {% endfor %}
        {% for category in gift.item.variant.product.otherCategories %}
        {% endfor %}
        {% for file in gift.item.variant.product.files %}
        {% endfor %}
        {% for image in gift.item.variant.product.images %}
        {% endfor %}
        {% for image in gift.item.variant.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in gift.item.variant.product.images360 %}
        {% endfor %}
        {% for image in gift.item.variant.product.currentImages %}
        {% endfor %}
        {% for image in gift.item.variant.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in gift.item.variant.product.otherImages %}
        {% endfor %}
        {% for label in gift.item.variant.product.labels %}
        {% endfor %}
        {% for productDesigner in gift.item.variant.product.configurators %}
        {% endfor %}
        {% for productEnumValue in gift.item.variant.product.enumValues %}
        {% endfor %}
        {% for product in gift.item.variant.product.packTemplateProducts %}
        {% endfor %}
        {% for upsell in gift.item.variant.product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in gift.item.variant.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in gift.item.variant.product.currentVariants %}
        {% endfor %}
        {% for variant in gift.item.variant.product.variants %}
        {% endfor %}
        {% for variant in gift.item.variant.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in gift.item.variant.product.videos %}
        {% endfor %}
        {{ gift.item.variant.product.trackingIds }}
        {% if gift.item.variant.product.currentSubName %}
                {{ gift.item.variant.product.currentSubName }}
        {% endif %}
        {% if gift.item.variant.product.nameSuffix %}
                {{ gift.item.variant.product.nameSuffix }}
        {% endif %}
        {% if gift.item.variant.product.nameSupplier %}
                {{ gift.item.variant.product.nameSupplier }}
        {% endif %}
        {% if gift.item.variant.product.text %}
                {{ gift.item.variant.product.text }}
        {% endif %}
        {% if gift.item.variant.product.attribute %}
        {% endif %}
        {% if gift.item.variant.product.brand %}
        {% endif %}
        {% if gift.item.variant.product.image %}
        {% endif %}
        {% if gift.item.variant.product.imageForEnumValueId %}
        {% endif %}
        {% if gift.item.variant.product.successor %}
        {% endif %}
        {% if gift.item.variant.product.seo %}
        {% endif %}
        {% if gift.item.variant.product.supplier %}
        {% endif %}
        {% if gift.item.variant.product.unit %}
        {% endif %}
        {% if gift.item.variant.product.warranty %}
        {% endif %}
        {% if gift.item.variant.product.contentGrid %}
                {{ gift.item.variant.product.contentGrid }}
        {% endif %}
        {% for upsell in gift.item.variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ gift.item.variant.url }}
        {{ gift.item.variant.url.absolute }}
        {{ gift.item.variant.url.path }}
        {% if gift.item.variant.legacyRel %}
                {{ gift.item.variant.legacyRel }}
        {% endif %}
        {% if gift.item.variant.image %}
                {{ gift.item.variant.image.originalHeight }}
                {{ gift.item.variant.image.originalWidth }}
                {{ gift.item.variant.image.url }}
                {% if gift.item.variant.image.alt %}
                        {{ gift.item.variant.image.alt }}
                {% endif %}
                {% if gift.item.variant.image.text %}
                        {{ gift.item.variant.image.text }}
                {% endif %}
        {% endif %}
{% endif %}

{% if gift.image %}
        {{ gift.image.originalHeight }}
        {{ gift.image.originalWidth }}
        {{ gift.image.url }}
        {% if gift.image.alt %}
                {{ gift.image.alt }}
        {% endif %}
        {% if gift.image.text %}
                {{ gift.image.text }}
        {% endif %}
{% endif %}

Image

Obrázky pokud možno nikdy nevypisujeme přes <img src=, ale vždy přes pomocný tag <i:img, který rovnou řeší retina displeje a responzivitu.

Pokud obrázek neexistuje, tak se zobrazí chybový dle nastavení v administraci - zda existuje lze zjistit atributem „exists“ a případně ho na webu vůbec nevypisovat. Pokud má objekt více obrázků (například galerie), tak budou vždy všechny existovat a kontrola není potřeba.

Attributy objektu Image

Název

Typ

Popis

originalHeight

int

Výška (px) originálu fotky

originalWidth

int

Šířka (px) originálu fotky

url

string

URL obrázku podle parametrů (pouze pro background-image!)

alt

string | null

Popis obrázku nebo název související položky

text

string | null

Popis obrázku

Příklady:

{{ image.originalHeight }}
{{ image.originalWidth }}
{{ image.url }}

{% if image.alt %}
        {{ image.alt }}
{% endif %}

{% if image.text %}
        {{ image.text }}
{% endif %}

Invoice

Attributy objektu Invoice

Název

Typ

Popis

id

int

Id

code

string

Kód

Příklady:

{{ invoice.id }}
{{ invoice.code }}

Item

Attributy objektu Item

Název

Typ

Popis

cartAmountRequiredMultiplier

int

Do košíku lze přidávat pouze v násobcích kusů

id

int

Id

loyaltyPointsAmount

int

Počet věrnostních bodů za nákup položky

name

string

Název

trackingId

string

ID používané ve feedech a měřících skriptech

digital

bool

Digitální položka?

sellable

bool

Je prodejné? (zobrazit vložení do košíku?)

service

bool

Je položka služba? (neskladová položka)

availability

Availability

Dostupnost

availableUpsellGroups

AvailableUpsellGroup[]

Dostupné skupiny upsellu

product

Product

Produkt

availableUpsells

Upsell[]

Dostupné položky pro upsell

trackingIds

array

ID používané ve feedech a měřících skriptech (produkt a varianta)

storageLocations

array

Skladové pozice

packageWeight

int | null

Váha balení (g)

code

string | null

Kód

packageHeight

float | null

Výška balení (cm)

packageLength

float | null

Délka balení (cm)

packageWidth

float | null

Šířka balení (cm)

bundle

Bundle | null

Komplet

cheapestDelivery

Delivery/Transport | null

Nejlevnější přeprava (nezohledňuje košík a osobní odběr)

freeDelivery

Delivery | null

Je dodání zdarma? (a jaké)

closestFreeDelivery

Delivery | null

Nejbližší dostupná doprava zdarma

packageDimensions

Dimensions | null

Rozměry balení

image

Image | null

Obrázek

price

Price | null

Cena položky

url

Url | null

Url produktu/varianty

variant

Variant | null

Varianta

Příklady:

{{ item.cartAmountRequiredMultiplier }}
{{ item.id }}
{{ item.loyaltyPointsAmount }}
{{ item.name }}
{{ item.trackingId }}
{% if item.digital %} ... {% endif %}
{% if item.sellable %} ... {% endif %}
{% if item.service %} ... {% endif %}
{{ item.availability.availableAmount }}
{{ item.availability.availableAmountExpectedToStorageRoom }}
{{ item.availability.availableAmountInShowroom }}
{{ item.availability.availableAmountInStockroom }}
{{ item.availability.availableAmountInStorageCenter }}
{{ item.availability.availableAmountOnWayToStorageRoom }}
{{ item.availability.availableDemandsAmountFromSupplierToStorageRoom }}
{{ item.availability.hours }}
{{ item.availability.totalAmount }}
{% if item.availability.inShowroom %} ... {% endif %}
{% if item.availability.inStock %} ... {% endif %}
{% if item.availability.preorder %} ... {% endif %}
{% if item.availability.watchdogSupported %} ... {% endif %}
{% for deliveryOption in item.availability.deliveryOptions %}
        {{ deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {{ deliveryOption.transport.inputId }}
        {{ deliveryOption.transport.name }}
        {{ deliveryOption.transport.vatRate }}
        {% if deliveryOption.transport.branchRequired %} ... {% endif %}
        {% if deliveryOption.transport.currier %} ... {% endif %}
        {% if deliveryOption.transport.dateGuaranteed %} ... {% endif %}
        {% if deliveryOption.transport.deliveryToAddress %} ... {% endif %}
        {% if deliveryOption.transport.digital %} ... {% endif %}
        {% if deliveryOption.transport.free %} ... {% endif %}
        {% if deliveryOption.transport.pickup %} ... {% endif %}
        {% if deliveryOption.transport.selected %} ... {% endif %}
        {% if deliveryOption.transport.text %}
                {{ deliveryOption.transport.text }}
        {% endif %}
        {% if deliveryOption.transport.branch %}
        {% endif %}
        {% if deliveryOption.transport.carrier %}
        {% endif %}
        {% if deliveryOption.transport.deliveryDate %}
        {% endif %}
        {% if deliveryOption.transport.packageType %}
        {% endif %}
        {% if deliveryOption.transport.image %}
        {% endif %}
        {% if deliveryOption.timeDelivered %}
                {{ deliveryOption.timeDelivered }}
        {% endif %}
{% endfor %}
{% for expectedAmount in item.availability.availableAmountsExpectedToStorageRoom %}
        {{ expectedAmount.amount }}
        {{ expectedAmount.sourceStorageRoom.name }}
        {% if expectedAmount.sourceStorageRoom.doesSupportLocations %} ... {% endif %}
{% endfor %}
{% for expectedAmount in item.availability.availableAmountsOnWayToStorageRoom %}
        {{ expectedAmount.amount }}
        {{ expectedAmount.sourceStorageRoom.name }}
        {% if expectedAmount.sourceStorageRoom.doesSupportLocations %} ... {% endif %}
{% endfor %}
{% for expectedSupplierAmount in item.availability.availableDemandsFromSupplierToStorageRoom %}
        {{ expectedSupplierAmount.amount }}
        {{ expectedSupplierAmount.sourceStorageCenter.name }}
        {% for storageRoom in expectedSupplierAmount.sourceStorageCenter.storageRooms %}
        {% endfor %}
        {% if expectedSupplierAmount.sourceStorageCenter.shortName %}
                {{ expectedSupplierAmount.sourceStorageCenter.shortName }}
        {% endif %}
        {% if expectedSupplierAmount.sourceStorageCenter.address %}
        {% endif %}
        {% if expectedSupplierAmount.expectedDate %}
                {{ expectedSupplierAmount.expectedDate|date('d. m. Y H:i') }}
        {% endif %}
        {% if expectedSupplierAmount.orderDate %}
                {{ expectedSupplierAmount.orderDate|date('d. m. Y H:i') }}
        {% endif %}
{% endfor %}
{% if item.availability.text %}
        {{ item.availability.text }}
{% endif %}
{% if item.availability.dateExpected %}
        {{ item.availability.dateExpected|date('d. m. Y H:i') }}
{% endif %}
{% if item.availability.deliveryOption %}
        {{ item.availability.deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ item.availability.deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ item.availability.deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {{ item.availability.deliveryOption.transport.inputId }}
        {{ item.availability.deliveryOption.transport.name }}
        {{ item.availability.deliveryOption.transport.vatRate }}
        {% if item.availability.deliveryOption.transport.branchRequired %} ... {% endif %}
        {% if item.availability.deliveryOption.transport.currier %} ... {% endif %}
        {% if item.availability.deliveryOption.transport.dateGuaranteed %} ... {% endif %}
        {% if item.availability.deliveryOption.transport.deliveryToAddress %} ... {% endif %}
        {% if item.availability.deliveryOption.transport.digital %} ... {% endif %}
        {% if item.availability.deliveryOption.transport.free %} ... {% endif %}
        {% if item.availability.deliveryOption.transport.pickup %} ... {% endif %}
        {% if item.availability.deliveryOption.transport.selected %} ... {% endif %}
        {% if item.availability.deliveryOption.transport.text %}
                {{ item.availability.deliveryOption.transport.text }}
        {% endif %}
        {% if item.availability.deliveryOption.transport.branch %}
        {% endif %}
        {% if item.availability.deliveryOption.transport.carrier %}
        {% endif %}
        {% if item.availability.deliveryOption.transport.deliveryDate %}
        {% endif %}
        {% if item.availability.deliveryOption.transport.packageType %}
        {% endif %}
        {% if item.availability.deliveryOption.transport.image %}
        {% endif %}
        {% if item.availability.deliveryOption.timeDelivered %}
                {{ item.availability.deliveryOption.timeDelivered }}
        {% endif %}
{% endif %}

{% for availableUpsellGroup in item.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathNames }}
                {{ upsell.category.pathIds }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for address in upsell.product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productDesigner in upsell.product.configurators %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in upsell.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{{ item.product.id }}
{{ item.product.name }}
{{ item.product.trackingId }}
{{ item.product.dateCreated|date('d. m. Y H:i') }}
{% if item.product.active %} ... {% endif %}
{% if item.product.compared %} ... {% endif %}
{% if item.product.differentVariantPrices %} ... {% endif %}
{% if item.product.flagNew %} ... {% endif %}
{% if item.product.flagPromo %} ... {% endif %}
{% if item.product.flagSecondHand %} ... {% endif %}
{% if item.product.flagSellout %} ... {% endif %}
{% if item.product.otherDiscountApplicable %} ... {% endif %}
{% if item.product.soldSeparately %} ... {% endif %}
{% for address in item.product.publicContacts %}
        {{ address.name }}
        {% if address.name.first %}
                {{ address.name.first }}
        {% endif %}
        {% if address.name.last %}
                {{ address.name.last }}
        {% endif %}
        {% if address.city %}
                {{ address.city }}
        {% endif %}
        {% if address.company %}
                {{ address.company }}
        {% endif %}
        {% if address.companyId %}
                {{ address.companyId }}
        {% endif %}
        {% if address.email %}
                {{ address.email }}
        {% endif %}
        {% if address.phone %}
                {{ address.phone }}
        {% endif %}
        {% if address.region %}
                {{ address.region }}
        {% endif %}
        {% if address.street %}
                {{ address.street }}
        {% endif %}
        {% if address.vatId %}
                {{ address.vatId }}
        {% endif %}
        {% if address.web %}
                {{ address.web }}
        {% endif %}
        {% if address.zip %}
                {{ address.zip }}
        {% endif %}
        {% if address.purpose %}
                {{ address.purpose.headline }}
        {% endif %}
        {% if address.country %}
                {{ address.country.code }}
                {{ address.country.flagCircleUrl }}
                {{ address.country.flagUrl }}
                {{ address.country.name }}
                {% if address.country.eU %} ... {% endif %}
        {% endif %}
{% endfor %}
{% for attributeInstance in item.product.attributes %}
        {{ attributeInstance.name }}
        {{ attributeInstance.valuesHtml }}
        {% for attributeValueInstance in attributeInstance.values %}
                {{ attributeValueInstance.values }}
                {{ attributeValueInstance.nameHtml }}
                {% if attributeValueInstance.colorCode %}
                        {{ attributeValueInstance.colorCode }}
                {% endif %}
                {% if attributeValueInstance.text %}
                        {{ attributeValueInstance.text }}
                {% endif %}
                {% if attributeValueInstance.unit %}
                        {{ attributeValueInstance.unit }}
                {% endif %}
                {% if attributeValueInstance.image %}
                {% endif %}
                {% if attributeValueInstance.name %}
                        {{ attributeValueInstance.name }}
                {% endif %}
        {% endfor %}
        {% if attributeInstance.description %}
                {{ attributeInstance.description }}
        {% endif %}
        {% if attributeInstance.group %}
                {{ attributeInstance.group.id }}
        {% endif %}
        {% if attributeInstance.image %}
                {{ attributeInstance.image.originalHeight }}
                {{ attributeInstance.image.originalWidth }}
                {{ attributeInstance.image.url }}
                {% if attributeInstance.image.alt %}
                        {{ attributeInstance.image.alt }}
                {% endif %}
                {% if attributeInstance.image.text %}
                        {{ attributeInstance.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for availableUpsellGroup in item.product.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{{ item.product.category.id }}
{{ item.product.category.productCount }}
{{ item.product.category.productInStockCount }}
{{ item.product.category.totalStockQuantity }}
{{ item.product.category.headline }}
{{ item.product.category.menuName }}
{{ item.product.category.name }}
{% if item.product.category.flagErotic %} ... {% endif %}
{% if item.product.category.flagImportant %} ... {% endif %}
{% if item.product.category.noFollow %} ... {% endif %}
{% for category in item.product.category.subcategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for video in category.videos %}
        {% endfor %}
        {{ category.pathNames }}
        {{ category.pathIds }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
        {% endif %}
        {% if category.image %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{{ item.product.category.url }}
{{ item.product.category.url.absolute }}
{{ item.product.category.url.path }}
{{ item.product.category.variantType.id }}
{{ item.product.category.variantType.name }}
{% for video in item.product.category.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
        {% endif %}
{% endfor %}
{{ item.product.category.pathNames }}
{{ item.product.category.pathIds }}
{{ item.product.category.templateAttribute }}
{% if item.product.category.subHeadline %}
        {{ item.product.category.subHeadline }}
{% endif %}
{% if item.product.category.text %}
        {{ item.product.category.text }}
{% endif %}
{% if item.product.category.parent %}
        {{ item.product.category.parent.id }}
        {{ item.product.category.parent.productCount }}
        {{ item.product.category.parent.productInStockCount }}
        {{ item.product.category.parent.totalStockQuantity }}
        {{ item.product.category.parent.headline }}
        {{ item.product.category.parent.menuName }}
        {{ item.product.category.parent.name }}
        {% if item.product.category.parent.flagErotic %} ... {% endif %}
        {% if item.product.category.parent.flagImportant %} ... {% endif %}
        {% if item.product.category.parent.noFollow %} ... {% endif %}
        {% for category in item.product.category.parent.subcategories %}
        {% endfor %}
        {% for video in item.product.category.parent.videos %}
        {% endfor %}
        {{ item.product.category.parent.pathNames }}
        {{ item.product.category.parent.pathIds }}
        {{ item.product.category.parent.templateAttribute }}
        {% if item.product.category.parent.subHeadline %}
                {{ item.product.category.parent.subHeadline }}
        {% endif %}
        {% if item.product.category.parent.text %}
                {{ item.product.category.parent.text }}
        {% endif %}
        {% if item.product.category.parent.image %}
        {% endif %}
        {% if item.product.category.parent.contentGrid %}
                {{ item.product.category.parent.contentGrid }}
        {% endif %}
{% endif %}
{% if item.product.category.image %}
        {{ item.product.category.image.originalHeight }}
        {{ item.product.category.image.originalWidth }}
        {{ item.product.category.image.url }}
        {% if item.product.category.image.alt %}
                {{ item.product.category.image.alt }}
        {% endif %}
        {% if item.product.category.image.text %}
                {{ item.product.category.image.text }}
        {% endif %}
{% endif %}
{% if item.product.category.contentGrid %}
        {{ item.product.category.contentGrid }}
{% endif %}
{% for category in item.product.categories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ category.pathNames }}
        {{ category.pathIds }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {% for category in category.parent.subcategories %}
                {% endfor %}
                {% for video in category.parent.videos %}
                {% endfor %}
                {{ category.parent.pathNames }}
                {{ category.parent.pathIds }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for category in item.product.otherCategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ category.pathNames }}
        {{ category.pathIds }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {% for category in category.parent.subcategories %}
                {% endfor %}
                {% for video in category.parent.videos %}
                {% endfor %}
                {{ category.parent.pathNames }}
                {{ category.parent.pathIds }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for file in item.product.files %}
        {{ file.bytes }}
        {{ file.url }}
        {% if file.usage.archive %} ... {% endif %}
        {% if file.usage.graphic %} ... {% endif %}
        {% if file.usage.manual %} ... {% endif %}
        {% if file.usage.other %} ... {% endif %}
        {% if file.usage.sound %} ... {% endif %}
        {% if file.usage.specification %} ... {% endif %}
        {% if file.mime %}
                {{ file.mime }}
        {% endif %}
        {% if file.name %}
                {{ file.name }}
        {% endif %}
{% endfor %}
{% for image in item.product.images %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in item.product.imagesWithEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in item.product.images360 %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in item.product.currentImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in item.product.imagesWithoutEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in item.product.otherImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{{ item.product.item.cartAmountRequiredMultiplier }}
{{ item.product.item.id }}
{{ item.product.item.loyaltyPointsAmount }}
{{ item.product.item.name }}
{{ item.product.item.trackingId }}
{% if item.product.item.digital %} ... {% endif %}
{% if item.product.item.sellable %} ... {% endif %}
{% if item.product.item.service %} ... {% endif %}
{{ item.product.item.availability.availableAmount }}
{{ item.product.item.availability.availableAmountExpectedToStorageRoom }}
{{ item.product.item.availability.availableAmountInShowroom }}
{{ item.product.item.availability.availableAmountInStockroom }}
{{ item.product.item.availability.availableAmountInStorageCenter }}
{{ item.product.item.availability.availableAmountOnWayToStorageRoom }}
{{ item.product.item.availability.availableDemandsAmountFromSupplierToStorageRoom }}
{{ item.product.item.availability.hours }}
{{ item.product.item.availability.totalAmount }}
{% if item.product.item.availability.inShowroom %} ... {% endif %}
{% if item.product.item.availability.inStock %} ... {% endif %}
{% if item.product.item.availability.preorder %} ... {% endif %}
{% if item.product.item.availability.watchdogSupported %} ... {% endif %}
{% for deliveryOption in item.product.item.availability.deliveryOptions %}
{% endfor %}
{% for expectedAmount in item.product.item.availability.availableAmountsExpectedToStorageRoom %}
{% endfor %}
{% for expectedAmount in item.product.item.availability.availableAmountsOnWayToStorageRoom %}
{% endfor %}
{% for expectedSupplierAmount in item.product.item.availability.availableDemandsFromSupplierToStorageRoom %}
{% endfor %}
{% if item.product.item.availability.text %}
        {{ item.product.item.availability.text }}
{% endif %}
{% if item.product.item.availability.dateExpected %}
        {{ item.product.item.availability.dateExpected|date('d. m. Y H:i') }}
{% endif %}
{% if item.product.item.availability.deliveryOption %}
{% endif %}
{% for availableUpsellGroup in item.product.item.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{% for upsell in item.product.item.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
        {% endif %}
        {% if upsell.unit %}
        {% endif %}
{% endfor %}
{{ item.product.item.trackingIds }}
{{ item.product.item.storageLocations }}
{% if item.product.item.packageWeight %}
        {{ item.product.item.packageWeight }}
{% endif %}
{% if item.product.item.code %}
        {{ item.product.item.code }}
{% endif %}
{% if item.product.item.packageHeight %}
        {{ item.product.item.packageHeight }}
{% endif %}
{% if item.product.item.packageLength %}
        {{ item.product.item.packageLength }}
{% endif %}
{% if item.product.item.packageWidth %}
        {{ item.product.item.packageWidth }}
{% endif %}
{% if item.product.item.bundle %}
        {% if item.product.item.bundle.multiPack %} ... {% endif %}
        {% if item.product.item.bundle.price %}
        {% endif %}
{% endif %}
{% if item.product.item.cheapestDelivery %}
        {{ item.product.item.cheapestDelivery.inputId }}
        {{ item.product.item.cheapestDelivery.name }}
        {{ item.product.item.cheapestDelivery.vatRate }}
        {% if item.product.item.cheapestDelivery.branchRequired %} ... {% endif %}
        {% if item.product.item.cheapestDelivery.currier %} ... {% endif %}
        {% if item.product.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
        {% if item.product.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
        {% if item.product.item.cheapestDelivery.digital %} ... {% endif %}
        {% if item.product.item.cheapestDelivery.free %} ... {% endif %}
        {% if item.product.item.cheapestDelivery.pickup %} ... {% endif %}
        {% if item.product.item.cheapestDelivery.selected %} ... {% endif %}
        {% if item.product.item.cheapestDelivery.text %}
                {{ item.product.item.cheapestDelivery.text }}
        {% endif %}
        {% if item.product.item.cheapestDelivery.branch %}
        {% endif %}
        {% if item.product.item.cheapestDelivery.carrier %}
        {% endif %}
        {% if item.product.item.cheapestDelivery.deliveryDate %}
        {% endif %}
        {% if item.product.item.cheapestDelivery.packageType %}
        {% endif %}
        {% if item.product.item.cheapestDelivery.image %}
        {% endif %}
{% endif %}
{% if item.product.item.freeDelivery %}
        {{ item.product.item.freeDelivery.name }}
        {{ item.product.item.freeDelivery.vatRate }}
        {% if item.product.item.freeDelivery.deliveryAddressRequired %} ... {% endif %}
        {% if item.product.item.freeDelivery.id %}
                {{ item.product.item.freeDelivery.id }}
        {% endif %}
        {% if item.product.item.freeDelivery.freeLimit %}
        {% endif %}
{% endif %}
{% if item.product.item.closestFreeDelivery %}
        {{ item.product.item.closestFreeDelivery.name }}
        {{ item.product.item.closestFreeDelivery.vatRate }}
        {% if item.product.item.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
        {% if item.product.item.closestFreeDelivery.id %}
                {{ item.product.item.closestFreeDelivery.id }}
        {% endif %}
        {% if item.product.item.closestFreeDelivery.freeLimit %}
        {% endif %}
{% endif %}
{% if item.product.item.packageDimensions %}
        {{ item.product.item.packageDimensions }}
        {{ item.product.item.packageDimensions.unit }}
        {{ item.product.item.packageDimensions.height }}
        {{ item.product.item.packageDimensions.length }}
        {{ item.product.item.packageDimensions.width }}
{% endif %}
{% if item.product.item.image %}
        {{ item.product.item.image.originalHeight }}
        {{ item.product.item.image.originalWidth }}
        {{ item.product.item.image.url }}
        {% if item.product.item.image.alt %}
                {{ item.product.item.image.alt }}
        {% endif %}
        {% if item.product.item.image.text %}
                {{ item.product.item.image.text }}
        {% endif %}
{% endif %}
{% if item.product.item.price %}
        {{ item.product.item.price.vatRate }}
        {% if item.product.item.price.discountPercent %}
                {{ item.product.item.price.discountPercent }}
        {% endif %}
        {% if item.product.item.price.discountValidTo %}
                {{ item.product.item.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.product.item.price.beforeDiscount %}
        {% endif %}
        {% if item.product.item.price.discount %}
        {% endif %}
{% endif %}
{% if item.product.item.url %}
        {{ item.product.item.url }}
        {{ item.product.item.url.absolute }}
        {{ item.product.item.url.path }}
{% endif %}
{% if item.product.item.variant %}
        {{ item.product.item.variant.id }}
        {{ item.product.item.variant.name }}
        {{ item.product.item.variant.trackingId }}
        {% if item.product.item.variant.active %} ... {% endif %}
        {% if item.product.item.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in item.product.item.variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in item.product.item.variant.enumValues %}
        {% endfor %}
        {% for image in item.product.item.variant.images %}
        {% endfor %}
        {% for upsell in item.product.item.variant.availableUpsells %}
        {% endfor %}
        {% if item.product.item.variant.legacyRel %}
                {{ item.product.item.variant.legacyRel }}
        {% endif %}
        {% if item.product.item.variant.image %}
        {% endif %}
{% endif %}
{% for label in item.product.labels %}
        {{ label.id }}
        {{ label.name }}
        {% if label.code %}
                {{ label.code }}
        {% endif %}
        {% if label.colorCode %}
                {{ label.colorCode }}
        {% endif %}
        {% if label.image %}
                {{ label.image.originalHeight }}
                {{ label.image.originalWidth }}
                {{ label.image.url }}
                {% if label.image.alt %}
                        {{ label.image.alt }}
                {% endif %}
                {% if label.image.text %}
                        {{ label.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for productDesigner in item.product.configurators %}
        {{ productDesigner.name }}
        {{ productDesigner.upsell.id }}
        {{ productDesigner.upsell.name }}
        {% if productDesigner.upsell.inCart %} ... {% endif %}
        {% if productDesigner.upsell.code %}
                {{ productDesigner.upsell.code }}
        {% endif %}
        {% if productDesigner.upsell.vatRate %}
                {{ productDesigner.upsell.vatRate }}
        {% endif %}
        {% if productDesigner.upsell.image %}
        {% endif %}
        {% if productDesigner.upsell.unit %}
        {% endif %}
        {% if productDesigner.result %}
                {{ productDesigner.result.imageUrl }}
                {{ productDesigner.result.uuid }}
                {% for productDesignerResultPart in productDesigner.result.parts %}
                {% endfor %}
        {% endif %}
{% endfor %}
{% for productEnumValue in item.product.enumValues %}
        {{ productEnumValue.id }}
        {{ productEnumValue.name }}
        {% if productEnumValue.selected %} ... {% endif %}
        {{ productEnumValue.enum.id }}
        {{ productEnumValue.enum.name }}
        {% for enumValue in productEnumValue.enum.values %}
        {% endfor %}
        {% if productEnumValue.enum.text %}
                {{ productEnumValue.enum.text }}
        {% endif %}
        {% if productEnumValue.enum.meaning %}
        {% endif %}
        {{ productEnumValue.url }}
        {{ productEnumValue.url.absolute }}
        {{ productEnumValue.url.path }}
        {% for variant in productEnumValue.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% if productEnumValue.text %}
                {{ productEnumValue.text }}
        {% endif %}
        {% if productEnumValue.image %}
                {{ productEnumValue.image.originalHeight }}
                {{ productEnumValue.image.originalWidth }}
                {{ productEnumValue.image.url }}
                {% if productEnumValue.image.alt %}
                        {{ productEnumValue.image.alt }}
                {% endif %}
                {% if productEnumValue.image.text %}
                        {{ productEnumValue.image.text }}
                {% endif %}
        {% endif %}
        {% if productEnumValue.variantImage %}
                {{ productEnumValue.variantImage.originalHeight }}
                {{ productEnumValue.variantImage.originalWidth }}
                {{ productEnumValue.variantImage.url }}
                {% if productEnumValue.variantImage.alt %}
                        {{ productEnumValue.variantImage.alt }}
                {% endif %}
                {% if productEnumValue.variantImage.text %}
                        {{ productEnumValue.variantImage.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for product in item.product.packTemplateProducts %}
        {{ product.id }}
        {{ product.name }}
        {{ product.trackingId }}
        {{ product.dateCreated|date('d. m. Y H:i') }}
        {% if product.active %} ... {% endif %}
        {% if product.compared %} ... {% endif %}
        {% if product.differentVariantPrices %} ... {% endif %}
        {% if product.flagNew %} ... {% endif %}
        {% if product.flagPromo %} ... {% endif %}
        {% if product.flagSecondHand %} ... {% endif %}
        {% if product.flagSellout %} ... {% endif %}
        {% if product.otherDiscountApplicable %} ... {% endif %}
        {% if product.soldSeparately %} ... {% endif %}
        {% for address in product.publicContacts %}
                {% if address.city %}
                        {{ address.city }}
                {% endif %}
                {% if address.company %}
                        {{ address.company }}
                {% endif %}
                {% if address.companyId %}
                        {{ address.companyId }}
                {% endif %}
                {% if address.email %}
                        {{ address.email }}
                {% endif %}
                {% if address.phone %}
                        {{ address.phone }}
                {% endif %}
                {% if address.region %}
                        {{ address.region }}
                {% endif %}
                {% if address.street %}
                        {{ address.street }}
                {% endif %}
                {% if address.vatId %}
                        {{ address.vatId }}
                {% endif %}
                {% if address.web %}
                        {{ address.web }}
                {% endif %}
                {% if address.zip %}
                        {{ address.zip }}
                {% endif %}
                {% if address.purpose %}
                {% endif %}
                {% if address.country %}
                {% endif %}
        {% endfor %}
        {% for attributeInstance in product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ product.category.id }}
        {{ product.category.productCount }}
        {{ product.category.productInStockCount }}
        {{ product.category.totalStockQuantity }}
        {{ product.category.headline }}
        {{ product.category.menuName }}
        {{ product.category.name }}
        {% if product.category.flagErotic %} ... {% endif %}
        {% if product.category.flagImportant %} ... {% endif %}
        {% if product.category.noFollow %} ... {% endif %}
        {% for category in product.category.subcategories %}
        {% endfor %}
        {% for video in product.category.videos %}
        {% endfor %}
        {{ product.category.pathNames }}
        {{ product.category.pathIds }}
        {{ product.category.templateAttribute }}
        {% if product.category.subHeadline %}
                {{ product.category.subHeadline }}
        {% endif %}
        {% if product.category.text %}
                {{ product.category.text }}
        {% endif %}
        {% if product.category.parent %}
        {% endif %}
        {% if product.category.image %}
        {% endif %}
        {% if product.category.contentGrid %}
                {{ product.category.contentGrid }}
        {% endif %}
        {% for category in product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ product.item.cartAmountRequiredMultiplier }}
        {{ product.item.id }}
        {{ product.item.loyaltyPointsAmount }}
        {{ product.item.name }}
        {{ product.item.trackingId }}
        {% if product.item.digital %} ... {% endif %}
        {% if product.item.sellable %} ... {% endif %}
        {% if product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in product.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in product.item.availableUpsells %}
        {% endfor %}
        {{ product.item.trackingIds }}
        {{ product.item.storageLocations }}
        {% if product.item.packageWeight %}
                {{ product.item.packageWeight }}
        {% endif %}
        {% if product.item.code %}
                {{ product.item.code }}
        {% endif %}
        {% if product.item.packageHeight %}
                {{ product.item.packageHeight }}
        {% endif %}
        {% if product.item.packageLength %}
                {{ product.item.packageLength }}
        {% endif %}
        {% if product.item.packageWidth %}
                {{ product.item.packageWidth }}
        {% endif %}
        {% if product.item.bundle %}
        {% endif %}
        {% if product.item.cheapestDelivery %}
        {% endif %}
        {% if product.item.freeDelivery %}
        {% endif %}
        {% if product.item.closestFreeDelivery %}
        {% endif %}
        {% if product.item.packageDimensions %}
        {% endif %}
        {% if product.item.image %}
        {% endif %}
        {% if product.item.price %}
        {% endif %}
        {% if product.item.url %}
        {% endif %}
        {% if product.item.variant %}
        {% endif %}
        {% for label in product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productDesigner in product.configurators %}
                {{ productDesigner.name }}
                {% if productDesigner.result %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {{ product.rating.count }}
        {% if product.rating.voted %} ... {% endif %}
        {% if product.rating.average %}
                {{ product.rating.average }}
        {% endif %}
        {% for upsell in product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ product.url }}
        {{ product.url.absolute }}
        {{ product.url.path }}
        {% for variantChoiceStep in product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ product.variantType.id }}
        {{ product.variantType.name }}
        {% for video in product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ product.trackingIds }}
        {% if product.currentSubName %}
                {{ product.currentSubName }}
        {% endif %}
        {% if product.nameSuffix %}
                {{ product.nameSuffix }}
        {% endif %}
        {% if product.nameSupplier %}
                {{ product.nameSupplier }}
        {% endif %}
        {% if product.text %}
                {{ product.text }}
        {% endif %}
        {% if product.attribute %}
                {{ product.attribute.name }}
                {{ product.attribute.valuesHtml }}
                {% for attributeValueInstance in product.attribute.values %}
                {% endfor %}
                {% if product.attribute.description %}
                        {{ product.attribute.description }}
                {% endif %}
                {% if product.attribute.group %}
                {% endif %}
                {% if product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if product.brand %}
                {{ product.brand.id }}
                {{ product.brand.headline }}
                {{ product.brand.name }}
                {% if product.brand.flagImportant %} ... {% endif %}
                {% for address in product.brand.publicContacts %}
                {% endfor %}
                {% for category in product.brand.categories %}
                {% endfor %}
                {% if product.brand.code %}
                        {{ product.brand.code }}
                {% endif %}
                {% if product.brand.web %}
                        {{ product.brand.web }}
                {% endif %}
                {% if product.brand.text %}
                        {{ product.brand.text }}
                {% endif %}
                {% if product.brand.image %}
                {% endif %}
                {% if product.brand.seo %}
                {% endif %}
                {% if product.brand.contentGrid %}
                        {{ product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if product.image %}
                {{ product.image.originalHeight }}
                {{ product.image.originalWidth }}
                {{ product.image.url }}
                {% if product.image.alt %}
                        {{ product.image.alt }}
                {% endif %}
                {% if product.image.text %}
                        {{ product.image.text }}
                {% endif %}
        {% endif %}
        {% if product.imageForEnumValueId %}
                {{ product.imageForEnumValueId.originalHeight }}
                {{ product.imageForEnumValueId.originalWidth }}
                {{ product.imageForEnumValueId.url }}
                {% if product.imageForEnumValueId.alt %}
                        {{ product.imageForEnumValueId.alt }}
                {% endif %}
                {% if product.imageForEnumValueId.text %}
                        {{ product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if product.successor %}
                {{ product.successor.id }}
                {{ product.successor.name }}
                {{ product.successor.trackingId }}
                {{ product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if product.successor.active %} ... {% endif %}
                {% if product.successor.compared %} ... {% endif %}
                {% if product.successor.differentVariantPrices %} ... {% endif %}
                {% if product.successor.flagNew %} ... {% endif %}
                {% if product.successor.flagPromo %} ... {% endif %}
                {% if product.successor.flagSecondHand %} ... {% endif %}
                {% if product.successor.flagSellout %} ... {% endif %}
                {% if product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if product.successor.soldSeparately %} ... {% endif %}
                {% for address in product.successor.publicContacts %}
                {% endfor %}
                {% for attributeInstance in product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.successor.categories %}
                {% endfor %}
                {% for category in product.successor.otherCategories %}
                {% endfor %}
                {% for file in product.successor.files %}
                {% endfor %}
                {% for image in product.successor.images %}
                {% endfor %}
                {% for image in product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.successor.images360 %}
                {% endfor %}
                {% for image in product.successor.currentImages %}
                {% endfor %}
                {% for image in product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.successor.otherImages %}
                {% endfor %}
                {% for label in product.successor.labels %}
                {% endfor %}
                {% for productDesigner in product.successor.configurators %}
                {% endfor %}
                {% for productEnumValue in product.successor.enumValues %}
                {% endfor %}
                {% for upsell in product.successor.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.successor.currentVariants %}
                {% endfor %}
                {% for variant in product.successor.variants %}
                {% endfor %}
                {% for variant in product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.successor.videos %}
                {% endfor %}
                {{ product.successor.trackingIds }}
                {% if product.successor.currentSubName %}
                        {{ product.successor.currentSubName }}
                {% endif %}
                {% if product.successor.nameSuffix %}
                        {{ product.successor.nameSuffix }}
                {% endif %}
                {% if product.successor.nameSupplier %}
                        {{ product.successor.nameSupplier }}
                {% endif %}
                {% if product.successor.text %}
                        {{ product.successor.text }}
                {% endif %}
                {% if product.successor.attribute %}
                {% endif %}
                {% if product.successor.brand %}
                {% endif %}
                {% if product.successor.image %}
                {% endif %}
                {% if product.successor.imageForEnumValueId %}
                {% endif %}
                {% if product.successor.seo %}
                {% endif %}
                {% if product.successor.supplier %}
                {% endif %}
                {% if product.successor.unit %}
                {% endif %}
                {% if product.successor.variant %}
                {% endif %}
                {% if product.successor.warranty %}
                {% endif %}
                {% if product.successor.contentGrid %}
                        {{ product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if product.seo %}
                {% if product.seo.description %}
                        {{ product.seo.description }}
                {% endif %}
                {% if product.seo.keywords %}
                        {{ product.seo.keywords }}
                {% endif %}
                {% if product.seo.title %}
                        {{ product.seo.title }}
                {% endif %}
        {% endif %}
        {% if product.supplier %}
                {{ product.supplier.id }}
                {{ product.supplier.name }}
                {% for address in product.supplier.publicContacts %}
                {% endfor %}
        {% endif %}
        {% if product.unit %}
                {{ product.unit.name }}
        {% endif %}
        {% if product.variant %}
                {{ product.variant.id }}
                {{ product.variant.name }}
                {{ product.variant.trackingId }}
                {% if product.variant.active %} ... {% endif %}
                {% if product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in product.variant.enumValues %}
                {% endfor %}
                {% for image in product.variant.images %}
                {% endfor %}
                {% for upsell in product.variant.availableUpsells %}
                {% endfor %}
                {% if product.variant.legacyRel %}
                        {{ product.variant.legacyRel }}
                {% endif %}
                {% if product.variant.image %}
                {% endif %}
        {% endif %}
        {% if product.warranty %}
                {{ product.warranty.months }}
        {% endif %}
        {% if product.contentGrid %}
                {{ product.contentGrid }}
        {% endif %}
{% endfor %}
{{ item.product.rating.count }}
{% if item.product.rating.voted %} ... {% endif %}
{% if item.product.rating.average %}
        {{ item.product.rating.average }}
{% endif %}
{% for upsell in item.product.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {{ upsell.category.id }}
        {{ upsell.category.productCount }}
        {{ upsell.category.productInStockCount }}
        {{ upsell.category.totalStockQuantity }}
        {{ upsell.category.headline }}
        {{ upsell.category.menuName }}
        {{ upsell.category.name }}
        {% if upsell.category.flagErotic %} ... {% endif %}
        {% if upsell.category.flagImportant %} ... {% endif %}
        {% if upsell.category.noFollow %} ... {% endif %}
        {% for category in upsell.category.subcategories %}
        {% endfor %}
        {% for video in upsell.category.videos %}
        {% endfor %}
        {{ upsell.category.pathNames }}
        {{ upsell.category.pathIds }}
        {{ upsell.category.templateAttribute }}
        {% if upsell.category.subHeadline %}
                {{ upsell.category.subHeadline }}
        {% endif %}
        {% if upsell.category.text %}
                {{ upsell.category.text }}
        {% endif %}
        {% if upsell.category.parent %}
        {% endif %}
        {% if upsell.category.image %}
        {% endif %}
        {% if upsell.category.contentGrid %}
                {{ upsell.category.contentGrid }}
        {% endif %}
        {{ upsell.price.vatRate }}
        {% if upsell.price.discountPercent %}
                {{ upsell.price.discountPercent }}
        {% endif %}
        {% if upsell.price.discountValidTo %}
                {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if upsell.price.beforeDiscount %}
        {% endif %}
        {% if upsell.price.discount %}
        {% endif %}
        {{ upsell.group.id }}
        {{ upsell.group.requiredNoteMaximumLength }}
        {{ upsell.group.name }}
        {% if upsell.group.requiredNote %} ... {% endif %}
        {% if upsell.group.requiredUpload %} ... {% endif %}
        {% if upsell.group.singleSelection %} ... {% endif %}
        {% if upsell.group.text %}
                {{ upsell.group.text }}
        {% endif %}
        {% if upsell.group.uploadInput %}
                {{ upsell.group.uploadInput }}
        {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
                {{ upsell.image.originalHeight }}
                {{ upsell.image.originalWidth }}
                {{ upsell.image.url }}
                {% if upsell.image.alt %}
                        {{ upsell.image.alt }}
                {% endif %}
                {% if upsell.image.text %}
                        {{ upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.unit %}
                {{ upsell.unit.name }}
        {% endif %}
{% endfor %}
{{ item.product.url }}
{{ item.product.url.absolute }}
{{ item.product.url.path }}
{% for variantChoiceStep in item.product.variantChoiceSteps %}
        {{ variantChoiceStep.headline }}
        {{ variantChoiceStep.inputName }}
        {{ variantChoiceStep.mode }}
        {% if variantChoiceStep.final %} ... {% endif %}
        {% for variantChoice in variantChoiceStep.choices %}
                {{ variantChoice.inputValue }}
                {{ variantChoice.name }}
                {% if variantChoice.selected %} ... {% endif %}
                {% if variantChoice.color %}
                        {{ variantChoice.color }}
                {% endif %}
                {% if variantChoice.description %}
                        {{ variantChoice.description }}
                {% endif %}
                {% if variantChoice.availability %}
                {% endif %}
                {% if variantChoice.bundle %}
                {% endif %}
                {% if variantChoice.icon %}
                {% endif %}
                {% if variantChoice.image %}
                {% endif %}
                {% if variantChoice.price %}
                {% endif %}
        {% endfor %}
        {% if variantChoiceStep.description %}
                {{ variantChoiceStep.description }}
        {% endif %}
        {% if variantChoiceStep.infoDescription %}
                {{ variantChoiceStep.infoDescription }}
        {% endif %}
        {% if variantChoiceStep.messageEmpty %}
                {{ variantChoiceStep.messageEmpty }}
        {% endif %}
        {% if variantChoiceStep.placeholder %}
                {{ variantChoiceStep.placeholder }}
        {% endif %}
        {% if variantChoiceStep.icon %}
                {{ variantChoiceStep.icon.originalHeight }}
                {{ variantChoiceStep.icon.originalWidth }}
                {{ variantChoiceStep.icon.url }}
                {% if variantChoiceStep.icon.alt %}
                        {{ variantChoiceStep.icon.alt }}
                {% endif %}
                {% if variantChoiceStep.icon.text %}
                        {{ variantChoiceStep.icon.text }}
                {% endif %}
        {% endif %}
        {% if variantChoiceStep.infoIcon %}
                {{ variantChoiceStep.infoIcon.originalHeight }}
                {{ variantChoiceStep.infoIcon.originalWidth }}
                {{ variantChoiceStep.infoIcon.url }}
                {% if variantChoiceStep.infoIcon.alt %}
                        {{ variantChoiceStep.infoIcon.alt }}
                {% endif %}
                {% if variantChoiceStep.infoIcon.text %}
                        {{ variantChoiceStep.infoIcon.text }}
                {% endif %}
        {% endif %}
        {% if variantChoiceStep.info %}
                {{ variantChoiceStep.info.id }}
                {{ variantChoiceStep.info.name }}
                {% for file in variantChoiceStep.info.files %}
                {% endfor %}
                {% for image in variantChoiceStep.info.images %}
                {% endfor %}
                {% for textPage in variantChoiceStep.info.subPages %}
                {% endfor %}
                {% for video in variantChoiceStep.info.videos %}
                {% endfor %}
                {% if variantChoiceStep.info.code %}
                        {{ variantChoiceStep.info.code }}
                {% endif %}
                {% if variantChoiceStep.info.text %}
                        {{ variantChoiceStep.info.text }}
                {% endif %}
                {% if variantChoiceStep.info.image %}
                {% endif %}
                {% if variantChoiceStep.info.contentGrid %}
                        {{ variantChoiceStep.info.contentGrid }}
                {% endif %}
        {% endif %}
        {% if variantChoiceStep.selectedChoice %}
                {{ variantChoiceStep.selectedChoice.inputValue }}
                {{ variantChoiceStep.selectedChoice.name }}
                {% if variantChoiceStep.selectedChoice.selected %} ... {% endif %}
                {% if variantChoiceStep.selectedChoice.color %}
                        {{ variantChoiceStep.selectedChoice.color }}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.description %}
                        {{ variantChoiceStep.selectedChoice.description }}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.availability %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.bundle %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.icon %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.image %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.price %}
                {% endif %}
        {% endif %}
{% endfor %}
{% for variant in item.product.currentVariants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.item.cartAmountRequiredMultiplier }}
        {{ variant.item.id }}
        {{ variant.item.loyaltyPointsAmount }}
        {{ variant.item.name }}
        {{ variant.item.trackingId }}
        {% if variant.item.digital %} ... {% endif %}
        {% if variant.item.sellable %} ... {% endif %}
        {% if variant.item.service %} ... {% endif %}
        {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in variant.item.availableUpsells %}
        {% endfor %}
        {{ variant.item.trackingIds }}
        {{ variant.item.storageLocations }}
        {% if variant.item.packageWeight %}
                {{ variant.item.packageWeight }}
        {% endif %}
        {% if variant.item.code %}
                {{ variant.item.code }}
        {% endif %}
        {% if variant.item.packageHeight %}
                {{ variant.item.packageHeight }}
        {% endif %}
        {% if variant.item.packageLength %}
                {{ variant.item.packageLength }}
        {% endif %}
        {% if variant.item.packageWidth %}
                {{ variant.item.packageWidth }}
        {% endif %}
        {% if variant.item.bundle %}
        {% endif %}
        {% if variant.item.cheapestDelivery %}
        {% endif %}
        {% if variant.item.freeDelivery %}
        {% endif %}
        {% if variant.item.closestFreeDelivery %}
        {% endif %}
        {% if variant.item.packageDimensions %}
        {% endif %}
        {% if variant.item.image %}
        {% endif %}
        {% if variant.item.price %}
        {% endif %}
        {% if variant.item.url %}
        {% endif %}
        {% if variant.item.variant %}
        {% endif %}
        {% for upsell in variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.url }}
        {{ variant.url.absolute }}
        {{ variant.url.path }}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
                {{ variant.image.originalHeight }}
                {{ variant.image.originalWidth }}
                {{ variant.image.url }}
                {% if variant.image.alt %}
                        {{ variant.image.alt }}
                {% endif %}
                {% if variant.image.text %}
                        {{ variant.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for variant in item.product.variants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.item.cartAmountRequiredMultiplier }}
        {{ variant.item.id }}
        {{ variant.item.loyaltyPointsAmount }}
        {{ variant.item.name }}
        {{ variant.item.trackingId }}
        {% if variant.item.digital %} ... {% endif %}
        {% if variant.item.sellable %} ... {% endif %}
        {% if variant.item.service %} ... {% endif %}
        {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in variant.item.availableUpsells %}
        {% endfor %}
        {{ variant.item.trackingIds }}
        {{ variant.item.storageLocations }}
        {% if variant.item.packageWeight %}
                {{ variant.item.packageWeight }}
        {% endif %}
        {% if variant.item.code %}
                {{ variant.item.code }}
        {% endif %}
        {% if variant.item.packageHeight %}
                {{ variant.item.packageHeight }}
        {% endif %}
        {% if variant.item.packageLength %}
                {{ variant.item.packageLength }}
        {% endif %}
        {% if variant.item.packageWidth %}
                {{ variant.item.packageWidth }}
        {% endif %}
        {% if variant.item.bundle %}
        {% endif %}
        {% if variant.item.cheapestDelivery %}
        {% endif %}
        {% if variant.item.freeDelivery %}
        {% endif %}
        {% if variant.item.closestFreeDelivery %}
        {% endif %}
        {% if variant.item.packageDimensions %}
        {% endif %}
        {% if variant.item.image %}
        {% endif %}
        {% if variant.item.price %}
        {% endif %}
        {% if variant.item.url %}
        {% endif %}
        {% if variant.item.variant %}
        {% endif %}
        {% for upsell in variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.url }}
        {{ variant.url.absolute }}
        {{ variant.url.path }}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
                {{ variant.image.originalHeight }}
                {{ variant.image.originalWidth }}
                {{ variant.image.url }}
                {% if variant.image.alt %}
                        {{ variant.image.alt }}
                {% endif %}
                {% if variant.image.text %}
                        {{ variant.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for variant in item.product.variantsWithEnumValueIds %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.item.cartAmountRequiredMultiplier }}
        {{ variant.item.id }}
        {{ variant.item.loyaltyPointsAmount }}
        {{ variant.item.name }}
        {{ variant.item.trackingId }}
        {% if variant.item.digital %} ... {% endif %}
        {% if variant.item.sellable %} ... {% endif %}
        {% if variant.item.service %} ... {% endif %}
        {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in variant.item.availableUpsells %}
        {% endfor %}
        {{ variant.item.trackingIds }}
        {{ variant.item.storageLocations }}
        {% if variant.item.packageWeight %}
                {{ variant.item.packageWeight }}
        {% endif %}
        {% if variant.item.code %}
                {{ variant.item.code }}
        {% endif %}
        {% if variant.item.packageHeight %}
                {{ variant.item.packageHeight }}
        {% endif %}
        {% if variant.item.packageLength %}
                {{ variant.item.packageLength }}
        {% endif %}
        {% if variant.item.packageWidth %}
                {{ variant.item.packageWidth }}
        {% endif %}
        {% if variant.item.bundle %}
        {% endif %}
        {% if variant.item.cheapestDelivery %}
        {% endif %}
        {% if variant.item.freeDelivery %}
        {% endif %}
        {% if variant.item.closestFreeDelivery %}
        {% endif %}
        {% if variant.item.packageDimensions %}
        {% endif %}
        {% if variant.item.image %}
        {% endif %}
        {% if variant.item.price %}
        {% endif %}
        {% if variant.item.url %}
        {% endif %}
        {% if variant.item.variant %}
        {% endif %}
        {% for upsell in variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.url }}
        {{ variant.url.absolute }}
        {{ variant.url.path }}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
                {{ variant.image.originalHeight }}
                {{ variant.image.originalWidth }}
                {{ variant.image.url }}
                {% if variant.image.alt %}
                        {{ variant.image.alt }}
                {% endif %}
                {% if variant.image.text %}
                        {{ variant.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ item.product.variantType.id }}
{{ item.product.variantType.name }}
{% for video in item.product.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
                {{ video.image.originalHeight }}
                {{ video.image.originalWidth }}
                {{ video.image.url }}
                {% if video.image.alt %}
                        {{ video.image.alt }}
                {% endif %}
                {% if video.image.text %}
                        {{ video.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ item.product.trackingIds }}
{% if item.product.currentSubName %}
        {{ item.product.currentSubName }}
{% endif %}
{% if item.product.nameSuffix %}
        {{ item.product.nameSuffix }}
{% endif %}
{% if item.product.nameSupplier %}
        {{ item.product.nameSupplier }}
{% endif %}
{% if item.product.text %}
        {{ item.product.text }}
{% endif %}
{% if item.product.attribute %}
        {{ item.product.attribute.name }}
        {{ item.product.attribute.valuesHtml }}
        {% for attributeValueInstance in item.product.attribute.values %}
                {{ attributeValueInstance.values }}
                {{ attributeValueInstance.nameHtml }}
                {% if attributeValueInstance.colorCode %}
                        {{ attributeValueInstance.colorCode }}
                {% endif %}
                {% if attributeValueInstance.text %}
                        {{ attributeValueInstance.text }}
                {% endif %}
                {% if attributeValueInstance.unit %}
                        {{ attributeValueInstance.unit }}
                {% endif %}
                {% if attributeValueInstance.image %}
                {% endif %}
                {% if attributeValueInstance.name %}
                        {{ attributeValueInstance.name }}
                {% endif %}
        {% endfor %}
        {% if item.product.attribute.description %}
                {{ item.product.attribute.description }}
        {% endif %}
        {% if item.product.attribute.group %}
                {{ item.product.attribute.group.id }}
        {% endif %}
        {% if item.product.attribute.image %}
                {{ item.product.attribute.image.originalHeight }}
                {{ item.product.attribute.image.originalWidth }}
                {{ item.product.attribute.image.url }}
                {% if item.product.attribute.image.alt %}
                        {{ item.product.attribute.image.alt }}
                {% endif %}
                {% if item.product.attribute.image.text %}
                        {{ item.product.attribute.image.text }}
                {% endif %}
        {% endif %}
{% endif %}
{% if item.product.brand %}
        {{ item.product.brand.id }}
        {{ item.product.brand.headline }}
        {{ item.product.brand.name }}
        {% if item.product.brand.flagImportant %} ... {% endif %}
        {% for address in item.product.brand.publicContacts %}
                {% if address.city %}
                        {{ address.city }}
                {% endif %}
                {% if address.company %}
                        {{ address.company }}
                {% endif %}
                {% if address.companyId %}
                        {{ address.companyId }}
                {% endif %}
                {% if address.email %}
                        {{ address.email }}
                {% endif %}
                {% if address.phone %}
                        {{ address.phone }}
                {% endif %}
                {% if address.region %}
                        {{ address.region }}
                {% endif %}
                {% if address.street %}
                        {{ address.street }}
                {% endif %}
                {% if address.vatId %}
                        {{ address.vatId }}
                {% endif %}
                {% if address.web %}
                        {{ address.web }}
                {% endif %}
                {% if address.zip %}
                        {{ address.zip }}
                {% endif %}
                {% if address.purpose %}
                {% endif %}
                {% if address.country %}
                {% endif %}
        {% endfor %}
        {% for category in item.product.brand.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ item.product.brand.url }}
        {{ item.product.brand.url.absolute }}
        {{ item.product.brand.url.path }}
        {{ item.product.brand.categoryUrl }}
        {{ item.product.brand.categoryUrl.absolute }}
        {{ item.product.brand.categoryUrl.path }}
        {% if item.product.brand.code %}
                {{ item.product.brand.code }}
        {% endif %}
        {% if item.product.brand.web %}
                {{ item.product.brand.web }}
        {% endif %}
        {% if item.product.brand.text %}
                {{ item.product.brand.text }}
        {% endif %}
        {% if item.product.brand.image %}
                {{ item.product.brand.image.originalHeight }}
                {{ item.product.brand.image.originalWidth }}
                {{ item.product.brand.image.url }}
                {% if item.product.brand.image.alt %}
                        {{ item.product.brand.image.alt }}
                {% endif %}
                {% if item.product.brand.image.text %}
                        {{ item.product.brand.image.text }}
                {% endif %}
        {% endif %}
        {% if item.product.brand.seo %}
                {% if item.product.brand.seo.description %}
                        {{ item.product.brand.seo.description }}
                {% endif %}
                {% if item.product.brand.seo.keywords %}
                        {{ item.product.brand.seo.keywords }}
                {% endif %}
                {% if item.product.brand.seo.title %}
                        {{ item.product.brand.seo.title }}
                {% endif %}
        {% endif %}
        {% if item.product.brand.contentGrid %}
                {{ item.product.brand.contentGrid }}
        {% endif %}
{% endif %}
{% if item.product.image %}
        {{ item.product.image.originalHeight }}
        {{ item.product.image.originalWidth }}
        {{ item.product.image.url }}
        {% if item.product.image.alt %}
                {{ item.product.image.alt }}
        {% endif %}
        {% if item.product.image.text %}
                {{ item.product.image.text }}
        {% endif %}
{% endif %}
{% if item.product.imageForEnumValueId %}
        {{ item.product.imageForEnumValueId.originalHeight }}
        {{ item.product.imageForEnumValueId.originalWidth }}
        {{ item.product.imageForEnumValueId.url }}
        {% if item.product.imageForEnumValueId.alt %}
                {{ item.product.imageForEnumValueId.alt }}
        {% endif %}
        {% if item.product.imageForEnumValueId.text %}
                {{ item.product.imageForEnumValueId.text }}
        {% endif %}
{% endif %}
{% if item.product.successor %}
        {{ item.product.successor.id }}
        {{ item.product.successor.name }}
        {{ item.product.successor.trackingId }}
        {{ item.product.successor.dateCreated|date('d. m. Y H:i') }}
        {% if item.product.successor.active %} ... {% endif %}
        {% if item.product.successor.compared %} ... {% endif %}
        {% if item.product.successor.differentVariantPrices %} ... {% endif %}
        {% if item.product.successor.flagNew %} ... {% endif %}
        {% if item.product.successor.flagPromo %} ... {% endif %}
        {% if item.product.successor.flagSecondHand %} ... {% endif %}
        {% if item.product.successor.flagSellout %} ... {% endif %}
        {% if item.product.successor.otherDiscountApplicable %} ... {% endif %}
        {% if item.product.successor.soldSeparately %} ... {% endif %}
        {% for address in item.product.successor.publicContacts %}
                {% if address.city %}
                        {{ address.city }}
                {% endif %}
                {% if address.company %}
                        {{ address.company }}
                {% endif %}
                {% if address.companyId %}
                        {{ address.companyId }}
                {% endif %}
                {% if address.email %}
                        {{ address.email }}
                {% endif %}
                {% if address.phone %}
                        {{ address.phone }}
                {% endif %}
                {% if address.region %}
                        {{ address.region }}
                {% endif %}
                {% if address.street %}
                        {{ address.street }}
                {% endif %}
                {% if address.vatId %}
                        {{ address.vatId }}
                {% endif %}
                {% if address.web %}
                        {{ address.web }}
                {% endif %}
                {% if address.zip %}
                        {{ address.zip }}
                {% endif %}
                {% if address.purpose %}
                {% endif %}
                {% if address.country %}
                {% endif %}
        {% endfor %}
        {% for attributeInstance in item.product.successor.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in item.product.successor.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ item.product.successor.category.id }}
        {{ item.product.successor.category.productCount }}
        {{ item.product.successor.category.productInStockCount }}
        {{ item.product.successor.category.totalStockQuantity }}
        {{ item.product.successor.category.headline }}
        {{ item.product.successor.category.menuName }}
        {{ item.product.successor.category.name }}
        {% if item.product.successor.category.flagErotic %} ... {% endif %}
        {% if item.product.successor.category.flagImportant %} ... {% endif %}
        {% if item.product.successor.category.noFollow %} ... {% endif %}
        {% for category in item.product.successor.category.subcategories %}
        {% endfor %}
        {% for video in item.product.successor.category.videos %}
        {% endfor %}
        {{ item.product.successor.category.pathNames }}
        {{ item.product.successor.category.pathIds }}
        {{ item.product.successor.category.templateAttribute }}
        {% if item.product.successor.category.subHeadline %}
                {{ item.product.successor.category.subHeadline }}
        {% endif %}
        {% if item.product.successor.category.text %}
                {{ item.product.successor.category.text }}
        {% endif %}
        {% if item.product.successor.category.parent %}
        {% endif %}
        {% if item.product.successor.category.image %}
        {% endif %}
        {% if item.product.successor.category.contentGrid %}
                {{ item.product.successor.category.contentGrid }}
        {% endif %}
        {% for category in item.product.successor.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in item.product.successor.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in item.product.successor.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in item.product.successor.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.product.successor.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.product.successor.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.product.successor.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.product.successor.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.product.successor.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ item.product.successor.item.cartAmountRequiredMultiplier }}
        {{ item.product.successor.item.id }}
        {{ item.product.successor.item.loyaltyPointsAmount }}
        {{ item.product.successor.item.name }}
        {{ item.product.successor.item.trackingId }}
        {% if item.product.successor.item.digital %} ... {% endif %}
        {% if item.product.successor.item.sellable %} ... {% endif %}
        {% if item.product.successor.item.service %} ... {% endif %}
        {% for availableUpsellGroup in item.product.successor.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in item.product.successor.item.availableUpsells %}
        {% endfor %}
        {{ item.product.successor.item.trackingIds }}
        {{ item.product.successor.item.storageLocations }}
        {% if item.product.successor.item.packageWeight %}
                {{ item.product.successor.item.packageWeight }}
        {% endif %}
        {% if item.product.successor.item.code %}
                {{ item.product.successor.item.code }}
        {% endif %}
        {% if item.product.successor.item.packageHeight %}
                {{ item.product.successor.item.packageHeight }}
        {% endif %}
        {% if item.product.successor.item.packageLength %}
                {{ item.product.successor.item.packageLength }}
        {% endif %}
        {% if item.product.successor.item.packageWidth %}
                {{ item.product.successor.item.packageWidth }}
        {% endif %}
        {% if item.product.successor.item.bundle %}
        {% endif %}
        {% if item.product.successor.item.cheapestDelivery %}
        {% endif %}
        {% if item.product.successor.item.freeDelivery %}
        {% endif %}
        {% if item.product.successor.item.closestFreeDelivery %}
        {% endif %}
        {% if item.product.successor.item.packageDimensions %}
        {% endif %}
        {% if item.product.successor.item.image %}
        {% endif %}
        {% if item.product.successor.item.price %}
        {% endif %}
        {% if item.product.successor.item.url %}
        {% endif %}
        {% if item.product.successor.item.variant %}
        {% endif %}
        {% for label in item.product.successor.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productDesigner in item.product.successor.configurators %}
                {{ productDesigner.name }}
                {% if productDesigner.result %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in item.product.successor.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in item.product.successor.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for address in product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productDesigner in product.configurators %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for upsell in product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ item.product.successor.rating.count }}
        {% if item.product.successor.rating.voted %} ... {% endif %}
        {% if item.product.successor.rating.average %}
                {{ item.product.successor.rating.average }}
        {% endif %}
        {% for upsell in item.product.successor.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ item.product.successor.url }}
        {{ item.product.successor.url.absolute }}
        {{ item.product.successor.url.path }}
        {% for variantChoiceStep in item.product.successor.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in item.product.successor.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in item.product.successor.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in item.product.successor.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ item.product.successor.variantType.id }}
        {{ item.product.successor.variantType.name }}
        {% for video in item.product.successor.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ item.product.successor.trackingIds }}
        {% if item.product.successor.currentSubName %}
                {{ item.product.successor.currentSubName }}
        {% endif %}
        {% if item.product.successor.nameSuffix %}
                {{ item.product.successor.nameSuffix }}
        {% endif %}
        {% if item.product.successor.nameSupplier %}
                {{ item.product.successor.nameSupplier }}
        {% endif %}
        {% if item.product.successor.text %}
                {{ item.product.successor.text }}
        {% endif %}
        {% if item.product.successor.attribute %}
                {{ item.product.successor.attribute.name }}
                {{ item.product.successor.attribute.valuesHtml }}
                {% for attributeValueInstance in item.product.successor.attribute.values %}
                {% endfor %}
                {% if item.product.successor.attribute.description %}
                        {{ item.product.successor.attribute.description }}
                {% endif %}
                {% if item.product.successor.attribute.group %}
                {% endif %}
                {% if item.product.successor.attribute.image %}
                {% endif %}
        {% endif %}
        {% if item.product.successor.brand %}
                {{ item.product.successor.brand.id }}
                {{ item.product.successor.brand.headline }}
                {{ item.product.successor.brand.name }}
                {% if item.product.successor.brand.flagImportant %} ... {% endif %}
                {% for address in item.product.successor.brand.publicContacts %}
                {% endfor %}
                {% for category in item.product.successor.brand.categories %}
                {% endfor %}
                {% if item.product.successor.brand.code %}
                        {{ item.product.successor.brand.code }}
                {% endif %}
                {% if item.product.successor.brand.web %}
                        {{ item.product.successor.brand.web }}
                {% endif %}
                {% if item.product.successor.brand.text %}
                        {{ item.product.successor.brand.text }}
                {% endif %}
                {% if item.product.successor.brand.image %}
                {% endif %}
                {% if item.product.successor.brand.seo %}
                {% endif %}
                {% if item.product.successor.brand.contentGrid %}
                        {{ item.product.successor.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if item.product.successor.image %}
                {{ item.product.successor.image.originalHeight }}
                {{ item.product.successor.image.originalWidth }}
                {{ item.product.successor.image.url }}
                {% if item.product.successor.image.alt %}
                        {{ item.product.successor.image.alt }}
                {% endif %}
                {% if item.product.successor.image.text %}
                        {{ item.product.successor.image.text }}
                {% endif %}
        {% endif %}
        {% if item.product.successor.imageForEnumValueId %}
                {{ item.product.successor.imageForEnumValueId.originalHeight }}
                {{ item.product.successor.imageForEnumValueId.originalWidth }}
                {{ item.product.successor.imageForEnumValueId.url }}
                {% if item.product.successor.imageForEnumValueId.alt %}
                        {{ item.product.successor.imageForEnumValueId.alt }}
                {% endif %}
                {% if item.product.successor.imageForEnumValueId.text %}
                        {{ item.product.successor.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if item.product.successor.seo %}
                {% if item.product.successor.seo.description %}
                        {{ item.product.successor.seo.description }}
                {% endif %}
                {% if item.product.successor.seo.keywords %}
                        {{ item.product.successor.seo.keywords }}
                {% endif %}
                {% if item.product.successor.seo.title %}
                        {{ item.product.successor.seo.title }}
                {% endif %}
        {% endif %}
        {% if item.product.successor.supplier %}
                {{ item.product.successor.supplier.id }}
                {{ item.product.successor.supplier.name }}
                {% for address in item.product.successor.supplier.publicContacts %}
                {% endfor %}
        {% endif %}
        {% if item.product.successor.unit %}
                {{ item.product.successor.unit.name }}
        {% endif %}
        {% if item.product.successor.variant %}
                {{ item.product.successor.variant.id }}
                {{ item.product.successor.variant.name }}
                {{ item.product.successor.variant.trackingId }}
                {% if item.product.successor.variant.active %} ... {% endif %}
                {% if item.product.successor.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in item.product.successor.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in item.product.successor.variant.enumValues %}
                {% endfor %}
                {% for image in item.product.successor.variant.images %}
                {% endfor %}
                {% for upsell in item.product.successor.variant.availableUpsells %}
                {% endfor %}
                {% if item.product.successor.variant.legacyRel %}
                        {{ item.product.successor.variant.legacyRel }}
                {% endif %}
                {% if item.product.successor.variant.image %}
                {% endif %}
        {% endif %}
        {% if item.product.successor.warranty %}
                {{ item.product.successor.warranty.months }}
        {% endif %}
        {% if item.product.successor.contentGrid %}
                {{ item.product.successor.contentGrid }}
        {% endif %}
{% endif %}
{% if item.product.seo %}
        {% if item.product.seo.description %}
                {{ item.product.seo.description }}
        {% endif %}
        {% if item.product.seo.keywords %}
                {{ item.product.seo.keywords }}
        {% endif %}
        {% if item.product.seo.title %}
                {{ item.product.seo.title }}
        {% endif %}
{% endif %}
{% if item.product.supplier %}
        {{ item.product.supplier.id }}
        {{ item.product.supplier.name }}
        {% for address in item.product.supplier.publicContacts %}
                {% if address.city %}
                        {{ address.city }}
                {% endif %}
                {% if address.company %}
                        {{ address.company }}
                {% endif %}
                {% if address.companyId %}
                        {{ address.companyId }}
                {% endif %}
                {% if address.email %}
                        {{ address.email }}
                {% endif %}
                {% if address.phone %}
                        {{ address.phone }}
                {% endif %}
                {% if address.region %}
                        {{ address.region }}
                {% endif %}
                {% if address.street %}
                        {{ address.street }}
                {% endif %}
                {% if address.vatId %}
                        {{ address.vatId }}
                {% endif %}
                {% if address.web %}
                        {{ address.web }}
                {% endif %}
                {% if address.zip %}
                        {{ address.zip }}
                {% endif %}
                {% if address.purpose %}
                {% endif %}
                {% if address.country %}
                {% endif %}
        {% endfor %}
{% endif %}
{% if item.product.unit %}
        {{ item.product.unit.name }}
{% endif %}
{% if item.product.variant %}
        {{ item.product.variant.id }}
        {{ item.product.variant.name }}
        {{ item.product.variant.trackingId }}
        {% if item.product.variant.active %} ... {% endif %}
        {% if item.product.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in item.product.variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in item.product.variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in item.product.variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ item.product.variant.item.cartAmountRequiredMultiplier }}
        {{ item.product.variant.item.id }}
        {{ item.product.variant.item.loyaltyPointsAmount }}
        {{ item.product.variant.item.name }}
        {{ item.product.variant.item.trackingId }}
        {% if item.product.variant.item.digital %} ... {% endif %}
        {% if item.product.variant.item.sellable %} ... {% endif %}
        {% if item.product.variant.item.service %} ... {% endif %}
        {% for availableUpsellGroup in item.product.variant.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in item.product.variant.item.availableUpsells %}
        {% endfor %}
        {{ item.product.variant.item.trackingIds }}
        {{ item.product.variant.item.storageLocations }}
        {% if item.product.variant.item.packageWeight %}
                {{ item.product.variant.item.packageWeight }}
        {% endif %}
        {% if item.product.variant.item.code %}
                {{ item.product.variant.item.code }}
        {% endif %}
        {% if item.product.variant.item.packageHeight %}
                {{ item.product.variant.item.packageHeight }}
        {% endif %}
        {% if item.product.variant.item.packageLength %}
                {{ item.product.variant.item.packageLength }}
        {% endif %}
        {% if item.product.variant.item.packageWidth %}
                {{ item.product.variant.item.packageWidth }}
        {% endif %}
        {% if item.product.variant.item.bundle %}
        {% endif %}
        {% if item.product.variant.item.cheapestDelivery %}
        {% endif %}
        {% if item.product.variant.item.freeDelivery %}
        {% endif %}
        {% if item.product.variant.item.closestFreeDelivery %}
        {% endif %}
        {% if item.product.variant.item.packageDimensions %}
        {% endif %}
        {% if item.product.variant.item.image %}
        {% endif %}
        {% if item.product.variant.item.price %}
        {% endif %}
        {% if item.product.variant.item.url %}
        {% endif %}
        {% for upsell in item.product.variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ item.product.variant.url }}
        {{ item.product.variant.url.absolute }}
        {{ item.product.variant.url.path }}
        {% if item.product.variant.legacyRel %}
                {{ item.product.variant.legacyRel }}
        {% endif %}
        {% if item.product.variant.image %}
                {{ item.product.variant.image.originalHeight }}
                {{ item.product.variant.image.originalWidth }}
                {{ item.product.variant.image.url }}
                {% if item.product.variant.image.alt %}
                        {{ item.product.variant.image.alt }}
                {% endif %}
                {% if item.product.variant.image.text %}
                        {{ item.product.variant.image.text }}
                {% endif %}
        {% endif %}
{% endif %}
{% if item.product.warranty %}
        {{ item.product.warranty.months }}
{% endif %}
{% if item.product.contentGrid %}
        {{ item.product.contentGrid }}
{% endif %}

{% for upsell in item.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {{ upsell.category.id }}
        {{ upsell.category.productCount }}
        {{ upsell.category.productInStockCount }}
        {{ upsell.category.totalStockQuantity }}
        {{ upsell.category.headline }}
        {{ upsell.category.menuName }}
        {{ upsell.category.name }}
        {% if upsell.category.flagErotic %} ... {% endif %}
        {% if upsell.category.flagImportant %} ... {% endif %}
        {% if upsell.category.noFollow %} ... {% endif %}
        {% for category in upsell.category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ upsell.category.url }}
        {{ upsell.category.url.absolute }}
        {{ upsell.category.url.path }}
        {{ upsell.category.variantType.id }}
        {{ upsell.category.variantType.name }}
        {% for video in upsell.category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.category.pathNames }}
        {{ upsell.category.pathIds }}
        {{ upsell.category.templateAttribute }}
        {% if upsell.category.subHeadline %}
                {{ upsell.category.subHeadline }}
        {% endif %}
        {% if upsell.category.text %}
                {{ upsell.category.text }}
        {% endif %}
        {% if upsell.category.parent %}
                {{ upsell.category.parent.id }}
                {{ upsell.category.parent.productCount }}
                {{ upsell.category.parent.productInStockCount }}
                {{ upsell.category.parent.totalStockQuantity }}
                {{ upsell.category.parent.headline }}
                {{ upsell.category.parent.menuName }}
                {{ upsell.category.parent.name }}
                {% if upsell.category.parent.flagErotic %} ... {% endif %}
                {% if upsell.category.parent.flagImportant %} ... {% endif %}
                {% if upsell.category.parent.noFollow %} ... {% endif %}
                {% for category in upsell.category.parent.subcategories %}
                {% endfor %}
                {% for video in upsell.category.parent.videos %}
                {% endfor %}
                {{ upsell.category.parent.pathNames }}
                {{ upsell.category.parent.pathIds }}
                {{ upsell.category.parent.templateAttribute }}
                {% if upsell.category.parent.subHeadline %}
                        {{ upsell.category.parent.subHeadline }}
                {% endif %}
                {% if upsell.category.parent.text %}
                        {{ upsell.category.parent.text }}
                {% endif %}
                {% if upsell.category.parent.image %}
                {% endif %}
                {% if upsell.category.parent.contentGrid %}
                        {{ upsell.category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.category.image %}
                {{ upsell.category.image.originalHeight }}
                {{ upsell.category.image.originalWidth }}
                {{ upsell.category.image.url }}
                {% if upsell.category.image.alt %}
                        {{ upsell.category.image.alt }}
                {% endif %}
                {% if upsell.category.image.text %}
                        {{ upsell.category.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.category.contentGrid %}
                {{ upsell.category.contentGrid }}
        {% endif %}
        {{ upsell.price.vatRate }}
        {{ upsell.price.current.currency }}
        {{ upsell.price.current.formatted }}
        {{ upsell.price.current.value }}
        {% if upsell.price.current.perUnit %}
        {% endif %}
        {% if upsell.price.discountPercent %}
                {{ upsell.price.discountPercent }}
        {% endif %}
        {% if upsell.price.discountValidTo %}
                {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if upsell.price.beforeDiscount %}
                {{ upsell.price.beforeDiscount.currency }}
                {{ upsell.price.beforeDiscount.formatted }}
                {{ upsell.price.beforeDiscount.value }}
                {% if upsell.price.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if upsell.price.discount %}
                {{ upsell.price.discount.currency }}
                {{ upsell.price.discount.formatted }}
                {{ upsell.price.discount.value }}
                {% if upsell.price.discount.perUnit %}
                {% endif %}
        {% endif %}
        {{ upsell.product.id }}
        {{ upsell.product.name }}
        {{ upsell.product.trackingId }}
        {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
        {% if upsell.product.active %} ... {% endif %}
        {% if upsell.product.compared %} ... {% endif %}
        {% if upsell.product.differentVariantPrices %} ... {% endif %}
        {% if upsell.product.flagNew %} ... {% endif %}
        {% if upsell.product.flagPromo %} ... {% endif %}
        {% if upsell.product.flagSecondHand %} ... {% endif %}
        {% if upsell.product.flagSellout %} ... {% endif %}
        {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
        {% if upsell.product.soldSeparately %} ... {% endif %}
        {% for address in upsell.product.publicContacts %}
                {% if address.city %}
                        {{ address.city }}
                {% endif %}
                {% if address.company %}
                        {{ address.company }}
                {% endif %}
                {% if address.companyId %}
                        {{ address.companyId }}
                {% endif %}
                {% if address.email %}
                        {{ address.email }}
                {% endif %}
                {% if address.phone %}
                        {{ address.phone }}
                {% endif %}
                {% if address.region %}
                        {{ address.region }}
                {% endif %}
                {% if address.street %}
                        {{ address.street }}
                {% endif %}
                {% if address.vatId %}
                        {{ address.vatId }}
                {% endif %}
                {% if address.web %}
                        {{ address.web }}
                {% endif %}
                {% if address.zip %}
                        {{ address.zip }}
                {% endif %}
                {% if address.purpose %}
                {% endif %}
                {% if address.country %}
                {% endif %}
        {% endfor %}
        {% for attributeInstance in upsell.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.category.id }}
        {{ upsell.product.category.productCount }}
        {{ upsell.product.category.productInStockCount }}
        {{ upsell.product.category.totalStockQuantity }}
        {{ upsell.product.category.headline }}
        {{ upsell.product.category.menuName }}
        {{ upsell.product.category.name }}
        {% if upsell.product.category.flagErotic %} ... {% endif %}
        {% if upsell.product.category.flagImportant %} ... {% endif %}
        {% if upsell.product.category.noFollow %} ... {% endif %}
        {% for category in upsell.product.category.subcategories %}
        {% endfor %}
        {% for video in upsell.product.category.videos %}
        {% endfor %}
        {{ upsell.product.category.pathNames }}
        {{ upsell.product.category.pathIds }}
        {{ upsell.product.category.templateAttribute }}
        {% if upsell.product.category.subHeadline %}
                {{ upsell.product.category.subHeadline }}
        {% endif %}
        {% if upsell.product.category.text %}
                {{ upsell.product.category.text }}
        {% endif %}
        {% if upsell.product.category.parent %}
        {% endif %}
        {% if upsell.product.category.image %}
        {% endif %}
        {% if upsell.product.category.contentGrid %}
                {{ upsell.product.category.contentGrid }}
        {% endif %}
        {% for category in upsell.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in upsell.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in upsell.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.item.cartAmountRequiredMultiplier }}
        {{ upsell.product.item.id }}
        {{ upsell.product.item.loyaltyPointsAmount }}
        {{ upsell.product.item.name }}
        {{ upsell.product.item.trackingId }}
        {% if upsell.product.item.digital %} ... {% endif %}
        {% if upsell.product.item.sellable %} ... {% endif %}
        {% if upsell.product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in upsell.product.item.availableUpsellGroups %}
        {% endfor %}
        {{ upsell.product.item.trackingIds }}
        {{ upsell.product.item.storageLocations }}
        {% if upsell.product.item.packageWeight %}
                {{ upsell.product.item.packageWeight }}
        {% endif %}
        {% if upsell.product.item.code %}
                {{ upsell.product.item.code }}
        {% endif %}
        {% if upsell.product.item.packageHeight %}
                {{ upsell.product.item.packageHeight }}
        {% endif %}
        {% if upsell.product.item.packageLength %}
                {{ upsell.product.item.packageLength }}
        {% endif %}
        {% if upsell.product.item.packageWidth %}
                {{ upsell.product.item.packageWidth }}
        {% endif %}
        {% if upsell.product.item.bundle %}
        {% endif %}
        {% if upsell.product.item.cheapestDelivery %}
        {% endif %}
        {% if upsell.product.item.freeDelivery %}
        {% endif %}
        {% if upsell.product.item.closestFreeDelivery %}
        {% endif %}
        {% if upsell.product.item.packageDimensions %}
        {% endif %}
        {% if upsell.product.item.image %}
        {% endif %}
        {% if upsell.product.item.price %}
        {% endif %}
        {% if upsell.product.item.url %}
        {% endif %}
        {% if upsell.product.item.variant %}
        {% endif %}
        {% for label in upsell.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productDesigner in upsell.product.configurators %}
                {{ productDesigner.name }}
                {% if productDesigner.result %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in upsell.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in upsell.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for address in product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productDesigner in product.configurators %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.rating.count }}
        {% if upsell.product.rating.voted %} ... {% endif %}
        {% if upsell.product.rating.average %}
                {{ upsell.product.rating.average }}
        {% endif %}
        {{ upsell.product.url }}
        {{ upsell.product.url.absolute }}
        {{ upsell.product.url.path }}
        {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.variantType.id }}
        {{ upsell.product.variantType.name }}
        {% for video in upsell.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.trackingIds }}
        {% if upsell.product.currentSubName %}
                {{ upsell.product.currentSubName }}
        {% endif %}
        {% if upsell.product.nameSuffix %}
                {{ upsell.product.nameSuffix }}
        {% endif %}
        {% if upsell.product.nameSupplier %}
                {{ upsell.product.nameSupplier }}
        {% endif %}
        {% if upsell.product.text %}
                {{ upsell.product.text }}
        {% endif %}
        {% if upsell.product.attribute %}
                {{ upsell.product.attribute.name }}
                {{ upsell.product.attribute.valuesHtml }}
                {% for attributeValueInstance in upsell.product.attribute.values %}
                {% endfor %}
                {% if upsell.product.attribute.description %}
                        {{ upsell.product.attribute.description }}
                {% endif %}
                {% if upsell.product.attribute.group %}
                {% endif %}
                {% if upsell.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if upsell.product.brand %}
                {{ upsell.product.brand.id }}
                {{ upsell.product.brand.headline }}
                {{ upsell.product.brand.name }}
                {% if upsell.product.brand.flagImportant %} ... {% endif %}
                {% for address in upsell.product.brand.publicContacts %}
                {% endfor %}
                {% for category in upsell.product.brand.categories %}
                {% endfor %}
                {% if upsell.product.brand.code %}
                        {{ upsell.product.brand.code }}
                {% endif %}
                {% if upsell.product.brand.web %}
                        {{ upsell.product.brand.web }}
                {% endif %}
                {% if upsell.product.brand.text %}
                        {{ upsell.product.brand.text }}
                {% endif %}
                {% if upsell.product.brand.image %}
                {% endif %}
                {% if upsell.product.brand.seo %}
                {% endif %}
                {% if upsell.product.brand.contentGrid %}
                        {{ upsell.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.product.image %}
                {{ upsell.product.image.originalHeight }}
                {{ upsell.product.image.originalWidth }}
                {{ upsell.product.image.url }}
                {% if upsell.product.image.alt %}
                        {{ upsell.product.image.alt }}
                {% endif %}
                {% if upsell.product.image.text %}
                        {{ upsell.product.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.product.imageForEnumValueId %}
                {{ upsell.product.imageForEnumValueId.originalHeight }}
                {{ upsell.product.imageForEnumValueId.originalWidth }}
                {{ upsell.product.imageForEnumValueId.url }}
                {% if upsell.product.imageForEnumValueId.alt %}
                        {{ upsell.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if upsell.product.imageForEnumValueId.text %}
                        {{ upsell.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if upsell.product.successor %}
                {{ upsell.product.successor.id }}
                {{ upsell.product.successor.name }}
                {{ upsell.product.successor.trackingId }}
                {{ upsell.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.successor.active %} ... {% endif %}
                {% if upsell.product.successor.compared %} ... {% endif %}
                {% if upsell.product.successor.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.successor.flagNew %} ... {% endif %}
                {% if upsell.product.successor.flagPromo %} ... {% endif %}
                {% if upsell.product.successor.flagSecondHand %} ... {% endif %}
                {% if upsell.product.successor.flagSellout %} ... {% endif %}
                {% if upsell.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.successor.soldSeparately %} ... {% endif %}
                {% for address in upsell.product.successor.publicContacts %}
                {% endfor %}
                {% for attributeInstance in upsell.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.successor.categories %}
                {% endfor %}
                {% for category in upsell.product.successor.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.successor.files %}
                {% endfor %}
                {% for image in upsell.product.successor.images %}
                {% endfor %}
                {% for image in upsell.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.successor.images360 %}
                {% endfor %}
                {% for image in upsell.product.successor.currentImages %}
                {% endfor %}
                {% for image in upsell.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.successor.otherImages %}
                {% endfor %}
                {% for label in upsell.product.successor.labels %}
                {% endfor %}
                {% for productDesigner in upsell.product.successor.configurators %}
                {% endfor %}
                {% for productEnumValue in upsell.product.successor.enumValues %}
                {% endfor %}
                {% for product in upsell.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.successor.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.successor.variants %}
                {% endfor %}
                {% for variant in upsell.product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.successor.videos %}
                {% endfor %}
                {{ upsell.product.successor.trackingIds }}
                {% if upsell.product.successor.currentSubName %}
                        {{ upsell.product.successor.currentSubName }}
                {% endif %}
                {% if upsell.product.successor.nameSuffix %}
                        {{ upsell.product.successor.nameSuffix }}
                {% endif %}
                {% if upsell.product.successor.nameSupplier %}
                        {{ upsell.product.successor.nameSupplier }}
                {% endif %}
                {% if upsell.product.successor.text %}
                        {{ upsell.product.successor.text }}
                {% endif %}
                {% if upsell.product.successor.attribute %}
                {% endif %}
                {% if upsell.product.successor.brand %}
                {% endif %}
                {% if upsell.product.successor.image %}
                {% endif %}
                {% if upsell.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.successor.seo %}
                {% endif %}
                {% if upsell.product.successor.supplier %}
                {% endif %}
                {% if upsell.product.successor.unit %}
                {% endif %}
                {% if upsell.product.successor.variant %}
                {% endif %}
                {% if upsell.product.successor.warranty %}
                {% endif %}
                {% if upsell.product.successor.contentGrid %}
                        {{ upsell.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.product.seo %}
                {% if upsell.product.seo.description %}
                        {{ upsell.product.seo.description }}
                {% endif %}
                {% if upsell.product.seo.keywords %}
                        {{ upsell.product.seo.keywords }}
                {% endif %}
                {% if upsell.product.seo.title %}
                        {{ upsell.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if upsell.product.supplier %}
                {{ upsell.product.supplier.id }}
                {{ upsell.product.supplier.name }}
                {% for address in upsell.product.supplier.publicContacts %}
                {% endfor %}
        {% endif %}
        {% if upsell.product.unit %}
                {{ upsell.product.unit.name }}
        {% endif %}
        {% if upsell.product.variant %}
                {{ upsell.product.variant.id }}
                {{ upsell.product.variant.name }}
                {{ upsell.product.variant.trackingId }}
                {% if upsell.product.variant.active %} ... {% endif %}
                {% if upsell.product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in upsell.product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in upsell.product.variant.enumValues %}
                {% endfor %}
                {% for image in upsell.product.variant.images %}
                {% endfor %}
                {% if upsell.product.variant.legacyRel %}
                        {{ upsell.product.variant.legacyRel }}
                {% endif %}
                {% if upsell.product.variant.image %}
                {% endif %}
        {% endif %}
        {% if upsell.product.warranty %}
                {{ upsell.product.warranty.months }}
        {% endif %}
        {% if upsell.product.contentGrid %}
                {{ upsell.product.contentGrid }}
        {% endif %}
        {{ upsell.group.id }}
        {{ upsell.group.requiredNoteMaximumLength }}
        {{ upsell.group.name }}
        {% if upsell.group.requiredNote %} ... {% endif %}
        {% if upsell.group.requiredUpload %} ... {% endif %}
        {% if upsell.group.singleSelection %} ... {% endif %}
        {% if upsell.group.text %}
                {{ upsell.group.text }}
        {% endif %}
        {% if upsell.group.uploadInput %}
                {{ upsell.group.uploadInput }}
        {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
                {{ upsell.image.originalHeight }}
                {{ upsell.image.originalWidth }}
                {{ upsell.image.url }}
                {% if upsell.image.alt %}
                        {{ upsell.image.alt }}
                {% endif %}
                {% if upsell.image.text %}
                        {{ upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.unit %}
                {{ upsell.unit.name }}
        {% endif %}
{% endfor %}
{{ item.trackingIds }}
{{ item.storageLocations }}

{% if item.packageWeight %}
        {{ item.packageWeight }}
{% endif %}

{% if item.code %}
        {{ item.code }}
{% endif %}

{% if item.packageHeight %}
        {{ item.packageHeight }}
{% endif %}

{% if item.packageLength %}
        {{ item.packageLength }}
{% endif %}

{% if item.packageWidth %}
        {{ item.packageWidth }}
{% endif %}

{% if item.bundle %}
        {% if item.bundle.multiPack %} ... {% endif %}
        {% if item.bundle.price %}
                {{ item.bundle.price.vatRate }}
                {{ item.bundle.price.current.currency }}
                {{ item.bundle.price.current.formatted }}
                {{ item.bundle.price.current.value }}
                {% if item.bundle.price.current.perUnit %}
                {% endif %}
                {% if item.bundle.price.discountPercent %}
                        {{ item.bundle.price.discountPercent }}
                {% endif %}
                {% if item.bundle.price.discountValidTo %}
                        {{ item.bundle.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if item.bundle.price.beforeDiscount %}
                        {{ item.bundle.price.beforeDiscount.currency }}
                        {{ item.bundle.price.beforeDiscount.formatted }}
                        {{ item.bundle.price.beforeDiscount.value }}
                        {% if item.bundle.price.beforeDiscount.perUnit %}
                        {% endif %}
                {% endif %}
                {% if item.bundle.price.discount %}
                        {{ item.bundle.price.discount.currency }}
                        {{ item.bundle.price.discount.formatted }}
                        {{ item.bundle.price.discount.value }}
                        {% if item.bundle.price.discount.perUnit %}
                        {% endif %}
                {% endif %}
        {% endif %}
{% endif %}

{% if item.cheapestDelivery %}
        {{ item.cheapestDelivery.inputId }}
        {{ item.cheapestDelivery.name }}
        {{ item.cheapestDelivery.vatRate }}
        {% if item.cheapestDelivery.branchRequired %} ... {% endif %}
        {% if item.cheapestDelivery.currier %} ... {% endif %}
        {% if item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
        {% if item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
        {% if item.cheapestDelivery.digital %} ... {% endif %}
        {% if item.cheapestDelivery.free %} ... {% endif %}
        {% if item.cheapestDelivery.pickup %} ... {% endif %}
        {% if item.cheapestDelivery.selected %} ... {% endif %}
        {{ item.cheapestDelivery.price.vatRate }}
        {{ item.cheapestDelivery.price.current.currency }}
        {{ item.cheapestDelivery.price.current.formatted }}
        {{ item.cheapestDelivery.price.current.value }}
        {% if item.cheapestDelivery.price.current.perUnit %}
        {% endif %}
        {% if item.cheapestDelivery.price.discountPercent %}
                {{ item.cheapestDelivery.price.discountPercent }}
        {% endif %}
        {% if item.cheapestDelivery.price.discountValidTo %}
                {{ item.cheapestDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.cheapestDelivery.price.beforeDiscount %}
                {{ item.cheapestDelivery.price.beforeDiscount.currency }}
                {{ item.cheapestDelivery.price.beforeDiscount.formatted }}
                {{ item.cheapestDelivery.price.beforeDiscount.value }}
                {% if item.cheapestDelivery.price.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if item.cheapestDelivery.price.discount %}
                {{ item.cheapestDelivery.price.discount.currency }}
                {{ item.cheapestDelivery.price.discount.formatted }}
                {{ item.cheapestDelivery.price.discount.value }}
                {% if item.cheapestDelivery.price.discount.perUnit %}
                {% endif %}
        {% endif %}
        {% if item.cheapestDelivery.text %}
                {{ item.cheapestDelivery.text }}
        {% endif %}
        {% if item.cheapestDelivery.branch %}
                {{ item.cheapestDelivery.branch.code }}
                {{ item.cheapestDelivery.branch.name }}
                {{ item.cheapestDelivery.branch.address }}
                {% if item.cheapestDelivery.branch.address.city %}
                        {{ item.cheapestDelivery.branch.address.city }}
                {% endif %}
                {% if item.cheapestDelivery.branch.address.company %}
                        {{ item.cheapestDelivery.branch.address.company }}
                {% endif %}
                {% if item.cheapestDelivery.branch.address.street %}
                        {{ item.cheapestDelivery.branch.address.street }}
                {% endif %}
                {% if item.cheapestDelivery.branch.address.country %}
                {% endif %}
        {% endif %}
        {% if item.cheapestDelivery.carrier %}
                {{ item.cheapestDelivery.carrier.code }}
                {{ item.cheapestDelivery.carrier.name }}
        {% endif %}
        {% if item.cheapestDelivery.deliveryDate %}
                {{ item.cheapestDelivery.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ item.cheapestDelivery.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ item.cheapestDelivery.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if item.cheapestDelivery.deliveryDate.timeDelivered %}
                        {{ item.cheapestDelivery.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if item.cheapestDelivery.packageType %}
                {{ item.cheapestDelivery.packageType.code }}
        {% endif %}
        {% if item.cheapestDelivery.image %}
                {{ item.cheapestDelivery.image.originalHeight }}
                {{ item.cheapestDelivery.image.originalWidth }}
                {{ item.cheapestDelivery.image.url }}
                {% if item.cheapestDelivery.image.alt %}
                        {{ item.cheapestDelivery.image.alt }}
                {% endif %}
                {% if item.cheapestDelivery.image.text %}
                        {{ item.cheapestDelivery.image.text }}
                {% endif %}
        {% endif %}
{% endif %}

{% if item.freeDelivery %}
        {{ item.freeDelivery.name }}
        {{ item.freeDelivery.vatRate }}
        {% if item.freeDelivery.deliveryAddressRequired %} ... {% endif %}
        {{ item.freeDelivery.payment.inputId }}
        {{ item.freeDelivery.payment.name }}
        {{ item.freeDelivery.payment.url }}
        {{ item.freeDelivery.payment.vatRate }}
        {% if item.freeDelivery.payment.free %} ... {% endif %}
        {% if item.freeDelivery.payment.inAdvance %} ... {% endif %}
        {% if item.freeDelivery.payment.selected %} ... {% endif %}
        {{ item.freeDelivery.payment.price.vatRate }}
        {% if item.freeDelivery.payment.price.discountPercent %}
                {{ item.freeDelivery.payment.price.discountPercent }}
        {% endif %}
        {% if item.freeDelivery.payment.price.discountValidTo %}
                {{ item.freeDelivery.payment.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.freeDelivery.payment.price.beforeDiscount %}
        {% endif %}
        {% if item.freeDelivery.payment.price.discount %}
        {% endif %}
        {% if item.freeDelivery.payment.code %}
                {{ item.freeDelivery.payment.code }}
        {% endif %}
        {% if item.freeDelivery.payment.vs %}
                {{ item.freeDelivery.payment.vs }}
        {% endif %}
        {% if item.freeDelivery.payment.qRCodeHTML %}
                {{ item.freeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if item.freeDelivery.payment.text %}
                {{ item.freeDelivery.payment.text }}
        {% endif %}
        {% if item.freeDelivery.payment.bankAccount %}
                {{ item.freeDelivery.payment.bankAccount }}
                {{ item.freeDelivery.payment.bankAccount.currency }}
                {% if item.freeDelivery.payment.bankAccount.bic %}
                        {{ item.freeDelivery.payment.bankAccount.bic }}
                {% endif %}
                {% if item.freeDelivery.payment.bankAccount.iban %}
                        {{ item.freeDelivery.payment.bankAccount.iban }}
                {% endif %}
                {% if item.freeDelivery.payment.bankAccount.local %}
                        {{ item.freeDelivery.payment.bankAccount.local }}
                {% endif %}
        {% endif %}
        {% if item.freeDelivery.payment.image %}
                {{ item.freeDelivery.payment.image.originalHeight }}
                {{ item.freeDelivery.payment.image.originalWidth }}
                {{ item.freeDelivery.payment.image.url }}
                {% if item.freeDelivery.payment.image.alt %}
                        {{ item.freeDelivery.payment.image.alt }}
                {% endif %}
                {% if item.freeDelivery.payment.image.text %}
                        {{ item.freeDelivery.payment.image.text }}
                {% endif %}
        {% endif %}
        {{ item.freeDelivery.transport.inputId }}
        {{ item.freeDelivery.transport.name }}
        {{ item.freeDelivery.transport.vatRate }}
        {% if item.freeDelivery.transport.branchRequired %} ... {% endif %}
        {% if item.freeDelivery.transport.currier %} ... {% endif %}
        {% if item.freeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if item.freeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if item.freeDelivery.transport.digital %} ... {% endif %}
        {% if item.freeDelivery.transport.free %} ... {% endif %}
        {% if item.freeDelivery.transport.pickup %} ... {% endif %}
        {% if item.freeDelivery.transport.selected %} ... {% endif %}
        {{ item.freeDelivery.transport.price.vatRate }}
        {% if item.freeDelivery.transport.price.discountPercent %}
                {{ item.freeDelivery.transport.price.discountPercent }}
        {% endif %}
        {% if item.freeDelivery.transport.price.discountValidTo %}
                {{ item.freeDelivery.transport.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.freeDelivery.transport.price.beforeDiscount %}
        {% endif %}
        {% if item.freeDelivery.transport.price.discount %}
        {% endif %}
        {% if item.freeDelivery.transport.text %}
                {{ item.freeDelivery.transport.text }}
        {% endif %}
        {% if item.freeDelivery.transport.branch %}
                {{ item.freeDelivery.transport.branch.code }}
                {{ item.freeDelivery.transport.branch.name }}
        {% endif %}
        {% if item.freeDelivery.transport.carrier %}
                {{ item.freeDelivery.transport.carrier.code }}
                {{ item.freeDelivery.transport.carrier.name }}
        {% endif %}
        {% if item.freeDelivery.transport.deliveryDate %}
                {{ item.freeDelivery.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ item.freeDelivery.transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ item.freeDelivery.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if item.freeDelivery.transport.deliveryDate.timeDelivered %}
                        {{ item.freeDelivery.transport.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if item.freeDelivery.transport.packageType %}
                {{ item.freeDelivery.transport.packageType.code }}
        {% endif %}
        {% if item.freeDelivery.transport.image %}
                {{ item.freeDelivery.transport.image.originalHeight }}
                {{ item.freeDelivery.transport.image.originalWidth }}
                {{ item.freeDelivery.transport.image.url }}
                {% if item.freeDelivery.transport.image.alt %}
                        {{ item.freeDelivery.transport.image.alt }}
                {% endif %}
                {% if item.freeDelivery.transport.image.text %}
                        {{ item.freeDelivery.transport.image.text }}
                {% endif %}
        {% endif %}
        {{ item.freeDelivery.price.vatRate }}
        {{ item.freeDelivery.price.current.currency }}
        {{ item.freeDelivery.price.current.formatted }}
        {{ item.freeDelivery.price.current.value }}
        {% if item.freeDelivery.price.current.perUnit %}
        {% endif %}
        {% if item.freeDelivery.price.discountPercent %}
                {{ item.freeDelivery.price.discountPercent }}
        {% endif %}
        {% if item.freeDelivery.price.discountValidTo %}
                {{ item.freeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.freeDelivery.price.beforeDiscount %}
                {{ item.freeDelivery.price.beforeDiscount.currency }}
                {{ item.freeDelivery.price.beforeDiscount.formatted }}
                {{ item.freeDelivery.price.beforeDiscount.value }}
                {% if item.freeDelivery.price.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if item.freeDelivery.price.discount %}
                {{ item.freeDelivery.price.discount.currency }}
                {{ item.freeDelivery.price.discount.formatted }}
                {{ item.freeDelivery.price.discount.value }}
                {% if item.freeDelivery.price.discount.perUnit %}
                {% endif %}
        {% endif %}
        {% if item.freeDelivery.id %}
                {{ item.freeDelivery.id }}
        {% endif %}
        {% if item.freeDelivery.freeLimit %}
                {{ item.freeDelivery.freeLimit.percent }}
                {{ item.freeDelivery.freeLimit.total.currency }}
                {{ item.freeDelivery.freeLimit.total.formatted }}
                {{ item.freeDelivery.freeLimit.total.value }}
                {% if item.freeDelivery.freeLimit.total.perUnit %}
                {% endif %}
                {{ item.freeDelivery.freeLimit.remains.currency }}
                {{ item.freeDelivery.freeLimit.remains.formatted }}
                {{ item.freeDelivery.freeLimit.remains.value }}
                {% if item.freeDelivery.freeLimit.remains.perUnit %}
                {% endif %}
        {% endif %}
{% endif %}

{% if item.closestFreeDelivery %}
        {{ item.closestFreeDelivery.name }}
        {{ item.closestFreeDelivery.vatRate }}
        {% if item.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
        {{ item.closestFreeDelivery.payment.inputId }}
        {{ item.closestFreeDelivery.payment.name }}
        {{ item.closestFreeDelivery.payment.url }}
        {{ item.closestFreeDelivery.payment.vatRate }}
        {% if item.closestFreeDelivery.payment.free %} ... {% endif %}
        {% if item.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
        {% if item.closestFreeDelivery.payment.selected %} ... {% endif %}
        {{ item.closestFreeDelivery.payment.price.vatRate }}
        {% if item.closestFreeDelivery.payment.price.discountPercent %}
                {{ item.closestFreeDelivery.payment.price.discountPercent }}
        {% endif %}
        {% if item.closestFreeDelivery.payment.price.discountValidTo %}
                {{ item.closestFreeDelivery.payment.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.closestFreeDelivery.payment.price.beforeDiscount %}
        {% endif %}
        {% if item.closestFreeDelivery.payment.price.discount %}
        {% endif %}
        {% if item.closestFreeDelivery.payment.code %}
                {{ item.closestFreeDelivery.payment.code }}
        {% endif %}
        {% if item.closestFreeDelivery.payment.vs %}
                {{ item.closestFreeDelivery.payment.vs }}
        {% endif %}
        {% if item.closestFreeDelivery.payment.qRCodeHTML %}
                {{ item.closestFreeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if item.closestFreeDelivery.payment.text %}
                {{ item.closestFreeDelivery.payment.text }}
        {% endif %}
        {% if item.closestFreeDelivery.payment.bankAccount %}
                {{ item.closestFreeDelivery.payment.bankAccount }}
                {{ item.closestFreeDelivery.payment.bankAccount.currency }}
                {% if item.closestFreeDelivery.payment.bankAccount.bic %}
                        {{ item.closestFreeDelivery.payment.bankAccount.bic }}
                {% endif %}
                {% if item.closestFreeDelivery.payment.bankAccount.iban %}
                        {{ item.closestFreeDelivery.payment.bankAccount.iban }}
                {% endif %}
                {% if item.closestFreeDelivery.payment.bankAccount.local %}
                        {{ item.closestFreeDelivery.payment.bankAccount.local }}
                {% endif %}
        {% endif %}
        {% if item.closestFreeDelivery.payment.image %}
                {{ item.closestFreeDelivery.payment.image.originalHeight }}
                {{ item.closestFreeDelivery.payment.image.originalWidth }}
                {{ item.closestFreeDelivery.payment.image.url }}
                {% if item.closestFreeDelivery.payment.image.alt %}
                        {{ item.closestFreeDelivery.payment.image.alt }}
                {% endif %}
                {% if item.closestFreeDelivery.payment.image.text %}
                        {{ item.closestFreeDelivery.payment.image.text }}
                {% endif %}
        {% endif %}
        {{ item.closestFreeDelivery.transport.inputId }}
        {{ item.closestFreeDelivery.transport.name }}
        {{ item.closestFreeDelivery.transport.vatRate }}
        {% if item.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
        {% if item.closestFreeDelivery.transport.currier %} ... {% endif %}
        {% if item.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if item.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if item.closestFreeDelivery.transport.digital %} ... {% endif %}
        {% if item.closestFreeDelivery.transport.free %} ... {% endif %}
        {% if item.closestFreeDelivery.transport.pickup %} ... {% endif %}
        {% if item.closestFreeDelivery.transport.selected %} ... {% endif %}
        {{ item.closestFreeDelivery.transport.price.vatRate }}
        {% if item.closestFreeDelivery.transport.price.discountPercent %}
                {{ item.closestFreeDelivery.transport.price.discountPercent }}
        {% endif %}
        {% if item.closestFreeDelivery.transport.price.discountValidTo %}
                {{ item.closestFreeDelivery.transport.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.closestFreeDelivery.transport.price.beforeDiscount %}
        {% endif %}
        {% if item.closestFreeDelivery.transport.price.discount %}
        {% endif %}
        {% if item.closestFreeDelivery.transport.text %}
                {{ item.closestFreeDelivery.transport.text }}
        {% endif %}
        {% if item.closestFreeDelivery.transport.branch %}
                {{ item.closestFreeDelivery.transport.branch.code }}
                {{ item.closestFreeDelivery.transport.branch.name }}
        {% endif %}
        {% if item.closestFreeDelivery.transport.carrier %}
                {{ item.closestFreeDelivery.transport.carrier.code }}
                {{ item.closestFreeDelivery.transport.carrier.name }}
        {% endif %}
        {% if item.closestFreeDelivery.transport.deliveryDate %}
                {{ item.closestFreeDelivery.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ item.closestFreeDelivery.transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ item.closestFreeDelivery.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if item.closestFreeDelivery.transport.deliveryDate.timeDelivered %}
                        {{ item.closestFreeDelivery.transport.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if item.closestFreeDelivery.transport.packageType %}
                {{ item.closestFreeDelivery.transport.packageType.code }}
        {% endif %}
        {% if item.closestFreeDelivery.transport.image %}
                {{ item.closestFreeDelivery.transport.image.originalHeight }}
                {{ item.closestFreeDelivery.transport.image.originalWidth }}
                {{ item.closestFreeDelivery.transport.image.url }}
                {% if item.closestFreeDelivery.transport.image.alt %}
                        {{ item.closestFreeDelivery.transport.image.alt }}
                {% endif %}
                {% if item.closestFreeDelivery.transport.image.text %}
                        {{ item.closestFreeDelivery.transport.image.text }}
                {% endif %}
        {% endif %}
        {{ item.closestFreeDelivery.price.vatRate }}
        {{ item.closestFreeDelivery.price.current.currency }}
        {{ item.closestFreeDelivery.price.current.formatted }}
        {{ item.closestFreeDelivery.price.current.value }}
        {% if item.closestFreeDelivery.price.current.perUnit %}
        {% endif %}
        {% if item.closestFreeDelivery.price.discountPercent %}
                {{ item.closestFreeDelivery.price.discountPercent }}
        {% endif %}
        {% if item.closestFreeDelivery.price.discountValidTo %}
                {{ item.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.closestFreeDelivery.price.beforeDiscount %}
                {{ item.closestFreeDelivery.price.beforeDiscount.currency }}
                {{ item.closestFreeDelivery.price.beforeDiscount.formatted }}
                {{ item.closestFreeDelivery.price.beforeDiscount.value }}
                {% if item.closestFreeDelivery.price.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if item.closestFreeDelivery.price.discount %}
                {{ item.closestFreeDelivery.price.discount.currency }}
                {{ item.closestFreeDelivery.price.discount.formatted }}
                {{ item.closestFreeDelivery.price.discount.value }}
                {% if item.closestFreeDelivery.price.discount.perUnit %}
                {% endif %}
        {% endif %}
        {% if item.closestFreeDelivery.id %}
                {{ item.closestFreeDelivery.id }}
        {% endif %}
        {% if item.closestFreeDelivery.freeLimit %}
                {{ item.closestFreeDelivery.freeLimit.percent }}
                {{ item.closestFreeDelivery.freeLimit.total.currency }}
                {{ item.closestFreeDelivery.freeLimit.total.formatted }}
                {{ item.closestFreeDelivery.freeLimit.total.value }}
                {% if item.closestFreeDelivery.freeLimit.total.perUnit %}
                {% endif %}
                {{ item.closestFreeDelivery.freeLimit.remains.currency }}
                {{ item.closestFreeDelivery.freeLimit.remains.formatted }}
                {{ item.closestFreeDelivery.freeLimit.remains.value }}
                {% if item.closestFreeDelivery.freeLimit.remains.perUnit %}
                {% endif %}
        {% endif %}
{% endif %}

{% if item.packageDimensions %}
        {{ item.packageDimensions }}
        {{ item.packageDimensions.unit }}
        {{ item.packageDimensions.height }}
        {{ item.packageDimensions.length }}
        {{ item.packageDimensions.width }}
{% endif %}

{% if item.image %}
        {{ item.image.originalHeight }}
        {{ item.image.originalWidth }}
        {{ item.image.url }}
        {% if item.image.alt %}
                {{ item.image.alt }}
        {% endif %}
        {% if item.image.text %}
                {{ item.image.text }}
        {% endif %}
{% endif %}

{% if item.price %}
        {{ item.price.vatRate }}
        {{ item.price.current.currency }}
        {{ item.price.current.formatted }}
        {{ item.price.current.value }}
        {% if item.price.current.perUnit %}
                {{ item.price.current.perUnit }}
                {{ item.price.current.perUnit.formatted }}
                {{ item.price.current.perUnit.unit }}
        {% endif %}
        {% if item.price.discountPercent %}
                {{ item.price.discountPercent }}
        {% endif %}
        {% if item.price.discountValidTo %}
                {{ item.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.price.beforeDiscount %}
                {{ item.price.beforeDiscount.currency }}
                {{ item.price.beforeDiscount.formatted }}
                {{ item.price.beforeDiscount.value }}
                {% if item.price.beforeDiscount.perUnit %}
                        {{ item.price.beforeDiscount.perUnit }}
                        {{ item.price.beforeDiscount.perUnit.formatted }}
                        {{ item.price.beforeDiscount.perUnit.unit }}
                {% endif %}
        {% endif %}
        {% if item.price.discount %}
                {{ item.price.discount.currency }}
                {{ item.price.discount.formatted }}
                {{ item.price.discount.value }}
                {% if item.price.discount.perUnit %}
                        {{ item.price.discount.perUnit }}
                        {{ item.price.discount.perUnit.formatted }}
                        {{ item.price.discount.perUnit.unit }}
                {% endif %}
        {% endif %}
{% endif %}

{% if item.url %}
        {{ item.url }}
        {{ item.url.absolute }}
        {{ item.url.path }}
{% endif %}

{% if item.variant %}
        {{ item.variant.id }}
        {{ item.variant.name }}
        {{ item.variant.trackingId }}
        {% if item.variant.active %} ... {% endif %}
        {% if item.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in item.variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in item.variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {{ enumValue.enum.id }}
                {{ enumValue.enum.name }}
                {% for enumValue in enumValue.enum.values %}
                {% endfor %}
                {% if enumValue.enum.text %}
                        {{ enumValue.enum.text }}
                {% endif %}
                {% if enumValue.enum.meaning %}
                {% endif %}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                        {{ enumValue.image.originalHeight }}
                        {{ enumValue.image.originalWidth }}
                        {{ enumValue.image.url }}
                        {% if enumValue.image.alt %}
                                {{ enumValue.image.alt }}
                        {% endif %}
                        {% if enumValue.image.text %}
                                {{ enumValue.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for image in item.variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ item.variant.item.cartAmountRequiredMultiplier }}
        {{ item.variant.item.id }}
        {{ item.variant.item.loyaltyPointsAmount }}
        {{ item.variant.item.name }}
        {{ item.variant.item.trackingId }}
        {% if item.variant.item.digital %} ... {% endif %}
        {% if item.variant.item.sellable %} ... {% endif %}
        {% if item.variant.item.service %} ... {% endif %}
        {{ item.variant.item.availability.availableAmount }}
        {{ item.variant.item.availability.availableAmountExpectedToStorageRoom }}
        {{ item.variant.item.availability.availableAmountInShowroom }}
        {{ item.variant.item.availability.availableAmountInStockroom }}
        {{ item.variant.item.availability.availableAmountInStorageCenter }}
        {{ item.variant.item.availability.availableAmountOnWayToStorageRoom }}
        {{ item.variant.item.availability.availableDemandsAmountFromSupplierToStorageRoom }}
        {{ item.variant.item.availability.hours }}
        {{ item.variant.item.availability.totalAmount }}
        {% if item.variant.item.availability.inShowroom %} ... {% endif %}
        {% if item.variant.item.availability.inStock %} ... {% endif %}
        {% if item.variant.item.availability.preorder %} ... {% endif %}
        {% if item.variant.item.availability.watchdogSupported %} ... {% endif %}
        {% for deliveryOption in item.variant.item.availability.deliveryOptions %}
        {% endfor %}
        {% for expectedAmount in item.variant.item.availability.availableAmountsExpectedToStorageRoom %}
        {% endfor %}
        {% for expectedAmount in item.variant.item.availability.availableAmountsOnWayToStorageRoom %}
        {% endfor %}
        {% for expectedSupplierAmount in item.variant.item.availability.availableDemandsFromSupplierToStorageRoom %}
        {% endfor %}
        {% if item.variant.item.availability.text %}
                {{ item.variant.item.availability.text }}
        {% endif %}
        {% if item.variant.item.availability.dateExpected %}
                {{ item.variant.item.availability.dateExpected|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.variant.item.availability.deliveryOption %}
        {% endif %}
        {% for availableUpsellGroup in item.variant.item.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ item.variant.item.product.id }}
        {{ item.variant.item.product.name }}
        {{ item.variant.item.product.trackingId }}
        {{ item.variant.item.product.dateCreated|date('d. m. Y H:i') }}
        {% if item.variant.item.product.active %} ... {% endif %}
        {% if item.variant.item.product.compared %} ... {% endif %}
        {% if item.variant.item.product.differentVariantPrices %} ... {% endif %}
        {% if item.variant.item.product.flagNew %} ... {% endif %}
        {% if item.variant.item.product.flagPromo %} ... {% endif %}
        {% if item.variant.item.product.flagSecondHand %} ... {% endif %}
        {% if item.variant.item.product.flagSellout %} ... {% endif %}
        {% if item.variant.item.product.otherDiscountApplicable %} ... {% endif %}
        {% if item.variant.item.product.soldSeparately %} ... {% endif %}
        {% for address in item.variant.item.product.publicContacts %}
        {% endfor %}
        {% for attributeInstance in item.variant.item.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in item.variant.item.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in item.variant.item.product.categories %}
        {% endfor %}
        {% for category in item.variant.item.product.otherCategories %}
        {% endfor %}
        {% for file in item.variant.item.product.files %}
        {% endfor %}
        {% for image in item.variant.item.product.images %}
        {% endfor %}
        {% for image in item.variant.item.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in item.variant.item.product.images360 %}
        {% endfor %}
        {% for image in item.variant.item.product.currentImages %}
        {% endfor %}
        {% for image in item.variant.item.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in item.variant.item.product.otherImages %}
        {% endfor %}
        {% for label in item.variant.item.product.labels %}
        {% endfor %}
        {% for productDesigner in item.variant.item.product.configurators %}
        {% endfor %}
        {% for productEnumValue in item.variant.item.product.enumValues %}
        {% endfor %}
        {% for product in item.variant.item.product.packTemplateProducts %}
        {% endfor %}
        {% for upsell in item.variant.item.product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in item.variant.item.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in item.variant.item.product.currentVariants %}
        {% endfor %}
        {% for variant in item.variant.item.product.variants %}
        {% endfor %}
        {% for variant in item.variant.item.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in item.variant.item.product.videos %}
        {% endfor %}
        {{ item.variant.item.product.trackingIds }}
        {% if item.variant.item.product.currentSubName %}
                {{ item.variant.item.product.currentSubName }}
        {% endif %}
        {% if item.variant.item.product.nameSuffix %}
                {{ item.variant.item.product.nameSuffix }}
        {% endif %}
        {% if item.variant.item.product.nameSupplier %}
                {{ item.variant.item.product.nameSupplier }}
        {% endif %}
        {% if item.variant.item.product.text %}
                {{ item.variant.item.product.text }}
        {% endif %}
        {% if item.variant.item.product.attribute %}
        {% endif %}
        {% if item.variant.item.product.brand %}
        {% endif %}
        {% if item.variant.item.product.image %}
        {% endif %}
        {% if item.variant.item.product.imageForEnumValueId %}
        {% endif %}
        {% if item.variant.item.product.successor %}
        {% endif %}
        {% if item.variant.item.product.seo %}
        {% endif %}
        {% if item.variant.item.product.supplier %}
        {% endif %}
        {% if item.variant.item.product.unit %}
        {% endif %}
        {% if item.variant.item.product.warranty %}
        {% endif %}
        {% if item.variant.item.product.contentGrid %}
                {{ item.variant.item.product.contentGrid }}
        {% endif %}
        {% for upsell in item.variant.item.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ item.variant.item.trackingIds }}
        {{ item.variant.item.storageLocations }}
        {% if item.variant.item.packageWeight %}
                {{ item.variant.item.packageWeight }}
        {% endif %}
        {% if item.variant.item.code %}
                {{ item.variant.item.code }}
        {% endif %}
        {% if item.variant.item.packageHeight %}
                {{ item.variant.item.packageHeight }}
        {% endif %}
        {% if item.variant.item.packageLength %}
                {{ item.variant.item.packageLength }}
        {% endif %}
        {% if item.variant.item.packageWidth %}
                {{ item.variant.item.packageWidth }}
        {% endif %}
        {% if item.variant.item.bundle %}
                {% if item.variant.item.bundle.multiPack %} ... {% endif %}
                {% if item.variant.item.bundle.price %}
                {% endif %}
        {% endif %}
        {% if item.variant.item.cheapestDelivery %}
                {{ item.variant.item.cheapestDelivery.inputId }}
                {{ item.variant.item.cheapestDelivery.name }}
                {{ item.variant.item.cheapestDelivery.vatRate }}
                {% if item.variant.item.cheapestDelivery.branchRequired %} ... {% endif %}
                {% if item.variant.item.cheapestDelivery.currier %} ... {% endif %}
                {% if item.variant.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                {% if item.variant.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                {% if item.variant.item.cheapestDelivery.digital %} ... {% endif %}
                {% if item.variant.item.cheapestDelivery.free %} ... {% endif %}
                {% if item.variant.item.cheapestDelivery.pickup %} ... {% endif %}
                {% if item.variant.item.cheapestDelivery.selected %} ... {% endif %}
                {% if item.variant.item.cheapestDelivery.text %}
                        {{ item.variant.item.cheapestDelivery.text }}
                {% endif %}
                {% if item.variant.item.cheapestDelivery.branch %}
                {% endif %}
                {% if item.variant.item.cheapestDelivery.carrier %}
                {% endif %}
                {% if item.variant.item.cheapestDelivery.deliveryDate %}
                {% endif %}
                {% if item.variant.item.cheapestDelivery.packageType %}
                {% endif %}
                {% if item.variant.item.cheapestDelivery.image %}
                {% endif %}
        {% endif %}
        {% if item.variant.item.freeDelivery %}
                {{ item.variant.item.freeDelivery.name }}
                {{ item.variant.item.freeDelivery.vatRate }}
                {% if item.variant.item.freeDelivery.deliveryAddressRequired %} ... {% endif %}
                {% if item.variant.item.freeDelivery.id %}
                        {{ item.variant.item.freeDelivery.id }}
                {% endif %}
                {% if item.variant.item.freeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if item.variant.item.closestFreeDelivery %}
                {{ item.variant.item.closestFreeDelivery.name }}
                {{ item.variant.item.closestFreeDelivery.vatRate }}
                {% if item.variant.item.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
                {% if item.variant.item.closestFreeDelivery.id %}
                        {{ item.variant.item.closestFreeDelivery.id }}
                {% endif %}
                {% if item.variant.item.closestFreeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if item.variant.item.packageDimensions %}
                {{ item.variant.item.packageDimensions }}
                {{ item.variant.item.packageDimensions.unit }}
                {{ item.variant.item.packageDimensions.height }}
                {{ item.variant.item.packageDimensions.length }}
                {{ item.variant.item.packageDimensions.width }}
        {% endif %}
        {% if item.variant.item.image %}
                {{ item.variant.item.image.originalHeight }}
                {{ item.variant.item.image.originalWidth }}
                {{ item.variant.item.image.url }}
                {% if item.variant.item.image.alt %}
                        {{ item.variant.item.image.alt }}
                {% endif %}
                {% if item.variant.item.image.text %}
                        {{ item.variant.item.image.text }}
                {% endif %}
        {% endif %}
        {% if item.variant.item.price %}
                {{ item.variant.item.price.vatRate }}
                {% if item.variant.item.price.discountPercent %}
                        {{ item.variant.item.price.discountPercent }}
                {% endif %}
                {% if item.variant.item.price.discountValidTo %}
                        {{ item.variant.item.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if item.variant.item.price.beforeDiscount %}
                {% endif %}
                {% if item.variant.item.price.discount %}
                {% endif %}
        {% endif %}
        {% if item.variant.item.url %}
                {{ item.variant.item.url }}
                {{ item.variant.item.url.absolute }}
                {{ item.variant.item.url.path }}
        {% endif %}
        {{ item.variant.product.id }}
        {{ item.variant.product.name }}
        {{ item.variant.product.trackingId }}
        {{ item.variant.product.dateCreated|date('d. m. Y H:i') }}
        {% if item.variant.product.active %} ... {% endif %}
        {% if item.variant.product.compared %} ... {% endif %}
        {% if item.variant.product.differentVariantPrices %} ... {% endif %}
        {% if item.variant.product.flagNew %} ... {% endif %}
        {% if item.variant.product.flagPromo %} ... {% endif %}
        {% if item.variant.product.flagSecondHand %} ... {% endif %}
        {% if item.variant.product.flagSellout %} ... {% endif %}
        {% if item.variant.product.otherDiscountApplicable %} ... {% endif %}
        {% if item.variant.product.soldSeparately %} ... {% endif %}
        {% for address in item.variant.product.publicContacts %}
                {% if address.city %}
                        {{ address.city }}
                {% endif %}
                {% if address.company %}
                        {{ address.company }}
                {% endif %}
                {% if address.companyId %}
                        {{ address.companyId }}
                {% endif %}
                {% if address.email %}
                        {{ address.email }}
                {% endif %}
                {% if address.phone %}
                        {{ address.phone }}
                {% endif %}
                {% if address.region %}
                        {{ address.region }}
                {% endif %}
                {% if address.street %}
                        {{ address.street }}
                {% endif %}
                {% if address.vatId %}
                        {{ address.vatId }}
                {% endif %}
                {% if address.web %}
                        {{ address.web }}
                {% endif %}
                {% if address.zip %}
                        {{ address.zip }}
                {% endif %}
                {% if address.purpose %}
                {% endif %}
                {% if address.country %}
                {% endif %}
        {% endfor %}
        {% for attributeInstance in item.variant.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in item.variant.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ item.variant.product.category.id }}
        {{ item.variant.product.category.productCount }}
        {{ item.variant.product.category.productInStockCount }}
        {{ item.variant.product.category.totalStockQuantity }}
        {{ item.variant.product.category.headline }}
        {{ item.variant.product.category.menuName }}
        {{ item.variant.product.category.name }}
        {% if item.variant.product.category.flagErotic %} ... {% endif %}
        {% if item.variant.product.category.flagImportant %} ... {% endif %}
        {% if item.variant.product.category.noFollow %} ... {% endif %}
        {% for category in item.variant.product.category.subcategories %}
        {% endfor %}
        {% for video in item.variant.product.category.videos %}
        {% endfor %}
        {{ item.variant.product.category.pathNames }}
        {{ item.variant.product.category.pathIds }}
        {{ item.variant.product.category.templateAttribute }}
        {% if item.variant.product.category.subHeadline %}
                {{ item.variant.product.category.subHeadline }}
        {% endif %}
        {% if item.variant.product.category.text %}
                {{ item.variant.product.category.text }}
        {% endif %}
        {% if item.variant.product.category.parent %}
        {% endif %}
        {% if item.variant.product.category.image %}
        {% endif %}
        {% if item.variant.product.category.contentGrid %}
                {{ item.variant.product.category.contentGrid }}
        {% endif %}
        {% for category in item.variant.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in item.variant.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in item.variant.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in item.variant.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.variant.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.variant.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.variant.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.variant.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.variant.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ item.variant.product.item.cartAmountRequiredMultiplier }}
        {{ item.variant.product.item.id }}
        {{ item.variant.product.item.loyaltyPointsAmount }}
        {{ item.variant.product.item.name }}
        {{ item.variant.product.item.trackingId }}
        {% if item.variant.product.item.digital %} ... {% endif %}
        {% if item.variant.product.item.sellable %} ... {% endif %}
        {% if item.variant.product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in item.variant.product.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in item.variant.product.item.availableUpsells %}
        {% endfor %}
        {{ item.variant.product.item.trackingIds }}
        {{ item.variant.product.item.storageLocations }}
        {% if item.variant.product.item.packageWeight %}
                {{ item.variant.product.item.packageWeight }}
        {% endif %}
        {% if item.variant.product.item.code %}
                {{ item.variant.product.item.code }}
        {% endif %}
        {% if item.variant.product.item.packageHeight %}
                {{ item.variant.product.item.packageHeight }}
        {% endif %}
        {% if item.variant.product.item.packageLength %}
                {{ item.variant.product.item.packageLength }}
        {% endif %}
        {% if item.variant.product.item.packageWidth %}
                {{ item.variant.product.item.packageWidth }}
        {% endif %}
        {% if item.variant.product.item.bundle %}
        {% endif %}
        {% if item.variant.product.item.cheapestDelivery %}
        {% endif %}
        {% if item.variant.product.item.freeDelivery %}
        {% endif %}
        {% if item.variant.product.item.closestFreeDelivery %}
        {% endif %}
        {% if item.variant.product.item.packageDimensions %}
        {% endif %}
        {% if item.variant.product.item.image %}
        {% endif %}
        {% if item.variant.product.item.price %}
        {% endif %}
        {% if item.variant.product.item.url %}
        {% endif %}
        {% for label in item.variant.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productDesigner in item.variant.product.configurators %}
                {{ productDesigner.name }}
                {% if productDesigner.result %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in item.variant.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in item.variant.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for address in product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productDesigner in product.configurators %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for upsell in product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ item.variant.product.rating.count }}
        {% if item.variant.product.rating.voted %} ... {% endif %}
        {% if item.variant.product.rating.average %}
                {{ item.variant.product.rating.average }}
        {% endif %}
        {% for upsell in item.variant.product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ item.variant.product.url }}
        {{ item.variant.product.url.absolute }}
        {{ item.variant.product.url.path }}
        {% for variantChoiceStep in item.variant.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in item.variant.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in item.variant.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in item.variant.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ item.variant.product.variantType.id }}
        {{ item.variant.product.variantType.name }}
        {% for video in item.variant.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ item.variant.product.trackingIds }}
        {% if item.variant.product.currentSubName %}
                {{ item.variant.product.currentSubName }}
        {% endif %}
        {% if item.variant.product.nameSuffix %}
                {{ item.variant.product.nameSuffix }}
        {% endif %}
        {% if item.variant.product.nameSupplier %}
                {{ item.variant.product.nameSupplier }}
        {% endif %}
        {% if item.variant.product.text %}
                {{ item.variant.product.text }}
        {% endif %}
        {% if item.variant.product.attribute %}
                {{ item.variant.product.attribute.name }}
                {{ item.variant.product.attribute.valuesHtml }}
                {% for attributeValueInstance in item.variant.product.attribute.values %}
                {% endfor %}
                {% if item.variant.product.attribute.description %}
                        {{ item.variant.product.attribute.description }}
                {% endif %}
                {% if item.variant.product.attribute.group %}
                {% endif %}
                {% if item.variant.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if item.variant.product.brand %}
                {{ item.variant.product.brand.id }}
                {{ item.variant.product.brand.headline }}
                {{ item.variant.product.brand.name }}
                {% if item.variant.product.brand.flagImportant %} ... {% endif %}
                {% for address in item.variant.product.brand.publicContacts %}
                {% endfor %}
                {% for category in item.variant.product.brand.categories %}
                {% endfor %}
                {% if item.variant.product.brand.code %}
                        {{ item.variant.product.brand.code }}
                {% endif %}
                {% if item.variant.product.brand.web %}
                        {{ item.variant.product.brand.web }}
                {% endif %}
                {% if item.variant.product.brand.text %}
                        {{ item.variant.product.brand.text }}
                {% endif %}
                {% if item.variant.product.brand.image %}
                {% endif %}
                {% if item.variant.product.brand.seo %}
                {% endif %}
                {% if item.variant.product.brand.contentGrid %}
                        {{ item.variant.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if item.variant.product.image %}
                {{ item.variant.product.image.originalHeight }}
                {{ item.variant.product.image.originalWidth }}
                {{ item.variant.product.image.url }}
                {% if item.variant.product.image.alt %}
                        {{ item.variant.product.image.alt }}
                {% endif %}
                {% if item.variant.product.image.text %}
                        {{ item.variant.product.image.text }}
                {% endif %}
        {% endif %}
        {% if item.variant.product.imageForEnumValueId %}
                {{ item.variant.product.imageForEnumValueId.originalHeight }}
                {{ item.variant.product.imageForEnumValueId.originalWidth }}
                {{ item.variant.product.imageForEnumValueId.url }}
                {% if item.variant.product.imageForEnumValueId.alt %}
                        {{ item.variant.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if item.variant.product.imageForEnumValueId.text %}
                        {{ item.variant.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if item.variant.product.successor %}
                {{ item.variant.product.successor.id }}
                {{ item.variant.product.successor.name }}
                {{ item.variant.product.successor.trackingId }}
                {{ item.variant.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if item.variant.product.successor.active %} ... {% endif %}
                {% if item.variant.product.successor.compared %} ... {% endif %}
                {% if item.variant.product.successor.differentVariantPrices %} ... {% endif %}
                {% if item.variant.product.successor.flagNew %} ... {% endif %}
                {% if item.variant.product.successor.flagPromo %} ... {% endif %}
                {% if item.variant.product.successor.flagSecondHand %} ... {% endif %}
                {% if item.variant.product.successor.flagSellout %} ... {% endif %}
                {% if item.variant.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if item.variant.product.successor.soldSeparately %} ... {% endif %}
                {% for address in item.variant.product.successor.publicContacts %}
                {% endfor %}
                {% for attributeInstance in item.variant.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in item.variant.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in item.variant.product.successor.categories %}
                {% endfor %}
                {% for category in item.variant.product.successor.otherCategories %}
                {% endfor %}
                {% for file in item.variant.product.successor.files %}
                {% endfor %}
                {% for image in item.variant.product.successor.images %}
                {% endfor %}
                {% for image in item.variant.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in item.variant.product.successor.images360 %}
                {% endfor %}
                {% for image in item.variant.product.successor.currentImages %}
                {% endfor %}
                {% for image in item.variant.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in item.variant.product.successor.otherImages %}
                {% endfor %}
                {% for label in item.variant.product.successor.labels %}
                {% endfor %}
                {% for productDesigner in item.variant.product.successor.configurators %}
                {% endfor %}
                {% for productEnumValue in item.variant.product.successor.enumValues %}
                {% endfor %}
                {% for product in item.variant.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for upsell in item.variant.product.successor.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in item.variant.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in item.variant.product.successor.currentVariants %}
                {% endfor %}
                {% for variant in item.variant.product.successor.variants %}
                {% endfor %}
                {% for variant in item.variant.product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in item.variant.product.successor.videos %}
                {% endfor %}
                {{ item.variant.product.successor.trackingIds }}
                {% if item.variant.product.successor.currentSubName %}
                        {{ item.variant.product.successor.currentSubName }}
                {% endif %}
                {% if item.variant.product.successor.nameSuffix %}
                        {{ item.variant.product.successor.nameSuffix }}
                {% endif %}
                {% if item.variant.product.successor.nameSupplier %}
                        {{ item.variant.product.successor.nameSupplier }}
                {% endif %}
                {% if item.variant.product.successor.text %}
                        {{ item.variant.product.successor.text }}
                {% endif %}
                {% if item.variant.product.successor.attribute %}
                {% endif %}
                {% if item.variant.product.successor.brand %}
                {% endif %}
                {% if item.variant.product.successor.image %}
                {% endif %}
                {% if item.variant.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if item.variant.product.successor.seo %}
                {% endif %}
                {% if item.variant.product.successor.supplier %}
                {% endif %}
                {% if item.variant.product.successor.unit %}
                {% endif %}
                {% if item.variant.product.successor.warranty %}
                {% endif %}
                {% if item.variant.product.successor.contentGrid %}
                        {{ item.variant.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if item.variant.product.seo %}
                {% if item.variant.product.seo.description %}
                        {{ item.variant.product.seo.description }}
                {% endif %}
                {% if item.variant.product.seo.keywords %}
                        {{ item.variant.product.seo.keywords }}
                {% endif %}
                {% if item.variant.product.seo.title %}
                        {{ item.variant.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if item.variant.product.supplier %}
                {{ item.variant.product.supplier.id }}
                {{ item.variant.product.supplier.name }}
                {% for address in item.variant.product.supplier.publicContacts %}
                {% endfor %}
        {% endif %}
        {% if item.variant.product.unit %}
                {{ item.variant.product.unit.name }}
        {% endif %}
        {% if item.variant.product.warranty %}
                {{ item.variant.product.warranty.months }}
        {% endif %}
        {% if item.variant.product.contentGrid %}
                {{ item.variant.product.contentGrid }}
        {% endif %}
        {% for upsell in item.variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathNames }}
                {{ upsell.category.pathIds }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for address in upsell.product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productDesigner in upsell.product.configurators %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ item.variant.url }}
        {{ item.variant.url.absolute }}
        {{ item.variant.url.path }}
        {% if item.variant.legacyRel %}
                {{ item.variant.legacyRel }}
        {% endif %}
        {% if item.variant.image %}
                {{ item.variant.image.originalHeight }}
                {{ item.variant.image.originalWidth }}
                {{ item.variant.image.url }}
                {% if item.variant.image.alt %}
                        {{ item.variant.image.alt }}
                {% endif %}
                {% if item.variant.image.text %}
                        {{ item.variant.image.text }}
                {% endif %}
        {% endif %}
{% endif %}

Label

Attributy objektu Label

Název

Typ

Popis

id

int

Id

name

string

Název

code

string | null

Kód pro identifikaci v šabloně

colorCode

string | null

Hexa kód barvy

image

Image | null

Obrázek

Příklady:

{{ label.id }}
{{ label.name }}

{% if label.code %}
        {{ label.code }}
{% endif %}

{% if label.colorCode %}
        {{ label.colorCode }}
{% endif %}

{% if label.image %}
        {{ label.image.originalHeight }}
        {{ label.image.originalWidth }}
        {{ label.image.url }}
        {% if label.image.alt %}
                {{ label.image.alt }}
        {% endif %}
        {% if label.image.text %}
                {{ label.image.text }}
        {% endif %}
{% endif %}

LanguageUrl

Attributy objektu LanguageUrl

Název

Typ

Popis

url

string

Cílová URL

shop

Shop

Eshop

hreflang

string | null

Locale pro hreflang atribut, pokud je k dispozici

shortDomain

string | null

Doména bez WWW

Příklady:

{{ languageurl.url }}

{% for socialProfile in languageurl.shop.socialProfiles %}
        {{ socialProfile.type }}
        {{ socialProfile.url }}
{% endfor %}
{% if languageurl.shop.email %}
        {{ languageurl.shop.email }}
{% endif %}
{% if languageurl.shop.language %}
        {{ languageurl.shop.language }}
{% endif %}
{% if languageurl.shop.name %}
        {{ languageurl.shop.name }}
{% endif %}
{% if languageurl.shop.phone %}
        {{ languageurl.shop.phone }}
{% endif %}
{% if languageurl.shop.shortDomain %}
        {{ languageurl.shop.shortDomain }}
{% endif %}
{% if languageurl.shop.url %}
        {{ languageurl.shop.url }}
{% endif %}
{% if languageurl.shop.country %}
        {{ languageurl.shop.country.code }}
        {{ languageurl.shop.country.flagCircleUrl }}
        {{ languageurl.shop.country.flagUrl }}
        {{ languageurl.shop.country.name }}
        {% if languageurl.shop.country.eU %} ... {% endif %}
{% endif %}
{% if languageurl.shop.image %}
        {{ languageurl.shop.image.originalHeight }}
        {{ languageurl.shop.image.originalWidth }}
        {{ languageurl.shop.image.url }}
        {% if languageurl.shop.image.alt %}
                {{ languageurl.shop.image.alt }}
        {% endif %}
        {% if languageurl.shop.image.text %}
                {{ languageurl.shop.image.text }}
        {% endif %}
{% endif %}

{% if languageurl.hreflang %}
        {{ languageurl.hreflang }}
{% endif %}

{% if languageurl.shortDomain %}
        {{ languageurl.shortDomain }}
{% endif %}

LoyaltyLevel

Attributy objektu LoyaltyLevel

Název

Typ

Popis

id

int

Id

pointsAmount

float

Počet bodů

minimumTotalPrice

PriceValue

Minimální částka

maximumTotalPrice

PriceValue

Maximální částka

Příklady:

{{ loyaltylevel.id }}
{{ loyaltylevel.pointsAmount }}
{{ loyaltylevel.minimumTotalPrice.currency }}
{{ loyaltylevel.minimumTotalPrice.formatted }}
{{ loyaltylevel.minimumTotalPrice.value }}
{% if loyaltylevel.minimumTotalPrice.perUnit %}
        {{ loyaltylevel.minimumTotalPrice.perUnit }}
        {{ loyaltylevel.minimumTotalPrice.perUnit.formatted }}
        {{ loyaltylevel.minimumTotalPrice.perUnit.unit }}
        {{ loyaltylevel.minimumTotalPrice.perUnit.price.currency }}
        {{ loyaltylevel.minimumTotalPrice.perUnit.price.formatted }}
        {{ loyaltylevel.minimumTotalPrice.perUnit.price.value }}
{% endif %}
{{ loyaltylevel.maximumTotalPrice.currency }}
{{ loyaltylevel.maximumTotalPrice.formatted }}
{{ loyaltylevel.maximumTotalPrice.value }}
{% if loyaltylevel.maximumTotalPrice.perUnit %}
        {{ loyaltylevel.maximumTotalPrice.perUnit }}
        {{ loyaltylevel.maximumTotalPrice.perUnit.formatted }}
        {{ loyaltylevel.maximumTotalPrice.perUnit.unit }}
        {{ loyaltylevel.maximumTotalPrice.perUnit.price.currency }}
        {{ loyaltylevel.maximumTotalPrice.perUnit.price.formatted }}
        {{ loyaltylevel.maximumTotalPrice.perUnit.price.value }}
{% endif %}

Order

Attributy objektu Order

Název

Typ

Popis

amountOfItem

int

Celkový počet kusů položky v objednávce

catalogItemCount

int

Počet položek v objednávce

catalogItemTotalAmount

int

Celkový počet kusů v objednávce

id

int

Id

loyaltyPoints

int

Počet bodů získaných za objednávku

usableLoyaltyPoints

int

Počet bodů uplatněných na objednávku

language

string

Jazyk objednávky

vs

string

Variabilní symbol

containsAnyOfLabels

bool

Obsahuje položku s jedním ze štítků?

containsItem

bool

Obsahuje položku?

containsLabel

bool

Obsahuje položku se štítkem?

digitalPhysicalCombination

bool

V košíku jsou zároveň digitální a fyzické položky

erotic

bool

Obsahuje objednávka erotickou položku?

externalReviewAllowed

bool

Souhlasil zákazník s dotazníkem spokojenosti?

paid

bool

Je objednávka uhrazená?

useLoyaltyPoints

bool

Použít věrnostní body?

useLoyaltyPointsManually

bool

Aplikují se věrnostní body jen po ručním výběru použití?

accountingDocuments

AccountingDocument[]

Účetní doklady

address

Addresses

Adresy

availablePaymentMethods

Delivery/Payment[]

Dostupné způsoby platby

payments

Delivery/Payment[]

Úhrady objednávky

availableTransportMethods

Delivery/Transport[]

Dostupné způsoby dopravy

delivery

Delivery

Dodání

catalogItems

Order/Item/CatalogItem[]

Položky objednávky (produkty)

items

Order/Item/CatalogItem[] | Order/Item/DiscountItem[]

Položky objednávky (produkty, slevy)

discountItems

Order/Item/DiscountItem[]

Slevy

price

Order/Price

Celkové ceny

status

Order/Status

Stav objednávky

shop

Shop

E-shop

url

Url

URL pro sledování stavu objednávky (nebo košíku u neodeslaných)

purchasedGiftVouchers

Voucher/GiftVoucher[]

Zakoupené dárkové poukazy

vouchers

Voucher/GiftVoucher[]

Uplatněné slevové kódy nebo dárkové poukazy

code

string | null

Kód

note

string | null

Poznámka zákazníka

date

datetime | null

Datum vzniku

dateInStatus

datetime | null

Datum přesunutí do aktuálního stavu

expectedShippingDate

datetime | null

Datum, kdy očekávámě odeslání balíku (automaticky vypočítáno z dostupnosti nebo ručně upraveno v administraci)

customer

Customer | null

Registrovaný zákazník

closestFreeDelivery

Delivery | null

Nejbližší dostupná doprava zdarma

parentOrder

Order | null

Nadřazená objednávka

package

Package | null

Balík

Příklady:

{{ order.amountOfItem }}
{{ order.catalogItemCount }}
{{ order.catalogItemTotalAmount }}
{{ order.id }}
{{ order.loyaltyPoints }}
{{ order.usableLoyaltyPoints }}
{{ order.language }}
{{ order.vs }}
{% if order.containsAnyOfLabels %} ... {% endif %}
{% if order.containsItem %} ... {% endif %}
{% if order.containsLabel %} ... {% endif %}
{% if order.digitalPhysicalCombination %} ... {% endif %}
{% if order.erotic %} ... {% endif %}
{% if order.externalReviewAllowed %} ... {% endif %}
{% if order.paid %} ... {% endif %}
{% if order.useLoyaltyPoints %} ... {% endif %}
{% if order.useLoyaltyPointsManually %} ... {% endif %}

{% for accountingDocument in order.accountingDocuments %}
        {{ accountingDocument.code }}
        {{ accountingDocument.date|date('d. m. Y H:i') }}
        {{ accountingDocument.totalPrice.vatRate }}
        {{ accountingDocument.totalPrice.current.currency }}
        {{ accountingDocument.totalPrice.current.formatted }}
        {{ accountingDocument.totalPrice.current.value }}
        {% if accountingDocument.totalPrice.current.perUnit %}
        {% endif %}
        {% if accountingDocument.totalPrice.discountPercent %}
                {{ accountingDocument.totalPrice.discountPercent }}
        {% endif %}
        {% if accountingDocument.totalPrice.discountValidTo %}
                {{ accountingDocument.totalPrice.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if accountingDocument.totalPrice.beforeDiscount %}
                {{ accountingDocument.totalPrice.beforeDiscount.currency }}
                {{ accountingDocument.totalPrice.beforeDiscount.formatted }}
                {{ accountingDocument.totalPrice.beforeDiscount.value }}
                {% if accountingDocument.totalPrice.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if accountingDocument.totalPrice.discount %}
                {{ accountingDocument.totalPrice.discount.currency }}
                {{ accountingDocument.totalPrice.discount.formatted }}
                {{ accountingDocument.totalPrice.discount.value }}
                {% if accountingDocument.totalPrice.discount.perUnit %}
                {% endif %}
        {% endif %}
        {{ accountingDocument.pdfUrl }}
        {{ accountingDocument.pdfUrl.absolute }}
        {{ accountingDocument.pdfUrl.path }}
{% endfor %}
{{ order.address.delivery.name }}
{% if order.address.delivery.name.first %}
        {{ order.address.delivery.name.first }}
{% endif %}
{% if order.address.delivery.name.last %}
        {{ order.address.delivery.name.last }}
{% endif %}
{% if order.address.delivery.city %}
        {{ order.address.delivery.city }}
{% endif %}
{% if order.address.delivery.company %}
        {{ order.address.delivery.company }}
{% endif %}
{% if order.address.delivery.companyId %}
        {{ order.address.delivery.companyId }}
{% endif %}
{% if order.address.delivery.email %}
        {{ order.address.delivery.email }}
{% endif %}
{% if order.address.delivery.phone %}
        {{ order.address.delivery.phone }}
{% endif %}
{% if order.address.delivery.region %}
        {{ order.address.delivery.region }}
{% endif %}
{% if order.address.delivery.street %}
        {{ order.address.delivery.street }}
{% endif %}
{% if order.address.delivery.vatId %}
        {{ order.address.delivery.vatId }}
{% endif %}
{% if order.address.delivery.web %}
        {{ order.address.delivery.web }}
{% endif %}
{% if order.address.delivery.zip %}
        {{ order.address.delivery.zip }}
{% endif %}
{% if order.address.delivery.purpose %}
        {{ order.address.delivery.purpose.headline }}
{% endif %}
{% if order.address.delivery.country %}
        {{ order.address.delivery.country.code }}
        {{ order.address.delivery.country.flagCircleUrl }}
        {{ order.address.delivery.country.flagUrl }}
        {{ order.address.delivery.country.name }}
        {% if order.address.delivery.country.eU %} ... {% endif %}
{% endif %}
{{ order.address.invoice.name }}
{% if order.address.invoice.name.first %}
        {{ order.address.invoice.name.first }}
{% endif %}
{% if order.address.invoice.name.last %}
        {{ order.address.invoice.name.last }}
{% endif %}
{% if order.address.invoice.city %}
        {{ order.address.invoice.city }}
{% endif %}
{% if order.address.invoice.company %}
        {{ order.address.invoice.company }}
{% endif %}
{% if order.address.invoice.companyId %}
        {{ order.address.invoice.companyId }}
{% endif %}
{% if order.address.invoice.email %}
        {{ order.address.invoice.email }}
{% endif %}
{% if order.address.invoice.phone %}
        {{ order.address.invoice.phone }}
{% endif %}
{% if order.address.invoice.region %}
        {{ order.address.invoice.region }}
{% endif %}
{% if order.address.invoice.street %}
        {{ order.address.invoice.street }}
{% endif %}
{% if order.address.invoice.vatId %}
        {{ order.address.invoice.vatId }}
{% endif %}
{% if order.address.invoice.web %}
        {{ order.address.invoice.web }}
{% endif %}
{% if order.address.invoice.zip %}
        {{ order.address.invoice.zip }}
{% endif %}
{% if order.address.invoice.purpose %}
        {{ order.address.invoice.purpose.headline }}
{% endif %}
{% if order.address.invoice.country %}
        {{ order.address.invoice.country.code }}
        {{ order.address.invoice.country.flagCircleUrl }}
        {{ order.address.invoice.country.flagUrl }}
        {{ order.address.invoice.country.name }}
        {% if order.address.invoice.country.eU %} ... {% endif %}
{% endif %}

{% for payment in order.availablePaymentMethods %}
        {{ payment.inputId }}
        {{ payment.name }}
        {{ payment.url }}
        {{ payment.vatRate }}
        {% if payment.free %} ... {% endif %}
        {% if payment.inAdvance %} ... {% endif %}
        {% if payment.selected %} ... {% endif %}
        {{ payment.price.vatRate }}
        {{ payment.price.current.currency }}
        {{ payment.price.current.formatted }}
        {{ payment.price.current.value }}
        {% if payment.price.current.perUnit %}
        {% endif %}
        {% if payment.price.discountPercent %}
                {{ payment.price.discountPercent }}
        {% endif %}
        {% if payment.price.discountValidTo %}
                {{ payment.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if payment.price.beforeDiscount %}
                {{ payment.price.beforeDiscount.currency }}
                {{ payment.price.beforeDiscount.formatted }}
                {{ payment.price.beforeDiscount.value }}
                {% if payment.price.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if payment.price.discount %}
                {{ payment.price.discount.currency }}
                {{ payment.price.discount.formatted }}
                {{ payment.price.discount.value }}
                {% if payment.price.discount.perUnit %}
                {% endif %}
        {% endif %}
        {% if payment.code %}
                {{ payment.code }}
        {% endif %}
        {% if payment.vs %}
                {{ payment.vs }}
        {% endif %}
        {% if payment.qRCodeHTML %}
                {{ payment.qRCodeHTML }}
        {% endif %}
        {% if payment.text %}
                {{ payment.text }}
        {% endif %}
        {% if payment.bankAccount %}
                {{ payment.bankAccount }}
                {{ payment.bankAccount.currency }}
                {% if payment.bankAccount.bic %}
                        {{ payment.bankAccount.bic }}
                {% endif %}
                {% if payment.bankAccount.iban %}
                        {{ payment.bankAccount.iban }}
                {% endif %}
                {% if payment.bankAccount.local %}
                        {{ payment.bankAccount.local }}
                {% endif %}
        {% endif %}
        {% if payment.image %}
                {{ payment.image.originalHeight }}
                {{ payment.image.originalWidth }}
                {{ payment.image.url }}
                {% if payment.image.alt %}
                        {{ payment.image.alt }}
                {% endif %}
                {% if payment.image.text %}
                        {{ payment.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% for payment in order.payments %}
        {{ payment.inputId }}
        {{ payment.name }}
        {{ payment.url }}
        {{ payment.vatRate }}
        {% if payment.free %} ... {% endif %}
        {% if payment.inAdvance %} ... {% endif %}
        {% if payment.selected %} ... {% endif %}
        {{ payment.price.vatRate }}
        {{ payment.price.current.currency }}
        {{ payment.price.current.formatted }}
        {{ payment.price.current.value }}
        {% if payment.price.current.perUnit %}
        {% endif %}
        {% if payment.price.discountPercent %}
                {{ payment.price.discountPercent }}
        {% endif %}
        {% if payment.price.discountValidTo %}
                {{ payment.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if payment.price.beforeDiscount %}
                {{ payment.price.beforeDiscount.currency }}
                {{ payment.price.beforeDiscount.formatted }}
                {{ payment.price.beforeDiscount.value }}
                {% if payment.price.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if payment.price.discount %}
                {{ payment.price.discount.currency }}
                {{ payment.price.discount.formatted }}
                {{ payment.price.discount.value }}
                {% if payment.price.discount.perUnit %}
                {% endif %}
        {% endif %}
        {% if payment.code %}
                {{ payment.code }}
        {% endif %}
        {% if payment.vs %}
                {{ payment.vs }}
        {% endif %}
        {% if payment.qRCodeHTML %}
                {{ payment.qRCodeHTML }}
        {% endif %}
        {% if payment.text %}
                {{ payment.text }}
        {% endif %}
        {% if payment.bankAccount %}
                {{ payment.bankAccount }}
                {{ payment.bankAccount.currency }}
                {% if payment.bankAccount.bic %}
                        {{ payment.bankAccount.bic }}
                {% endif %}
                {% if payment.bankAccount.iban %}
                        {{ payment.bankAccount.iban }}
                {% endif %}
                {% if payment.bankAccount.local %}
                        {{ payment.bankAccount.local }}
                {% endif %}
        {% endif %}
        {% if payment.image %}
                {{ payment.image.originalHeight }}
                {{ payment.image.originalWidth }}
                {{ payment.image.url }}
                {% if payment.image.alt %}
                        {{ payment.image.alt }}
                {% endif %}
                {% if payment.image.text %}
                        {{ payment.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% for transport in order.availableTransportMethods %}
        {{ transport.inputId }}
        {{ transport.name }}
        {{ transport.vatRate }}
        {% if transport.branchRequired %} ... {% endif %}
        {% if transport.currier %} ... {% endif %}
        {% if transport.dateGuaranteed %} ... {% endif %}
        {% if transport.deliveryToAddress %} ... {% endif %}
        {% if transport.digital %} ... {% endif %}
        {% if transport.free %} ... {% endif %}
        {% if transport.pickup %} ... {% endif %}
        {% if transport.selected %} ... {% endif %}
        {{ transport.price.vatRate }}
        {{ transport.price.current.currency }}
        {{ transport.price.current.formatted }}
        {{ transport.price.current.value }}
        {% if transport.price.current.perUnit %}
        {% endif %}
        {% if transport.price.discountPercent %}
                {{ transport.price.discountPercent }}
        {% endif %}
        {% if transport.price.discountValidTo %}
                {{ transport.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if transport.price.beforeDiscount %}
                {{ transport.price.beforeDiscount.currency }}
                {{ transport.price.beforeDiscount.formatted }}
                {{ transport.price.beforeDiscount.value }}
                {% if transport.price.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if transport.price.discount %}
                {{ transport.price.discount.currency }}
                {{ transport.price.discount.formatted }}
                {{ transport.price.discount.value }}
                {% if transport.price.discount.perUnit %}
                {% endif %}
        {% endif %}
        {% if transport.text %}
                {{ transport.text }}
        {% endif %}
        {% if transport.branch %}
                {{ transport.branch.code }}
                {{ transport.branch.name }}
                {{ transport.branch.address }}
                {% if transport.branch.address.city %}
                        {{ transport.branch.address.city }}
                {% endif %}
                {% if transport.branch.address.company %}
                        {{ transport.branch.address.company }}
                {% endif %}
                {% if transport.branch.address.street %}
                        {{ transport.branch.address.street }}
                {% endif %}
                {% if transport.branch.address.country %}
                {% endif %}
        {% endif %}
        {% if transport.carrier %}
                {{ transport.carrier.code }}
                {{ transport.carrier.name }}
        {% endif %}
        {% if transport.deliveryDate %}
                {{ transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if transport.deliveryDate.timeDelivered %}
                        {{ transport.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if transport.packageType %}
                {{ transport.packageType.code }}
        {% endif %}
        {% if transport.image %}
                {{ transport.image.originalHeight }}
                {{ transport.image.originalWidth }}
                {{ transport.image.url }}
                {% if transport.image.alt %}
                        {{ transport.image.alt }}
                {% endif %}
                {% if transport.image.text %}
                        {{ transport.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ order.delivery.name }}
{{ order.delivery.vatRate }}
{% if order.delivery.deliveryAddressRequired %} ... {% endif %}
{{ order.delivery.payment.inputId }}
{{ order.delivery.payment.name }}
{{ order.delivery.payment.url }}
{{ order.delivery.payment.vatRate }}
{% if order.delivery.payment.free %} ... {% endif %}
{% if order.delivery.payment.inAdvance %} ... {% endif %}
{% if order.delivery.payment.selected %} ... {% endif %}
{{ order.delivery.payment.price.vatRate }}
{% if order.delivery.payment.price.discountPercent %}
        {{ order.delivery.payment.price.discountPercent }}
{% endif %}
{% if order.delivery.payment.price.discountValidTo %}
        {{ order.delivery.payment.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if order.delivery.payment.price.beforeDiscount %}
{% endif %}
{% if order.delivery.payment.price.discount %}
{% endif %}
{% if order.delivery.payment.code %}
        {{ order.delivery.payment.code }}
{% endif %}
{% if order.delivery.payment.vs %}
        {{ order.delivery.payment.vs }}
{% endif %}
{% if order.delivery.payment.qRCodeHTML %}
        {{ order.delivery.payment.qRCodeHTML }}
{% endif %}
{% if order.delivery.payment.text %}
        {{ order.delivery.payment.text }}
{% endif %}
{% if order.delivery.payment.bankAccount %}
        {{ order.delivery.payment.bankAccount }}
        {{ order.delivery.payment.bankAccount.currency }}
        {% if order.delivery.payment.bankAccount.bic %}
                {{ order.delivery.payment.bankAccount.bic }}
        {% endif %}
        {% if order.delivery.payment.bankAccount.iban %}
                {{ order.delivery.payment.bankAccount.iban }}
        {% endif %}
        {% if order.delivery.payment.bankAccount.local %}
                {{ order.delivery.payment.bankAccount.local }}
        {% endif %}
{% endif %}
{% if order.delivery.payment.image %}
        {{ order.delivery.payment.image.originalHeight }}
        {{ order.delivery.payment.image.originalWidth }}
        {{ order.delivery.payment.image.url }}
        {% if order.delivery.payment.image.alt %}
                {{ order.delivery.payment.image.alt }}
        {% endif %}
        {% if order.delivery.payment.image.text %}
                {{ order.delivery.payment.image.text }}
        {% endif %}
{% endif %}
{{ order.delivery.transport.inputId }}
{{ order.delivery.transport.name }}
{{ order.delivery.transport.vatRate }}
{% if order.delivery.transport.branchRequired %} ... {% endif %}
{% if order.delivery.transport.currier %} ... {% endif %}
{% if order.delivery.transport.dateGuaranteed %} ... {% endif %}
{% if order.delivery.transport.deliveryToAddress %} ... {% endif %}
{% if order.delivery.transport.digital %} ... {% endif %}
{% if order.delivery.transport.free %} ... {% endif %}
{% if order.delivery.transport.pickup %} ... {% endif %}
{% if order.delivery.transport.selected %} ... {% endif %}
{{ order.delivery.transport.price.vatRate }}
{% if order.delivery.transport.price.discountPercent %}
        {{ order.delivery.transport.price.discountPercent }}
{% endif %}
{% if order.delivery.transport.price.discountValidTo %}
        {{ order.delivery.transport.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if order.delivery.transport.price.beforeDiscount %}
{% endif %}
{% if order.delivery.transport.price.discount %}
{% endif %}
{% if order.delivery.transport.text %}
        {{ order.delivery.transport.text }}
{% endif %}
{% if order.delivery.transport.branch %}
        {{ order.delivery.transport.branch.code }}
        {{ order.delivery.transport.branch.name }}
{% endif %}
{% if order.delivery.transport.carrier %}
        {{ order.delivery.transport.carrier.code }}
        {{ order.delivery.transport.carrier.name }}
{% endif %}
{% if order.delivery.transport.deliveryDate %}
        {{ order.delivery.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
        {{ order.delivery.transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
        {{ order.delivery.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
        {% if order.delivery.transport.deliveryDate.timeDelivered %}
                {{ order.delivery.transport.deliveryDate.timeDelivered }}
        {% endif %}
{% endif %}
{% if order.delivery.transport.packageType %}
        {{ order.delivery.transport.packageType.code }}
{% endif %}
{% if order.delivery.transport.image %}
        {{ order.delivery.transport.image.originalHeight }}
        {{ order.delivery.transport.image.originalWidth }}
        {{ order.delivery.transport.image.url }}
        {% if order.delivery.transport.image.alt %}
                {{ order.delivery.transport.image.alt }}
        {% endif %}
        {% if order.delivery.transport.image.text %}
                {{ order.delivery.transport.image.text }}
        {% endif %}
{% endif %}
{{ order.delivery.price.vatRate }}
{{ order.delivery.price.current.currency }}
{{ order.delivery.price.current.formatted }}
{{ order.delivery.price.current.value }}
{% if order.delivery.price.current.perUnit %}
{% endif %}
{% if order.delivery.price.discountPercent %}
        {{ order.delivery.price.discountPercent }}
{% endif %}
{% if order.delivery.price.discountValidTo %}
        {{ order.delivery.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if order.delivery.price.beforeDiscount %}
        {{ order.delivery.price.beforeDiscount.currency }}
        {{ order.delivery.price.beforeDiscount.formatted }}
        {{ order.delivery.price.beforeDiscount.value }}
        {% if order.delivery.price.beforeDiscount.perUnit %}
        {% endif %}
{% endif %}
{% if order.delivery.price.discount %}
        {{ order.delivery.price.discount.currency }}
        {{ order.delivery.price.discount.formatted }}
        {{ order.delivery.price.discount.value }}
        {% if order.delivery.price.discount.perUnit %}
        {% endif %}
{% endif %}
{% if order.delivery.id %}
        {{ order.delivery.id }}
{% endif %}
{% if order.delivery.freeLimit %}
        {{ order.delivery.freeLimit.percent }}
        {{ order.delivery.freeLimit.total.currency }}
        {{ order.delivery.freeLimit.total.formatted }}
        {{ order.delivery.freeLimit.total.value }}
        {% if order.delivery.freeLimit.total.perUnit %}
        {% endif %}
        {{ order.delivery.freeLimit.remains.currency }}
        {{ order.delivery.freeLimit.remains.formatted }}
        {{ order.delivery.freeLimit.remains.value }}
        {% if order.delivery.freeLimit.remains.perUnit %}
        {% endif %}
{% endif %}

{% for catalogItem in order.catalogItems %}
        {{ catalogItem.amount }}
        {{ catalogItem.id }}
        {{ catalogItem.name }}
        {{ catalogItem.productName }}
        {{ catalogItem.trackingId }}
        {{ catalogItem.vatRate }}
        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
        {% if catalogItem.catalogItem %} ... {% endif %}
        {% if catalogItem.deleteAllowed %} ... {% endif %}
        {% if catalogItem.discountItem %} ... {% endif %}
        {% if catalogItem.gift %} ... {% endif %}
        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for catalogItem in catalogItem.children %}
                {{ catalogItem.amount }}
                {{ catalogItem.id }}
                {{ catalogItem.name }}
                {{ catalogItem.productName }}
                {{ catalogItem.trackingId }}
                {{ catalogItem.vatRate }}
                {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                {% if catalogItem.catalogItem %} ... {% endif %}
                {% if catalogItem.deleteAllowed %} ... {% endif %}
                {% if catalogItem.discountItem %} ... {% endif %}
                {% if catalogItem.gift %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for orderItemError in catalogItem.errors %}
                        {{ orderItemError.recommendedAmount }}
                        {{ orderItemError.code }}
                        {{ orderItemError.itemName }}
                        {{ orderItemError.message }}
                {% endfor %}
                {{ catalogItem.price.vatRate }}
                {% if catalogItem.price.discountPercent %}
                        {{ catalogItem.price.discountPercent }}
                {% endif %}
                {% if catalogItem.price.discountValidTo %}
                        {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.price.discount %}
                {% endif %}
                {{ catalogItem.priceTotal.vatRate }}
                {% if catalogItem.priceTotal.discountPercent %}
                        {{ catalogItem.priceTotal.discountPercent }}
                {% endif %}
                {% if catalogItem.priceTotal.discountValidTo %}
                        {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.priceTotal.beforeDiscount %}
                {% endif %}
                {% if catalogItem.priceTotal.discount %}
                {% endif %}
                {% for productDesigner in catalogItem.availableConfigurators %}
                        {{ productDesigner.name }}
                        {% if productDesigner.result %}
                        {% endif %}
                {% endfor %}
                {% for upsell in catalogItem.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.trackingIds }}
                {% if catalogItem.code %}
                        {{ catalogItem.code }}
                {% endif %}
                {% if catalogItem.note %}
                        {{ catalogItem.note }}
                {% endif %}
                {% if catalogItem.variantName %}
                        {{ catalogItem.variantName }}
                {% endif %}
                {% if catalogItem.image %}
                        {{ catalogItem.image.originalHeight }}
                        {{ catalogItem.image.originalWidth }}
                        {{ catalogItem.image.url }}
                        {% if catalogItem.image.alt %}
                                {{ catalogItem.image.alt }}
                        {% endif %}
                        {% if catalogItem.image.text %}
                                {{ catalogItem.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item %}
                        {{ catalogItem.item.cartAmountRequiredMultiplier }}
                        {{ catalogItem.item.id }}
                        {{ catalogItem.item.loyaltyPointsAmount }}
                        {{ catalogItem.item.name }}
                        {{ catalogItem.item.trackingId }}
                        {% if catalogItem.item.digital %} ... {% endif %}
                        {% if catalogItem.item.sellable %} ... {% endif %}
                        {% if catalogItem.item.service %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.item.trackingIds }}
                        {{ catalogItem.item.storageLocations }}
                        {% if catalogItem.item.packageWeight %}
                                {{ catalogItem.item.packageWeight }}
                        {% endif %}
                        {% if catalogItem.item.code %}
                                {{ catalogItem.item.code }}
                        {% endif %}
                        {% if catalogItem.item.packageHeight %}
                                {{ catalogItem.item.packageHeight }}
                        {% endif %}
                        {% if catalogItem.item.packageLength %}
                                {{ catalogItem.item.packageLength }}
                        {% endif %}
                        {% if catalogItem.item.packageWidth %}
                                {{ catalogItem.item.packageWidth }}
                        {% endif %}
                        {% if catalogItem.item.bundle %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery %}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.packageDimensions %}
                        {% endif %}
                        {% if catalogItem.item.image %}
                        {% endif %}
                        {% if catalogItem.item.price %}
                        {% endif %}
                        {% if catalogItem.item.url %}
                        {% endif %}
                        {% if catalogItem.item.variant %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product %}
                        {{ catalogItem.product.id }}
                        {{ catalogItem.product.name }}
                        {{ catalogItem.product.trackingId }}
                        {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.active %} ... {% endif %}
                        {% if catalogItem.product.compared %} ... {% endif %}
                        {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.flagNew %} ... {% endif %}
                        {% if catalogItem.product.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.soldSeparately %} ... {% endif %}
                        {% for address in catalogItem.product.publicContacts %}
                        {% endfor %}
                        {% for attributeInstance in catalogItem.product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.labels %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.product.configurators %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.videos %}
                        {% endfor %}
                        {{ catalogItem.product.trackingIds }}
                        {% if catalogItem.product.currentSubName %}
                                {{ catalogItem.product.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.nameSuffix %}
                                {{ catalogItem.product.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.nameSupplier %}
                                {{ catalogItem.product.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.text %}
                                {{ catalogItem.product.text }}
                        {% endif %}
                        {% if catalogItem.product.attribute %}
                        {% endif %}
                        {% if catalogItem.product.brand %}
                        {% endif %}
                        {% if catalogItem.product.image %}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.successor %}
                        {% endif %}
                        {% if catalogItem.product.seo %}
                        {% endif %}
                        {% if catalogItem.product.supplier %}
                        {% endif %}
                        {% if catalogItem.product.unit %}
                        {% endif %}
                        {% if catalogItem.product.variant %}
                        {% endif %}
                        {% if catalogItem.product.warranty %}
                        {% endif %}
                        {% if catalogItem.product.contentGrid %}
                                {{ catalogItem.product.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.unit %}
                        {{ catalogItem.unit.name }}
                {% endif %}
                {% if catalogItem.upsell %}
                        {{ catalogItem.upsell.id }}
                        {{ catalogItem.upsell.name }}
                        {% if catalogItem.upsell.inCart %} ... {% endif %}
                        {% if catalogItem.upsell.code %}
                                {{ catalogItem.upsell.code }}
                        {% endif %}
                        {% if catalogItem.upsell.vatRate %}
                                {{ catalogItem.upsell.vatRate }}
                        {% endif %}
                        {% if catalogItem.upsell.image %}
                        {% endif %}
                        {% if catalogItem.upsell.unit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.variant %}
                        {{ catalogItem.variant.id }}
                        {{ catalogItem.variant.name }}
                        {{ catalogItem.variant.trackingId }}
                        {% if catalogItem.variant.active %} ... {% endif %}
                        {% if catalogItem.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.variant.legacyRel %}
                                {{ catalogItem.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.variant.image %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for orderItemError in catalogItem.errors %}
                {{ orderItemError.recommendedAmount }}
                {{ orderItemError.code }}
                {{ orderItemError.itemName }}
                {{ orderItemError.message }}
        {% endfor %}
        {{ catalogItem.price.vatRate }}
        {{ catalogItem.price.current.currency }}
        {{ catalogItem.price.current.formatted }}
        {{ catalogItem.price.current.value }}
        {% if catalogItem.price.current.perUnit %}
        {% endif %}
        {% if catalogItem.price.discountPercent %}
                {{ catalogItem.price.discountPercent }}
        {% endif %}
        {% if catalogItem.price.discountValidTo %}
                {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogItem.price.beforeDiscount %}
                {{ catalogItem.price.beforeDiscount.currency }}
                {{ catalogItem.price.beforeDiscount.formatted }}
                {{ catalogItem.price.beforeDiscount.value }}
                {% if catalogItem.price.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if catalogItem.price.discount %}
                {{ catalogItem.price.discount.currency }}
                {{ catalogItem.price.discount.formatted }}
                {{ catalogItem.price.discount.value }}
                {% if catalogItem.price.discount.perUnit %}
                {% endif %}
        {% endif %}
        {{ catalogItem.priceTotal.vatRate }}
        {{ catalogItem.priceTotal.current.currency }}
        {{ catalogItem.priceTotal.current.formatted }}
        {{ catalogItem.priceTotal.current.value }}
        {% if catalogItem.priceTotal.current.perUnit %}
        {% endif %}
        {% if catalogItem.priceTotal.discountPercent %}
                {{ catalogItem.priceTotal.discountPercent }}
        {% endif %}
        {% if catalogItem.priceTotal.discountValidTo %}
                {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogItem.priceTotal.beforeDiscount %}
                {{ catalogItem.priceTotal.beforeDiscount.currency }}
                {{ catalogItem.priceTotal.beforeDiscount.formatted }}
                {{ catalogItem.priceTotal.beforeDiscount.value }}
                {% if catalogItem.priceTotal.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if catalogItem.priceTotal.discount %}
                {{ catalogItem.priceTotal.discount.currency }}
                {{ catalogItem.priceTotal.discount.formatted }}
                {{ catalogItem.priceTotal.discount.value }}
                {% if catalogItem.priceTotal.discount.perUnit %}
                {% endif %}
        {% endif %}
        {% for productDesigner in catalogItem.availableConfigurators %}
                {{ productDesigner.name }}
                {{ productDesigner.upsell.id }}
                {{ productDesigner.upsell.name }}
                {% if productDesigner.upsell.inCart %} ... {% endif %}
                {% if productDesigner.upsell.code %}
                        {{ productDesigner.upsell.code }}
                {% endif %}
                {% if productDesigner.upsell.vatRate %}
                        {{ productDesigner.upsell.vatRate }}
                {% endif %}
                {% if productDesigner.upsell.image %}
                {% endif %}
                {% if productDesigner.upsell.unit %}
                {% endif %}
                {% if productDesigner.result %}
                        {{ productDesigner.result.imageUrl }}
                        {{ productDesigner.result.uuid }}
                        {% for productDesignerResultPart in productDesigner.result.parts %}
                        {% endfor %}
                {% endif %}
        {% endfor %}
        {% for upsell in catalogItem.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathNames }}
                {{ upsell.category.pathIds }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for address in upsell.product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productDesigner in upsell.product.configurators %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ catalogItem.trackingIds }}
        {% if catalogItem.code %}
                {{ catalogItem.code }}
        {% endif %}
        {% if catalogItem.note %}
                {{ catalogItem.note }}
        {% endif %}
        {% if catalogItem.variantName %}
                {{ catalogItem.variantName }}
        {% endif %}
        {% if catalogItem.image %}
                {{ catalogItem.image.originalHeight }}
                {{ catalogItem.image.originalWidth }}
                {{ catalogItem.image.url }}
                {% if catalogItem.image.alt %}
                        {{ catalogItem.image.alt }}
                {% endif %}
                {% if catalogItem.image.text %}
                        {{ catalogItem.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogItem.item %}
                {{ catalogItem.item.cartAmountRequiredMultiplier }}
                {{ catalogItem.item.id }}
                {{ catalogItem.item.loyaltyPointsAmount }}
                {{ catalogItem.item.name }}
                {{ catalogItem.item.trackingId }}
                {% if catalogItem.item.digital %} ... {% endif %}
                {% if catalogItem.item.sellable %} ... {% endif %}
                {% if catalogItem.item.service %} ... {% endif %}
                {{ catalogItem.item.availability.availableAmount }}
                {{ catalogItem.item.availability.availableAmountExpectedToStorageRoom }}
                {{ catalogItem.item.availability.availableAmountInShowroom }}
                {{ catalogItem.item.availability.availableAmountInStockroom }}
                {{ catalogItem.item.availability.availableAmountInStorageCenter }}
                {{ catalogItem.item.availability.availableAmountOnWayToStorageRoom }}
                {{ catalogItem.item.availability.availableDemandsAmountFromSupplierToStorageRoom }}
                {{ catalogItem.item.availability.hours }}
                {{ catalogItem.item.availability.totalAmount }}
                {% if catalogItem.item.availability.inShowroom %} ... {% endif %}
                {% if catalogItem.item.availability.inStock %} ... {% endif %}
                {% if catalogItem.item.availability.preorder %} ... {% endif %}
                {% if catalogItem.item.availability.watchdogSupported %} ... {% endif %}
                {% for deliveryOption in catalogItem.item.availability.deliveryOptions %}
                {% endfor %}
                {% for expectedAmount in catalogItem.item.availability.availableAmountsExpectedToStorageRoom %}
                {% endfor %}
                {% for expectedAmount in catalogItem.item.availability.availableAmountsOnWayToStorageRoom %}
                {% endfor %}
                {% for expectedSupplierAmount in catalogItem.item.availability.availableDemandsFromSupplierToStorageRoom %}
                {% endfor %}
                {% if catalogItem.item.availability.text %}
                        {{ catalogItem.item.availability.text }}
                {% endif %}
                {% if catalogItem.item.availability.dateExpected %}
                        {{ catalogItem.item.availability.dateExpected|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.item.availability.deliveryOption %}
                {% endif %}
                {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.item.product.id }}
                {{ catalogItem.item.product.name }}
                {{ catalogItem.item.product.trackingId }}
                {{ catalogItem.item.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.item.product.active %} ... {% endif %}
                {% if catalogItem.item.product.compared %} ... {% endif %}
                {% if catalogItem.item.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.item.product.flagNew %} ... {% endif %}
                {% if catalogItem.item.product.flagPromo %} ... {% endif %}
                {% if catalogItem.item.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.item.product.flagSellout %} ... {% endif %}
                {% if catalogItem.item.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.item.product.soldSeparately %} ... {% endif %}
                {% for address in catalogItem.item.product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in catalogItem.item.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.item.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogItem.item.product.categories %}
                {% endfor %}
                {% for category in catalogItem.item.product.otherCategories %}
                {% endfor %}
                {% for file in catalogItem.item.product.files %}
                {% endfor %}
                {% for image in catalogItem.item.product.images %}
                {% endfor %}
                {% for image in catalogItem.item.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogItem.item.product.images360 %}
                {% endfor %}
                {% for image in catalogItem.item.product.currentImages %}
                {% endfor %}
                {% for image in catalogItem.item.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogItem.item.product.otherImages %}
                {% endfor %}
                {% for label in catalogItem.item.product.labels %}
                {% endfor %}
                {% for productDesigner in catalogItem.item.product.configurators %}
                {% endfor %}
                {% for productEnumValue in catalogItem.item.product.enumValues %}
                {% endfor %}
                {% for product in catalogItem.item.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogItem.item.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogItem.item.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogItem.item.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogItem.item.product.variants %}
                {% endfor %}
                {% for variant in catalogItem.item.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogItem.item.product.videos %}
                {% endfor %}
                {{ catalogItem.item.product.trackingIds }}
                {% if catalogItem.item.product.currentSubName %}
                        {{ catalogItem.item.product.currentSubName }}
                {% endif %}
                {% if catalogItem.item.product.nameSuffix %}
                        {{ catalogItem.item.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.item.product.nameSupplier %}
                        {{ catalogItem.item.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.item.product.text %}
                        {{ catalogItem.item.product.text }}
                {% endif %}
                {% if catalogItem.item.product.attribute %}
                {% endif %}
                {% if catalogItem.item.product.brand %}
                {% endif %}
                {% if catalogItem.item.product.image %}
                {% endif %}
                {% if catalogItem.item.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogItem.item.product.successor %}
                {% endif %}
                {% if catalogItem.item.product.seo %}
                {% endif %}
                {% if catalogItem.item.product.supplier %}
                {% endif %}
                {% if catalogItem.item.product.unit %}
                {% endif %}
                {% if catalogItem.item.product.variant %}
                {% endif %}
                {% if catalogItem.item.product.warranty %}
                {% endif %}
                {% if catalogItem.item.product.contentGrid %}
                        {{ catalogItem.item.product.contentGrid }}
                {% endif %}
                {% for upsell in catalogItem.item.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.item.trackingIds }}
                {{ catalogItem.item.storageLocations }}
                {% if catalogItem.item.packageWeight %}
                        {{ catalogItem.item.packageWeight }}
                {% endif %}
                {% if catalogItem.item.code %}
                        {{ catalogItem.item.code }}
                {% endif %}
                {% if catalogItem.item.packageHeight %}
                        {{ catalogItem.item.packageHeight }}
                {% endif %}
                {% if catalogItem.item.packageLength %}
                        {{ catalogItem.item.packageLength }}
                {% endif %}
                {% if catalogItem.item.packageWidth %}
                        {{ catalogItem.item.packageWidth }}
                {% endif %}
                {% if catalogItem.item.bundle %}
                        {% if catalogItem.item.bundle.multiPack %} ... {% endif %}
                        {% if catalogItem.item.bundle.price %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.cheapestDelivery %}
                        {{ catalogItem.item.cheapestDelivery.inputId }}
                        {{ catalogItem.item.cheapestDelivery.name }}
                        {{ catalogItem.item.cheapestDelivery.vatRate }}
                        {% if catalogItem.item.cheapestDelivery.branchRequired %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.currier %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.digital %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.free %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.pickup %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.selected %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.text %}
                                {{ catalogItem.item.cheapestDelivery.text }}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.branch %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.carrier %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.deliveryDate %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.packageType %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.image %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.freeDelivery %}
                        {{ catalogItem.item.freeDelivery.name }}
                        {{ catalogItem.item.freeDelivery.vatRate }}
                        {% if catalogItem.item.freeDelivery.deliveryAddressRequired %} ... {% endif %}
                        {% if catalogItem.item.freeDelivery.id %}
                                {{ catalogItem.item.freeDelivery.id }}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.closestFreeDelivery %}
                        {{ catalogItem.item.closestFreeDelivery.name }}
                        {{ catalogItem.item.closestFreeDelivery.vatRate }}
                        {% if catalogItem.item.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
                        {% if catalogItem.item.closestFreeDelivery.id %}
                                {{ catalogItem.item.closestFreeDelivery.id }}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.packageDimensions %}
                        {{ catalogItem.item.packageDimensions }}
                        {{ catalogItem.item.packageDimensions.unit }}
                        {{ catalogItem.item.packageDimensions.height }}
                        {{ catalogItem.item.packageDimensions.length }}
                        {{ catalogItem.item.packageDimensions.width }}
                {% endif %}
                {% if catalogItem.item.image %}
                        {{ catalogItem.item.image.originalHeight }}
                        {{ catalogItem.item.image.originalWidth }}
                        {{ catalogItem.item.image.url }}
                        {% if catalogItem.item.image.alt %}
                                {{ catalogItem.item.image.alt }}
                        {% endif %}
                        {% if catalogItem.item.image.text %}
                                {{ catalogItem.item.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.price %}
                        {{ catalogItem.item.price.vatRate }}
                        {% if catalogItem.item.price.discountPercent %}
                                {{ catalogItem.item.price.discountPercent }}
                        {% endif %}
                        {% if catalogItem.item.price.discountValidTo %}
                                {{ catalogItem.item.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if catalogItem.item.price.beforeDiscount %}
                        {% endif %}
                        {% if catalogItem.item.price.discount %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.url %}
                        {{ catalogItem.item.url }}
                        {{ catalogItem.item.url.absolute }}
                        {{ catalogItem.item.url.path }}
                {% endif %}
                {% if catalogItem.item.variant %}
                        {{ catalogItem.item.variant.id }}
                        {{ catalogItem.item.variant.name }}
                        {{ catalogItem.item.variant.trackingId }}
                        {% if catalogItem.item.variant.active %} ... {% endif %}
                        {% if catalogItem.item.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.item.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.item.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.item.variant.legacyRel %}
                                {{ catalogItem.item.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.item.variant.image %}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if catalogItem.product %}
                {{ catalogItem.product.id }}
                {{ catalogItem.product.name }}
                {{ catalogItem.product.trackingId }}
                {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.product.active %} ... {% endif %}
                {% if catalogItem.product.compared %} ... {% endif %}
                {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.product.flagNew %} ... {% endif %}
                {% if catalogItem.product.flagPromo %} ... {% endif %}
                {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.product.flagSellout %} ... {% endif %}
                {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.product.soldSeparately %} ... {% endif %}
                {% for address in catalogItem.product.publicContacts %}
                        {% if address.city %}
                                {{ address.city }}
                        {% endif %}
                        {% if address.company %}
                                {{ address.company }}
                        {% endif %}
                        {% if address.companyId %}
                                {{ address.companyId }}
                        {% endif %}
                        {% if address.email %}
                                {{ address.email }}
                        {% endif %}
                        {% if address.phone %}
                                {{ address.phone }}
                        {% endif %}
                        {% if address.region %}
                                {{ address.region }}
                        {% endif %}
                        {% if address.street %}
                                {{ address.street }}
                        {% endif %}
                        {% if address.vatId %}
                                {{ address.vatId }}
                        {% endif %}
                        {% if address.web %}
                                {{ address.web }}
                        {% endif %}
                        {% if address.zip %}
                                {{ address.zip }}
                        {% endif %}
                        {% if address.purpose %}
                        {% endif %}
                        {% if address.country %}
                        {% endif %}
                {% endfor %}
                {% for attributeInstance in catalogItem.product.attributes %}
                        {{ attributeInstance.name }}
                        {{ attributeInstance.valuesHtml }}
                        {% for attributeValueInstance in attributeInstance.values %}
                        {% endfor %}
                        {% if attributeInstance.description %}
                                {{ attributeInstance.description }}
                        {% endif %}
                        {% if attributeInstance.group %}
                        {% endif %}
                        {% if attributeInstance.image %}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.category.id }}
                {{ catalogItem.product.category.productCount }}
                {{ catalogItem.product.category.productInStockCount }}
                {{ catalogItem.product.category.totalStockQuantity }}
                {{ catalogItem.product.category.headline }}
                {{ catalogItem.product.category.menuName }}
                {{ catalogItem.product.category.name }}
                {% if catalogItem.product.category.flagErotic %} ... {% endif %}
                {% if catalogItem.product.category.flagImportant %} ... {% endif %}
                {% if catalogItem.product.category.noFollow %} ... {% endif %}
                {% for category in catalogItem.product.category.subcategories %}
                {% endfor %}
                {% for video in catalogItem.product.category.videos %}
                {% endfor %}
                {{ catalogItem.product.category.pathNames }}
                {{ catalogItem.product.category.pathIds }}
                {{ catalogItem.product.category.templateAttribute }}
                {% if catalogItem.product.category.subHeadline %}
                        {{ catalogItem.product.category.subHeadline }}
                {% endif %}
                {% if catalogItem.product.category.text %}
                        {{ catalogItem.product.category.text }}
                {% endif %}
                {% if catalogItem.product.category.parent %}
                {% endif %}
                {% if catalogItem.product.category.image %}
                {% endif %}
                {% if catalogItem.product.category.contentGrid %}
                        {{ catalogItem.product.category.contentGrid }}
                {% endif %}
                {% for category in catalogItem.product.categories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathNames }}
                        {{ category.pathIds }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for category in catalogItem.product.otherCategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathNames }}
                        {{ category.pathIds }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for file in catalogItem.product.files %}
                        {{ file.bytes }}
                        {{ file.url }}
                        {% if file.mime %}
                                {{ file.mime }}
                        {% endif %}
                        {% if file.name %}
                                {{ file.name }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.imagesWithEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.images360 %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.currentImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.otherImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.item.cartAmountRequiredMultiplier }}
                {{ catalogItem.product.item.id }}
                {{ catalogItem.product.item.loyaltyPointsAmount }}
                {{ catalogItem.product.item.name }}
                {{ catalogItem.product.item.trackingId }}
                {% if catalogItem.product.item.digital %} ... {% endif %}
                {% if catalogItem.product.item.sellable %} ... {% endif %}
                {% if catalogItem.product.item.service %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.product.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in catalogItem.product.item.availableUpsells %}
                {% endfor %}
                {{ catalogItem.product.item.trackingIds }}
                {{ catalogItem.product.item.storageLocations }}
                {% if catalogItem.product.item.packageWeight %}
                        {{ catalogItem.product.item.packageWeight }}
                {% endif %}
                {% if catalogItem.product.item.code %}
                        {{ catalogItem.product.item.code }}
                {% endif %}
                {% if catalogItem.product.item.packageHeight %}
                        {{ catalogItem.product.item.packageHeight }}
                {% endif %}
                {% if catalogItem.product.item.packageLength %}
                        {{ catalogItem.product.item.packageLength }}
                {% endif %}
                {% if catalogItem.product.item.packageWidth %}
                        {{ catalogItem.product.item.packageWidth }}
                {% endif %}
                {% if catalogItem.product.item.bundle %}
                {% endif %}
                {% if catalogItem.product.item.cheapestDelivery %}
                {% endif %}
                {% if catalogItem.product.item.freeDelivery %}
                {% endif %}
                {% if catalogItem.product.item.closestFreeDelivery %}
                {% endif %}
                {% if catalogItem.product.item.packageDimensions %}
                {% endif %}
                {% if catalogItem.product.item.image %}
                {% endif %}
                {% if catalogItem.product.item.price %}
                {% endif %}
                {% if catalogItem.product.item.url %}
                {% endif %}
                {% if catalogItem.product.item.variant %}
                {% endif %}
                {% for label in catalogItem.product.labels %}
                        {{ label.id }}
                        {{ label.name }}
                        {% if label.code %}
                                {{ label.code }}
                        {% endif %}
                        {% if label.colorCode %}
                                {{ label.colorCode }}
                        {% endif %}
                        {% if label.image %}
                        {% endif %}
                {% endfor %}
                {% for productDesigner in catalogItem.product.configurators %}
                        {{ productDesigner.name }}
                        {% if productDesigner.result %}
                        {% endif %}
                {% endfor %}
                {% for productEnumValue in catalogItem.product.enumValues %}
                        {{ productEnumValue.id }}
                        {{ productEnumValue.name }}
                        {% if productEnumValue.selected %} ... {% endif %}
                        {% for variant in productEnumValue.variants %}
                        {% endfor %}
                        {% if productEnumValue.text %}
                                {{ productEnumValue.text }}
                        {% endif %}
                        {% if productEnumValue.image %}
                        {% endif %}
                        {% if productEnumValue.variantImage %}
                        {% endif %}
                {% endfor %}
                {% for product in catalogItem.product.packTemplateProducts %}
                        {{ product.id }}
                        {{ product.name }}
                        {{ product.trackingId }}
                        {{ product.dateCreated|date('d. m. Y H:i') }}
                        {% if product.active %} ... {% endif %}
                        {% if product.compared %} ... {% endif %}
                        {% if product.differentVariantPrices %} ... {% endif %}
                        {% if product.flagNew %} ... {% endif %}
                        {% if product.flagPromo %} ... {% endif %}
                        {% if product.flagSecondHand %} ... {% endif %}
                        {% if product.flagSellout %} ... {% endif %}
                        {% if product.otherDiscountApplicable %} ... {% endif %}
                        {% if product.soldSeparately %} ... {% endif %}
                        {% for address in product.publicContacts %}
                        {% endfor %}
                        {% for attributeInstance in product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in product.categories %}
                        {% endfor %}
                        {% for category in product.otherCategories %}
                        {% endfor %}
                        {% for file in product.files %}
                        {% endfor %}
                        {% for image in product.images %}
                        {% endfor %}
                        {% for image in product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in product.images360 %}
                        {% endfor %}
                        {% for image in product.currentImages %}
                        {% endfor %}
                        {% for image in product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in product.otherImages %}
                        {% endfor %}
                        {% for label in product.labels %}
                        {% endfor %}
                        {% for productDesigner in product.configurators %}
                        {% endfor %}
                        {% for productEnumValue in product.enumValues %}
                        {% endfor %}
                        {% for upsell in product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in product.currentVariants %}
                        {% endfor %}
                        {% for variant in product.variants %}
                        {% endfor %}
                        {% for variant in product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in product.videos %}
                        {% endfor %}
                        {{ product.trackingIds }}
                        {% if product.currentSubName %}
                                {{ product.currentSubName }}
                        {% endif %}
                        {% if product.nameSuffix %}
                                {{ product.nameSuffix }}
                        {% endif %}
                        {% if product.nameSupplier %}
                                {{ product.nameSupplier }}
                        {% endif %}
                        {% if product.text %}
                                {{ product.text }}
                        {% endif %}
                        {% if product.attribute %}
                        {% endif %}
                        {% if product.brand %}
                        {% endif %}
                        {% if product.image %}
                        {% endif %}
                        {% if product.imageForEnumValueId %}
                        {% endif %}
                        {% if product.successor %}
                        {% endif %}
                        {% if product.seo %}
                        {% endif %}
                        {% if product.supplier %}
                        {% endif %}
                        {% if product.unit %}
                        {% endif %}
                        {% if product.variant %}
                        {% endif %}
                        {% if product.warranty %}
                        {% endif %}
                        {% if product.contentGrid %}
                                {{ product.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.rating.count }}
                {% if catalogItem.product.rating.voted %} ... {% endif %}
                {% if catalogItem.product.rating.average %}
                        {{ catalogItem.product.rating.average }}
                {% endif %}
                {% for upsell in catalogItem.product.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.url }}
                {{ catalogItem.product.url.absolute }}
                {{ catalogItem.product.url.path }}
                {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {{ variantChoiceStep.headline }}
                        {{ variantChoiceStep.inputName }}
                        {{ variantChoiceStep.mode }}
                        {% if variantChoiceStep.final %} ... {% endif %}
                        {% for variantChoice in variantChoiceStep.choices %}
                        {% endfor %}
                        {% if variantChoiceStep.description %}
                                {{ variantChoiceStep.description }}
                        {% endif %}
                        {% if variantChoiceStep.infoDescription %}
                                {{ variantChoiceStep.infoDescription }}
                        {% endif %}
                        {% if variantChoiceStep.messageEmpty %}
                                {{ variantChoiceStep.messageEmpty }}
                        {% endif %}
                        {% if variantChoiceStep.placeholder %}
                                {{ variantChoiceStep.placeholder }}
                        {% endif %}
                        {% if variantChoiceStep.icon %}
                        {% endif %}
                        {% if variantChoiceStep.infoIcon %}
                        {% endif %}
                        {% if variantChoiceStep.info %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogItem.product.currentVariants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogItem.product.variants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.variantType.id }}
                {{ catalogItem.product.variantType.name }}
                {% for video in catalogItem.product.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.trackingIds }}
                {% if catalogItem.product.currentSubName %}
                        {{ catalogItem.product.currentSubName }}
                {% endif %}
                {% if catalogItem.product.nameSuffix %}
                        {{ catalogItem.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.product.nameSupplier %}
                        {{ catalogItem.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.product.text %}
                        {{ catalogItem.product.text }}
                {% endif %}
                {% if catalogItem.product.attribute %}
                        {{ catalogItem.product.attribute.name }}
                        {{ catalogItem.product.attribute.valuesHtml }}
                        {% for attributeValueInstance in catalogItem.product.attribute.values %}
                        {% endfor %}
                        {% if catalogItem.product.attribute.description %}
                                {{ catalogItem.product.attribute.description }}
                        {% endif %}
                        {% if catalogItem.product.attribute.group %}
                        {% endif %}
                        {% if catalogItem.product.attribute.image %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.brand %}
                        {{ catalogItem.product.brand.id }}
                        {{ catalogItem.product.brand.headline }}
                        {{ catalogItem.product.brand.name }}
                        {% if catalogItem.product.brand.flagImportant %} ... {% endif %}
                        {% for address in catalogItem.product.brand.publicContacts %}
                        {% endfor %}
                        {% for category in catalogItem.product.brand.categories %}
                        {% endfor %}
                        {% if catalogItem.product.brand.code %}
                                {{ catalogItem.product.brand.code }}
                        {% endif %}
                        {% if catalogItem.product.brand.web %}
                                {{ catalogItem.product.brand.web }}
                        {% endif %}
                        {% if catalogItem.product.brand.text %}
                                {{ catalogItem.product.brand.text }}
                        {% endif %}
                        {% if catalogItem.product.brand.image %}
                        {% endif %}
                        {% if catalogItem.product.brand.seo %}
                        {% endif %}
                        {% if catalogItem.product.brand.contentGrid %}
                                {{ catalogItem.product.brand.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.image %}
                        {{ catalogItem.product.image.originalHeight }}
                        {{ catalogItem.product.image.originalWidth }}
                        {{ catalogItem.product.image.url }}
                        {% if catalogItem.product.image.alt %}
                                {{ catalogItem.product.image.alt }}
                        {% endif %}
                        {% if catalogItem.product.image.text %}
                                {{ catalogItem.product.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.imageForEnumValueId %}
                        {{ catalogItem.product.imageForEnumValueId.originalHeight }}
                        {{ catalogItem.product.imageForEnumValueId.originalWidth }}
                        {{ catalogItem.product.imageForEnumValueId.url }}
                        {% if catalogItem.product.imageForEnumValueId.alt %}
                                {{ catalogItem.product.imageForEnumValueId.alt }}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId.text %}
                                {{ catalogItem.product.imageForEnumValueId.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.successor %}
                        {{ catalogItem.product.successor.id }}
                        {{ catalogItem.product.successor.name }}
                        {{ catalogItem.product.successor.trackingId }}
                        {{ catalogItem.product.successor.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.successor.active %} ... {% endif %}
                        {% if catalogItem.product.successor.compared %} ... {% endif %}
                        {% if catalogItem.product.successor.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.successor.flagNew %} ... {% endif %}
                        {% if catalogItem.product.successor.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.successor.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.successor.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.successor.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.successor.soldSeparately %} ... {% endif %}
                        {% for address in catalogItem.product.successor.publicContacts %}
                        {% endfor %}
                        {% for attributeInstance in catalogItem.product.successor.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.successor.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.successor.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.successor.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.successor.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.successor.labels %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.product.successor.configurators %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.successor.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.successor.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.successor.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.successor.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.successor.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.successor.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.successor.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.successor.videos %}
                        {% endfor %}
                        {{ catalogItem.product.successor.trackingIds }}
                        {% if catalogItem.product.successor.currentSubName %}
                                {{ catalogItem.product.successor.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.successor.nameSuffix %}
                                {{ catalogItem.product.successor.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.successor.nameSupplier %}
                                {{ catalogItem.product.successor.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.successor.text %}
                                {{ catalogItem.product.successor.text }}
                        {% endif %}
                        {% if catalogItem.product.successor.attribute %}
                        {% endif %}
                        {% if catalogItem.product.successor.brand %}
                        {% endif %}
                        {% if catalogItem.product.successor.image %}
                        {% endif %}
                        {% if catalogItem.product.successor.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.successor.seo %}
                        {% endif %}
                        {% if catalogItem.product.successor.supplier %}
                        {% endif %}
                        {% if catalogItem.product.successor.unit %}
                        {% endif %}
                        {% if catalogItem.product.successor.variant %}
                        {% endif %}
                        {% if catalogItem.product.successor.warranty %}
                        {% endif %}
                        {% if catalogItem.product.successor.contentGrid %}
                                {{ catalogItem.product.successor.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.seo %}
                        {% if catalogItem.product.seo.description %}
                                {{ catalogItem.product.seo.description }}
                        {% endif %}
                        {% if catalogItem.product.seo.keywords %}
                                {{ catalogItem.product.seo.keywords }}
                        {% endif %}
                        {% if catalogItem.product.seo.title %}
                                {{ catalogItem.product.seo.title }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.supplier %}
                        {{ catalogItem.product.supplier.id }}
                        {{ catalogItem.product.supplier.name }}
                        {% for address in catalogItem.product.supplier.publicContacts %}
                        {% endfor %}
                {% endif %}
                {% if catalogItem.product.unit %}
                        {{ catalogItem.product.unit.name }}
                {% endif %}
                {% if catalogItem.product.variant %}
                        {{ catalogItem.product.variant.id }}
                        {{ catalogItem.product.variant.name }}
                        {{ catalogItem.product.variant.trackingId }}
                        {% if catalogItem.product.variant.active %} ... {% endif %}
                        {% if catalogItem.product.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.product.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.product.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.product.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.product.variant.legacyRel %}
                                {{ catalogItem.product.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.product.variant.image %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.warranty %}
                        {{ catalogItem.product.warranty.months }}
                {% endif %}
                {% if catalogItem.product.contentGrid %}
                        {{ catalogItem.product.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogItem.unit %}
                {{ catalogItem.unit.name }}
        {% endif %}
        {% if catalogItem.upsell %}
                {{ catalogItem.upsell.id }}
                {{ catalogItem.upsell.name }}
                {% if catalogItem.upsell.inCart %} ... {% endif %}
                {{ catalogItem.upsell.category.id }}
                {{ catalogItem.upsell.category.productCount }}
                {{ catalogItem.upsell.category.productInStockCount }}
                {{ catalogItem.upsell.category.totalStockQuantity }}
                {{ catalogItem.upsell.category.headline }}
                {{ catalogItem.upsell.category.menuName }}
                {{ catalogItem.upsell.category.name }}
                {% if catalogItem.upsell.category.flagErotic %} ... {% endif %}
                {% if catalogItem.upsell.category.flagImportant %} ... {% endif %}
                {% if catalogItem.upsell.category.noFollow %} ... {% endif %}
                {% for category in catalogItem.upsell.category.subcategories %}
                {% endfor %}
                {% for video in catalogItem.upsell.category.videos %}
                {% endfor %}
                {{ catalogItem.upsell.category.pathNames }}
                {{ catalogItem.upsell.category.pathIds }}
                {{ catalogItem.upsell.category.templateAttribute }}
                {% if catalogItem.upsell.category.subHeadline %}
                        {{ catalogItem.upsell.category.subHeadline }}
                {% endif %}
                {% if catalogItem.upsell.category.text %}
                        {{ catalogItem.upsell.category.text }}
                {% endif %}
                {% if catalogItem.upsell.category.parent %}
                {% endif %}
                {% if catalogItem.upsell.category.image %}
                {% endif %}
                {% if catalogItem.upsell.category.contentGrid %}
                        {{ catalogItem.upsell.category.contentGrid }}
                {% endif %}
                {{ catalogItem.upsell.price.vatRate }}
                {% if catalogItem.upsell.price.discountPercent %}
                        {{ catalogItem.upsell.price.discountPercent }}
                {% endif %}
                {% if catalogItem.upsell.price.discountValidTo %}
                        {{ catalogItem.upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.upsell.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.upsell.price.discount %}
                {% endif %}
                {{ catalogItem.upsell.product.id }}
                {{ catalogItem.upsell.product.name }}
                {{ catalogItem.upsell.product.trackingId }}
                {{ catalogItem.upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.upsell.product.active %} ... {% endif %}
                {% if catalogItem.upsell.product.compared %} ... {% endif %}
                {% if catalogItem.upsell.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.upsell.product.flagNew %} ... {% endif %}
                {% if catalogItem.upsell.product.flagPromo %} ... {% endif %}
                {% if catalogItem.upsell.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.upsell.product.flagSellout %} ... {% endif %}
                {% if catalogItem.upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.upsell.product.soldSeparately %} ... {% endif %}
                {% for address in catalogItem.upsell.product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in catalogItem.upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogItem.upsell.product.categories %}
                {% endfor %}
                {% for category in catalogItem.upsell.product.otherCategories %}
                {% endfor %}
                {% for file in catalogItem.upsell.product.files %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.images %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.images360 %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.currentImages %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.otherImages %}
                {% endfor %}
                {% for label in catalogItem.upsell.product.labels %}
                {% endfor %}
                {% for productDesigner in catalogItem.upsell.product.configurators %}
                {% endfor %}
                {% for productEnumValue in catalogItem.upsell.product.enumValues %}
                {% endfor %}
                {% for product in catalogItem.upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogItem.upsell.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogItem.upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogItem.upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogItem.upsell.product.variants %}
                {% endfor %}
                {% for variant in catalogItem.upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogItem.upsell.product.videos %}
                {% endfor %}
                {{ catalogItem.upsell.product.trackingIds }}
                {% if catalogItem.upsell.product.currentSubName %}
                        {{ catalogItem.upsell.product.currentSubName }}
                {% endif %}
                {% if catalogItem.upsell.product.nameSuffix %}
                        {{ catalogItem.upsell.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.upsell.product.nameSupplier %}
                        {{ catalogItem.upsell.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.upsell.product.text %}
                        {{ catalogItem.upsell.product.text }}
                {% endif %}
                {% if catalogItem.upsell.product.attribute %}
                {% endif %}
                {% if catalogItem.upsell.product.brand %}
                {% endif %}
                {% if catalogItem.upsell.product.image %}
                {% endif %}
                {% if catalogItem.upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogItem.upsell.product.successor %}
                {% endif %}
                {% if catalogItem.upsell.product.seo %}
                {% endif %}
                {% if catalogItem.upsell.product.supplier %}
                {% endif %}
                {% if catalogItem.upsell.product.unit %}
                {% endif %}
                {% if catalogItem.upsell.product.variant %}
                {% endif %}
                {% if catalogItem.upsell.product.warranty %}
                {% endif %}
                {% if catalogItem.upsell.product.contentGrid %}
                        {{ catalogItem.upsell.product.contentGrid }}
                {% endif %}
                {{ catalogItem.upsell.group.id }}
                {{ catalogItem.upsell.group.requiredNoteMaximumLength }}
                {{ catalogItem.upsell.group.name }}
                {% if catalogItem.upsell.group.requiredNote %} ... {% endif %}
                {% if catalogItem.upsell.group.requiredUpload %} ... {% endif %}
                {% if catalogItem.upsell.group.singleSelection %} ... {% endif %}
                {% if catalogItem.upsell.group.text %}
                        {{ catalogItem.upsell.group.text }}
                {% endif %}
                {% if catalogItem.upsell.group.uploadInput %}
                        {{ catalogItem.upsell.group.uploadInput }}
                {% endif %}
                {% if catalogItem.upsell.code %}
                        {{ catalogItem.upsell.code }}
                {% endif %}
                {% if catalogItem.upsell.vatRate %}
                        {{ catalogItem.upsell.vatRate }}
                {% endif %}
                {% if catalogItem.upsell.image %}
                        {{ catalogItem.upsell.image.originalHeight }}
                        {{ catalogItem.upsell.image.originalWidth }}
                        {{ catalogItem.upsell.image.url }}
                        {% if catalogItem.upsell.image.alt %}
                                {{ catalogItem.upsell.image.alt }}
                        {% endif %}
                        {% if catalogItem.upsell.image.text %}
                                {{ catalogItem.upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.upsell.unit %}
                        {{ catalogItem.upsell.unit.name }}
                {% endif %}
        {% endif %}
        {% if catalogItem.variant %}
                {{ catalogItem.variant.id }}
                {{ catalogItem.variant.name }}
                {{ catalogItem.variant.trackingId }}
                {% if catalogItem.variant.active %} ... {% endif %}
                {% if catalogItem.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in catalogItem.variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.variant.item.cartAmountRequiredMultiplier }}
                {{ catalogItem.variant.item.id }}
                {{ catalogItem.variant.item.loyaltyPointsAmount }}
                {{ catalogItem.variant.item.name }}
                {{ catalogItem.variant.item.trackingId }}
                {% if catalogItem.variant.item.digital %} ... {% endif %}
                {% if catalogItem.variant.item.sellable %} ... {% endif %}
                {% if catalogItem.variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in catalogItem.variant.item.availableUpsells %}
                {% endfor %}
                {{ catalogItem.variant.item.trackingIds }}
                {{ catalogItem.variant.item.storageLocations }}
                {% if catalogItem.variant.item.packageWeight %}
                        {{ catalogItem.variant.item.packageWeight }}
                {% endif %}
                {% if catalogItem.variant.item.code %}
                        {{ catalogItem.variant.item.code }}
                {% endif %}
                {% if catalogItem.variant.item.packageHeight %}
                        {{ catalogItem.variant.item.packageHeight }}
                {% endif %}
                {% if catalogItem.variant.item.packageLength %}
                        {{ catalogItem.variant.item.packageLength }}
                {% endif %}
                {% if catalogItem.variant.item.packageWidth %}
                        {{ catalogItem.variant.item.packageWidth }}
                {% endif %}
                {% if catalogItem.variant.item.bundle %}
                {% endif %}
                {% if catalogItem.variant.item.cheapestDelivery %}
                {% endif %}
                {% if catalogItem.variant.item.freeDelivery %}
                {% endif %}
                {% if catalogItem.variant.item.closestFreeDelivery %}
                {% endif %}
                {% if catalogItem.variant.item.packageDimensions %}
                {% endif %}
                {% if catalogItem.variant.item.image %}
                {% endif %}
                {% if catalogItem.variant.item.price %}
                {% endif %}
                {% if catalogItem.variant.item.url %}
                {% endif %}
                {{ catalogItem.variant.product.id }}
                {{ catalogItem.variant.product.name }}
                {{ catalogItem.variant.product.trackingId }}
                {{ catalogItem.variant.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.variant.product.active %} ... {% endif %}
                {% if catalogItem.variant.product.compared %} ... {% endif %}
                {% if catalogItem.variant.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.variant.product.flagNew %} ... {% endif %}
                {% if catalogItem.variant.product.flagPromo %} ... {% endif %}
                {% if catalogItem.variant.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.variant.product.flagSellout %} ... {% endif %}
                {% if catalogItem.variant.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.variant.product.soldSeparately %} ... {% endif %}
                {% for address in catalogItem.variant.product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in catalogItem.variant.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.variant.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogItem.variant.product.categories %}
                {% endfor %}
                {% for category in catalogItem.variant.product.otherCategories %}
                {% endfor %}
                {% for file in catalogItem.variant.product.files %}
                {% endfor %}
                {% for image in catalogItem.variant.product.images %}
                {% endfor %}
                {% for image in catalogItem.variant.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogItem.variant.product.images360 %}
                {% endfor %}
                {% for image in catalogItem.variant.product.currentImages %}
                {% endfor %}
                {% for image in catalogItem.variant.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogItem.variant.product.otherImages %}
                {% endfor %}
                {% for label in catalogItem.variant.product.labels %}
                {% endfor %}
                {% for productDesigner in catalogItem.variant.product.configurators %}
                {% endfor %}
                {% for productEnumValue in catalogItem.variant.product.enumValues %}
                {% endfor %}
                {% for product in catalogItem.variant.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogItem.variant.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogItem.variant.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogItem.variant.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogItem.variant.product.variants %}
                {% endfor %}
                {% for variant in catalogItem.variant.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogItem.variant.product.videos %}
                {% endfor %}
                {{ catalogItem.variant.product.trackingIds }}
                {% if catalogItem.variant.product.currentSubName %}
                        {{ catalogItem.variant.product.currentSubName }}
                {% endif %}
                {% if catalogItem.variant.product.nameSuffix %}
                        {{ catalogItem.variant.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.variant.product.nameSupplier %}
                        {{ catalogItem.variant.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.variant.product.text %}
                        {{ catalogItem.variant.product.text }}
                {% endif %}
                {% if catalogItem.variant.product.attribute %}
                {% endif %}
                {% if catalogItem.variant.product.brand %}
                {% endif %}
                {% if catalogItem.variant.product.image %}
                {% endif %}
                {% if catalogItem.variant.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogItem.variant.product.successor %}
                {% endif %}
                {% if catalogItem.variant.product.seo %}
                {% endif %}
                {% if catalogItem.variant.product.supplier %}
                {% endif %}
                {% if catalogItem.variant.product.unit %}
                {% endif %}
                {% if catalogItem.variant.product.warranty %}
                {% endif %}
                {% if catalogItem.variant.product.contentGrid %}
                        {{ catalogItem.variant.product.contentGrid }}
                {% endif %}
                {% for upsell in catalogItem.variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.variant.url }}
                {{ catalogItem.variant.url.absolute }}
                {{ catalogItem.variant.url.path }}
                {% if catalogItem.variant.legacyRel %}
                        {{ catalogItem.variant.legacyRel }}
                {% endif %}
                {% if catalogItem.variant.image %}
                        {{ catalogItem.variant.image.originalHeight }}
                        {{ catalogItem.variant.image.originalWidth }}
                        {{ catalogItem.variant.image.url }}
                        {% if catalogItem.variant.image.alt %}
                                {{ catalogItem.variant.image.alt }}
                        {% endif %}
                        {% if catalogItem.variant.image.text %}
                                {{ catalogItem.variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endif %}
{% endfor %}

{% for catalogItem in order.items %}
        {{ catalogItem.amount }}
        {{ catalogItem.id }}
        {{ catalogItem.name }}
        {{ catalogItem.productName }}
        {{ catalogItem.trackingId }}
        {{ catalogItem.vatRate }}
        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
        {% if catalogItem.catalogItem %} ... {% endif %}
        {% if catalogItem.deleteAllowed %} ... {% endif %}
        {% if catalogItem.discountItem %} ... {% endif %}
        {% if catalogItem.gift %} ... {% endif %}
        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for catalogItem in catalogItem.children %}
                {{ catalogItem.amount }}
                {{ catalogItem.id }}
                {{ catalogItem.name }}
                {{ catalogItem.productName }}
                {{ catalogItem.trackingId }}
                {{ catalogItem.vatRate }}
                {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                {% if catalogItem.catalogItem %} ... {% endif %}
                {% if catalogItem.deleteAllowed %} ... {% endif %}
                {% if catalogItem.discountItem %} ... {% endif %}
                {% if catalogItem.gift %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for orderItemError in catalogItem.errors %}
                        {{ orderItemError.recommendedAmount }}
                        {{ orderItemError.code }}
                        {{ orderItemError.itemName }}
                        {{ orderItemError.message }}
                {% endfor %}
                {{ catalogItem.price.vatRate }}
                {% if catalogItem.price.discountPercent %}
                        {{ catalogItem.price.discountPercent }}
                {% endif %}
                {% if catalogItem.price.discountValidTo %}
                        {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.price.discount %}
                {% endif %}
                {{ catalogItem.priceTotal.vatRate }}
                {% if catalogItem.priceTotal.discountPercent %}
                        {{ catalogItem.priceTotal.discountPercent }}
                {% endif %}
                {% if catalogItem.priceTotal.discountValidTo %}
                        {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.priceTotal.beforeDiscount %}
                {% endif %}
                {% if catalogItem.priceTotal.discount %}
                {% endif %}
                {% for productDesigner in catalogItem.availableConfigurators %}
                        {{ productDesigner.name }}
                        {% if productDesigner.result %}
                        {% endif %}
                {% endfor %}
                {% for upsell in catalogItem.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.trackingIds }}
                {% if catalogItem.code %}
                        {{ catalogItem.code }}
                {% endif %}
                {% if catalogItem.note %}
                        {{ catalogItem.note }}
                {% endif %}
                {% if catalogItem.variantName %}
                        {{ catalogItem.variantName }}
                {% endif %}
                {% if catalogItem.image %}
                        {{ catalogItem.image.originalHeight }}
                        {{ catalogItem.image.originalWidth }}
                        {{ catalogItem.image.url }}
                        {% if catalogItem.image.alt %}
                                {{ catalogItem.image.alt }}
                        {% endif %}
                        {% if catalogItem.image.text %}
                                {{ catalogItem.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item %}
                        {{ catalogItem.item.cartAmountRequiredMultiplier }}
                        {{ catalogItem.item.id }}
                        {{ catalogItem.item.loyaltyPointsAmount }}
                        {{ catalogItem.item.name }}
                        {{ catalogItem.item.trackingId }}
                        {% if catalogItem.item.digital %} ... {% endif %}
                        {% if catalogItem.item.sellable %} ... {% endif %}
                        {% if catalogItem.item.service %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.item.trackingIds }}
                        {{ catalogItem.item.storageLocations }}
                        {% if catalogItem.item.packageWeight %}
                                {{ catalogItem.item.packageWeight }}
                        {% endif %}
                        {% if catalogItem.item.code %}
                                {{ catalogItem.item.code }}
                        {% endif %}
                        {% if catalogItem.item.packageHeight %}
                                {{ catalogItem.item.packageHeight }}
                        {% endif %}
                        {% if catalogItem.item.packageLength %}
                                {{ catalogItem.item.packageLength }}
                        {% endif %}
                        {% if catalogItem.item.packageWidth %}
                                {{ catalogItem.item.packageWidth }}
                        {% endif %}
                        {% if catalogItem.item.bundle %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery %}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.packageDimensions %}
                        {% endif %}
                        {% if catalogItem.item.image %}
                        {% endif %}
                        {% if catalogItem.item.price %}
                        {% endif %}
                        {% if catalogItem.item.url %}
                        {% endif %}
                        {% if catalogItem.item.variant %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product %}
                        {{ catalogItem.product.id }}
                        {{ catalogItem.product.name }}
                        {{ catalogItem.product.trackingId }}
                        {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.active %} ... {% endif %}
                        {% if catalogItem.product.compared %} ... {% endif %}
                        {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.flagNew %} ... {% endif %}
                        {% if catalogItem.product.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.soldSeparately %} ... {% endif %}
                        {% for address in catalogItem.product.publicContacts %}
                        {% endfor %}
                        {% for attributeInstance in catalogItem.product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.labels %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.product.configurators %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.videos %}
                        {% endfor %}
                        {{ catalogItem.product.trackingIds }}
                        {% if catalogItem.product.currentSubName %}
                                {{ catalogItem.product.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.nameSuffix %}
                                {{ catalogItem.product.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.nameSupplier %}
                                {{ catalogItem.product.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.text %}
                                {{ catalogItem.product.text }}
                        {% endif %}
                        {% if catalogItem.product.attribute %}
                        {% endif %}
                        {% if catalogItem.product.brand %}
                        {% endif %}
                        {% if catalogItem.product.image %}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.successor %}
                        {% endif %}
                        {% if catalogItem.product.seo %}
                        {% endif %}
                        {% if catalogItem.product.supplier %}
                        {% endif %}
                        {% if catalogItem.product.unit %}
                        {% endif %}
                        {% if catalogItem.product.variant %}
                        {% endif %}
                        {% if catalogItem.product.warranty %}
                        {% endif %}
                        {% if catalogItem.product.contentGrid %}
                                {{ catalogItem.product.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.unit %}
                        {{ catalogItem.unit.name }}
                {% endif %}
                {% if catalogItem.upsell %}
                        {{ catalogItem.upsell.id }}
                        {{ catalogItem.upsell.name }}
                        {% if catalogItem.upsell.inCart %} ... {% endif %}
                        {% if catalogItem.upsell.code %}
                                {{ catalogItem.upsell.code }}
                        {% endif %}
                        {% if catalogItem.upsell.vatRate %}
                                {{ catalogItem.upsell.vatRate }}
                        {% endif %}
                        {% if catalogItem.upsell.image %}
                        {% endif %}
                        {% if catalogItem.upsell.unit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.variant %}
                        {{ catalogItem.variant.id }}
                        {{ catalogItem.variant.name }}
                        {{ catalogItem.variant.trackingId }}
                        {% if catalogItem.variant.active %} ... {% endif %}
                        {% if catalogItem.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.variant.legacyRel %}
                                {{ catalogItem.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.variant.image %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for orderItemError in catalogItem.errors %}
                {{ orderItemError.recommendedAmount }}
                {{ orderItemError.code }}
                {{ orderItemError.itemName }}
                {{ orderItemError.message }}
        {% endfor %}
        {{ catalogItem.price.vatRate }}
        {{ catalogItem.price.current.currency }}
        {{ catalogItem.price.current.formatted }}
        {{ catalogItem.price.current.value }}
        {% if catalogItem.price.current.perUnit %}
        {% endif %}
        {% if catalogItem.price.discountPercent %}
                {{ catalogItem.price.discountPercent }}
        {% endif %}
        {% if catalogItem.price.discountValidTo %}
                {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogItem.price.beforeDiscount %}
                {{ catalogItem.price.beforeDiscount.currency }}
                {{ catalogItem.price.beforeDiscount.formatted }}
                {{ catalogItem.price.beforeDiscount.value }}
                {% if catalogItem.price.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if catalogItem.price.discount %}
                {{ catalogItem.price.discount.currency }}
                {{ catalogItem.price.discount.formatted }}
                {{ catalogItem.price.discount.value }}
                {% if catalogItem.price.discount.perUnit %}
                {% endif %}
        {% endif %}
        {{ catalogItem.priceTotal.vatRate }}
        {{ catalogItem.priceTotal.current.currency }}
        {{ catalogItem.priceTotal.current.formatted }}
        {{ catalogItem.priceTotal.current.value }}
        {% if catalogItem.priceTotal.current.perUnit %}
        {% endif %}
        {% if catalogItem.priceTotal.discountPercent %}
                {{ catalogItem.priceTotal.discountPercent }}
        {% endif %}
        {% if catalogItem.priceTotal.discountValidTo %}
                {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogItem.priceTotal.beforeDiscount %}
                {{ catalogItem.priceTotal.beforeDiscount.currency }}
                {{ catalogItem.priceTotal.beforeDiscount.formatted }}
                {{ catalogItem.priceTotal.beforeDiscount.value }}
                {% if catalogItem.priceTotal.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if catalogItem.priceTotal.discount %}
                {{ catalogItem.priceTotal.discount.currency }}
                {{ catalogItem.priceTotal.discount.formatted }}
                {{ catalogItem.priceTotal.discount.value }}
                {% if catalogItem.priceTotal.discount.perUnit %}
                {% endif %}
        {% endif %}
        {% for productDesigner in catalogItem.availableConfigurators %}
                {{ productDesigner.name }}
                {{ productDesigner.upsell.id }}
                {{ productDesigner.upsell.name }}
                {% if productDesigner.upsell.inCart %} ... {% endif %}
                {% if productDesigner.upsell.code %}
                        {{ productDesigner.upsell.code }}
                {% endif %}
                {% if productDesigner.upsell.vatRate %}
                        {{ productDesigner.upsell.vatRate }}
                {% endif %}
                {% if productDesigner.upsell.image %}
                {% endif %}
                {% if productDesigner.upsell.unit %}
                {% endif %}
                {% if productDesigner.result %}
                        {{ productDesigner.result.imageUrl }}
                        {{ productDesigner.result.uuid }}
                        {% for productDesignerResultPart in productDesigner.result.parts %}
                        {% endfor %}
                {% endif %}
        {% endfor %}
        {% for upsell in catalogItem.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathNames }}
                {{ upsell.category.pathIds }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for address in upsell.product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productDesigner in upsell.product.configurators %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ catalogItem.trackingIds }}
        {% if catalogItem.code %}
                {{ catalogItem.code }}
        {% endif %}
        {% if catalogItem.note %}
                {{ catalogItem.note }}
        {% endif %}
        {% if catalogItem.variantName %}
                {{ catalogItem.variantName }}
        {% endif %}
        {% if catalogItem.image %}
                {{ catalogItem.image.originalHeight }}
                {{ catalogItem.image.originalWidth }}
                {{ catalogItem.image.url }}
                {% if catalogItem.image.alt %}
                        {{ catalogItem.image.alt }}
                {% endif %}
                {% if catalogItem.image.text %}
                        {{ catalogItem.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogItem.item %}
                {{ catalogItem.item.cartAmountRequiredMultiplier }}
                {{ catalogItem.item.id }}
                {{ catalogItem.item.loyaltyPointsAmount }}
                {{ catalogItem.item.name }}
                {{ catalogItem.item.trackingId }}
                {% if catalogItem.item.digital %} ... {% endif %}
                {% if catalogItem.item.sellable %} ... {% endif %}
                {% if catalogItem.item.service %} ... {% endif %}
                {{ catalogItem.item.availability.availableAmount }}
                {{ catalogItem.item.availability.availableAmountExpectedToStorageRoom }}
                {{ catalogItem.item.availability.availableAmountInShowroom }}
                {{ catalogItem.item.availability.availableAmountInStockroom }}
                {{ catalogItem.item.availability.availableAmountInStorageCenter }}
                {{ catalogItem.item.availability.availableAmountOnWayToStorageRoom }}
                {{ catalogItem.item.availability.availableDemandsAmountFromSupplierToStorageRoom }}
                {{ catalogItem.item.availability.hours }}
                {{ catalogItem.item.availability.totalAmount }}
                {% if catalogItem.item.availability.inShowroom %} ... {% endif %}
                {% if catalogItem.item.availability.inStock %} ... {% endif %}
                {% if catalogItem.item.availability.preorder %} ... {% endif %}
                {% if catalogItem.item.availability.watchdogSupported %} ... {% endif %}
                {% for deliveryOption in catalogItem.item.availability.deliveryOptions %}
                {% endfor %}
                {% for expectedAmount in catalogItem.item.availability.availableAmountsExpectedToStorageRoom %}
                {% endfor %}
                {% for expectedAmount in catalogItem.item.availability.availableAmountsOnWayToStorageRoom %}
                {% endfor %}
                {% for expectedSupplierAmount in catalogItem.item.availability.availableDemandsFromSupplierToStorageRoom %}
                {% endfor %}
                {% if catalogItem.item.availability.text %}
                        {{ catalogItem.item.availability.text }}
                {% endif %}
                {% if catalogItem.item.availability.dateExpected %}
                        {{ catalogItem.item.availability.dateExpected|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.item.availability.deliveryOption %}
                {% endif %}
                {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.item.product.id }}
                {{ catalogItem.item.product.name }}
                {{ catalogItem.item.product.trackingId }}
                {{ catalogItem.item.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.item.product.active %} ... {% endif %}
                {% if catalogItem.item.product.compared %} ... {% endif %}
                {% if catalogItem.item.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.item.product.flagNew %} ... {% endif %}
                {% if catalogItem.item.product.flagPromo %} ... {% endif %}
                {% if catalogItem.item.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.item.product.flagSellout %} ... {% endif %}
                {% if catalogItem.item.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.item.product.soldSeparately %} ... {% endif %}
                {% for address in catalogItem.item.product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in catalogItem.item.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.item.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogItem.item.product.categories %}
                {% endfor %}
                {% for category in catalogItem.item.product.otherCategories %}
                {% endfor %}
                {% for file in catalogItem.item.product.files %}
                {% endfor %}
                {% for image in catalogItem.item.product.images %}
                {% endfor %}
                {% for image in catalogItem.item.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogItem.item.product.images360 %}
                {% endfor %}
                {% for image in catalogItem.item.product.currentImages %}
                {% endfor %}
                {% for image in catalogItem.item.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogItem.item.product.otherImages %}
                {% endfor %}
                {% for label in catalogItem.item.product.labels %}
                {% endfor %}
                {% for productDesigner in catalogItem.item.product.configurators %}
                {% endfor %}
                {% for productEnumValue in catalogItem.item.product.enumValues %}
                {% endfor %}
                {% for product in catalogItem.item.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogItem.item.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogItem.item.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogItem.item.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogItem.item.product.variants %}
                {% endfor %}
                {% for variant in catalogItem.item.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogItem.item.product.videos %}
                {% endfor %}
                {{ catalogItem.item.product.trackingIds }}
                {% if catalogItem.item.product.currentSubName %}
                        {{ catalogItem.item.product.currentSubName }}
                {% endif %}
                {% if catalogItem.item.product.nameSuffix %}
                        {{ catalogItem.item.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.item.product.nameSupplier %}
                        {{ catalogItem.item.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.item.product.text %}
                        {{ catalogItem.item.product.text }}
                {% endif %}
                {% if catalogItem.item.product.attribute %}
                {% endif %}
                {% if catalogItem.item.product.brand %}
                {% endif %}
                {% if catalogItem.item.product.image %}
                {% endif %}
                {% if catalogItem.item.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogItem.item.product.successor %}
                {% endif %}
                {% if catalogItem.item.product.seo %}
                {% endif %}
                {% if catalogItem.item.product.supplier %}
                {% endif %}
                {% if catalogItem.item.product.unit %}
                {% endif %}
                {% if catalogItem.item.product.variant %}
                {% endif %}
                {% if catalogItem.item.product.warranty %}
                {% endif %}
                {% if catalogItem.item.product.contentGrid %}
                        {{ catalogItem.item.product.contentGrid }}
                {% endif %}
                {% for upsell in catalogItem.item.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.item.trackingIds }}
                {{ catalogItem.item.storageLocations }}
                {% if catalogItem.item.packageWeight %}
                        {{ catalogItem.item.packageWeight }}
                {% endif %}
                {% if catalogItem.item.code %}
                        {{ catalogItem.item.code }}
                {% endif %}
                {% if catalogItem.item.packageHeight %}
                        {{ catalogItem.item.packageHeight }}
                {% endif %}
                {% if catalogItem.item.packageLength %}
                        {{ catalogItem.item.packageLength }}
                {% endif %}
                {% if catalogItem.item.packageWidth %}
                        {{ catalogItem.item.packageWidth }}
                {% endif %}
                {% if catalogItem.item.bundle %}
                        {% if catalogItem.item.bundle.multiPack %} ... {% endif %}
                        {% if catalogItem.item.bundle.price %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.cheapestDelivery %}
                        {{ catalogItem.item.cheapestDelivery.inputId }}
                        {{ catalogItem.item.cheapestDelivery.name }}
                        {{ catalogItem.item.cheapestDelivery.vatRate }}
                        {% if catalogItem.item.cheapestDelivery.branchRequired %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.currier %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.digital %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.free %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.pickup %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.selected %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.text %}
                                {{ catalogItem.item.cheapestDelivery.text }}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.branch %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.carrier %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.deliveryDate %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.packageType %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.image %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.freeDelivery %}
                        {{ catalogItem.item.freeDelivery.name }}
                        {{ catalogItem.item.freeDelivery.vatRate }}
                        {% if catalogItem.item.freeDelivery.deliveryAddressRequired %} ... {% endif %}
                        {% if catalogItem.item.freeDelivery.id %}
                                {{ catalogItem.item.freeDelivery.id }}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.closestFreeDelivery %}
                        {{ catalogItem.item.closestFreeDelivery.name }}
                        {{ catalogItem.item.closestFreeDelivery.vatRate }}
                        {% if catalogItem.item.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
                        {% if catalogItem.item.closestFreeDelivery.id %}
                                {{ catalogItem.item.closestFreeDelivery.id }}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.packageDimensions %}
                        {{ catalogItem.item.packageDimensions }}
                        {{ catalogItem.item.packageDimensions.unit }}
                        {{ catalogItem.item.packageDimensions.height }}
                        {{ catalogItem.item.packageDimensions.length }}
                        {{ catalogItem.item.packageDimensions.width }}
                {% endif %}
                {% if catalogItem.item.image %}
                        {{ catalogItem.item.image.originalHeight }}
                        {{ catalogItem.item.image.originalWidth }}
                        {{ catalogItem.item.image.url }}
                        {% if catalogItem.item.image.alt %}
                                {{ catalogItem.item.image.alt }}
                        {% endif %}
                        {% if catalogItem.item.image.text %}
                                {{ catalogItem.item.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.price %}
                        {{ catalogItem.item.price.vatRate }}
                        {% if catalogItem.item.price.discountPercent %}
                                {{ catalogItem.item.price.discountPercent }}
                        {% endif %}
                        {% if catalogItem.item.price.discountValidTo %}
                                {{ catalogItem.item.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if catalogItem.item.price.beforeDiscount %}
                        {% endif %}
                        {% if catalogItem.item.price.discount %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.url %}
                        {{ catalogItem.item.url }}
                        {{ catalogItem.item.url.absolute }}
                        {{ catalogItem.item.url.path }}
                {% endif %}
                {% if catalogItem.item.variant %}
                        {{ catalogItem.item.variant.id }}
                        {{ catalogItem.item.variant.name }}
                        {{ catalogItem.item.variant.trackingId }}
                        {% if catalogItem.item.variant.active %} ... {% endif %}
                        {% if catalogItem.item.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.item.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.item.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.item.variant.legacyRel %}
                                {{ catalogItem.item.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.item.variant.image %}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if catalogItem.product %}
                {{ catalogItem.product.id }}
                {{ catalogItem.product.name }}
                {{ catalogItem.product.trackingId }}
                {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.product.active %} ... {% endif %}
                {% if catalogItem.product.compared %} ... {% endif %}
                {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.product.flagNew %} ... {% endif %}
                {% if catalogItem.product.flagPromo %} ... {% endif %}
                {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.product.flagSellout %} ... {% endif %}
                {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.product.soldSeparately %} ... {% endif %}
                {% for address in catalogItem.product.publicContacts %}
                        {% if address.city %}
                                {{ address.city }}
                        {% endif %}
                        {% if address.company %}
                                {{ address.company }}
                        {% endif %}
                        {% if address.companyId %}
                                {{ address.companyId }}
                        {% endif %}
                        {% if address.email %}
                                {{ address.email }}
                        {% endif %}
                        {% if address.phone %}
                                {{ address.phone }}
                        {% endif %}
                        {% if address.region %}
                                {{ address.region }}
                        {% endif %}
                        {% if address.street %}
                                {{ address.street }}
                        {% endif %}
                        {% if address.vatId %}
                                {{ address.vatId }}
                        {% endif %}
                        {% if address.web %}
                                {{ address.web }}
                        {% endif %}
                        {% if address.zip %}
                                {{ address.zip }}
                        {% endif %}
                        {% if address.purpose %}
                        {% endif %}
                        {% if address.country %}
                        {% endif %}
                {% endfor %}
                {% for attributeInstance in catalogItem.product.attributes %}
                        {{ attributeInstance.name }}
                        {{ attributeInstance.valuesHtml }}
                        {% for attributeValueInstance in attributeInstance.values %}
                        {% endfor %}
                        {% if attributeInstance.description %}
                                {{ attributeInstance.description }}
                        {% endif %}
                        {% if attributeInstance.group %}
                        {% endif %}
                        {% if attributeInstance.image %}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.category.id }}
                {{ catalogItem.product.category.productCount }}
                {{ catalogItem.product.category.productInStockCount }}
                {{ catalogItem.product.category.totalStockQuantity }}
                {{ catalogItem.product.category.headline }}
                {{ catalogItem.product.category.menuName }}
                {{ catalogItem.product.category.name }}
                {% if catalogItem.product.category.flagErotic %} ... {% endif %}
                {% if catalogItem.product.category.flagImportant %} ... {% endif %}
                {% if catalogItem.product.category.noFollow %} ... {% endif %}
                {% for category in catalogItem.product.category.subcategories %}
                {% endfor %}
                {% for video in catalogItem.product.category.videos %}
                {% endfor %}
                {{ catalogItem.product.category.pathNames }}
                {{ catalogItem.product.category.pathIds }}
                {{ catalogItem.product.category.templateAttribute }}
                {% if catalogItem.product.category.subHeadline %}
                        {{ catalogItem.product.category.subHeadline }}
                {% endif %}
                {% if catalogItem.product.category.text %}
                        {{ catalogItem.product.category.text }}
                {% endif %}
                {% if catalogItem.product.category.parent %}
                {% endif %}
                {% if catalogItem.product.category.image %}
                {% endif %}
                {% if catalogItem.product.category.contentGrid %}
                        {{ catalogItem.product.category.contentGrid }}
                {% endif %}
                {% for category in catalogItem.product.categories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathNames }}
                        {{ category.pathIds }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for category in catalogItem.product.otherCategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathNames }}
                        {{ category.pathIds }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for file in catalogItem.product.files %}
                        {{ file.bytes }}
                        {{ file.url }}
                        {% if file.mime %}
                                {{ file.mime }}
                        {% endif %}
                        {% if file.name %}
                                {{ file.name }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.imagesWithEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.images360 %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.currentImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.otherImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.item.cartAmountRequiredMultiplier }}
                {{ catalogItem.product.item.id }}
                {{ catalogItem.product.item.loyaltyPointsAmount }}
                {{ catalogItem.product.item.name }}
                {{ catalogItem.product.item.trackingId }}
                {% if catalogItem.product.item.digital %} ... {% endif %}
                {% if catalogItem.product.item.sellable %} ... {% endif %}
                {% if catalogItem.product.item.service %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.product.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in catalogItem.product.item.availableUpsells %}
                {% endfor %}
                {{ catalogItem.product.item.trackingIds }}
                {{ catalogItem.product.item.storageLocations }}
                {% if catalogItem.product.item.packageWeight %}
                        {{ catalogItem.product.item.packageWeight }}
                {% endif %}
                {% if catalogItem.product.item.code %}
                        {{ catalogItem.product.item.code }}
                {% endif %}
                {% if catalogItem.product.item.packageHeight %}
                        {{ catalogItem.product.item.packageHeight }}
                {% endif %}
                {% if catalogItem.product.item.packageLength %}
                        {{ catalogItem.product.item.packageLength }}
                {% endif %}
                {% if catalogItem.product.item.packageWidth %}
                        {{ catalogItem.product.item.packageWidth }}
                {% endif %}
                {% if catalogItem.product.item.bundle %}
                {% endif %}
                {% if catalogItem.product.item.cheapestDelivery %}
                {% endif %}
                {% if catalogItem.product.item.freeDelivery %}
                {% endif %}
                {% if catalogItem.product.item.closestFreeDelivery %}
                {% endif %}
                {% if catalogItem.product.item.packageDimensions %}
                {% endif %}
                {% if catalogItem.product.item.image %}
                {% endif %}
                {% if catalogItem.product.item.price %}
                {% endif %}
                {% if catalogItem.product.item.url %}
                {% endif %}
                {% if catalogItem.product.item.variant %}
                {% endif %}
                {% for label in catalogItem.product.labels %}
                        {{ label.id }}
                        {{ label.name }}
                        {% if label.code %}
                                {{ label.code }}
                        {% endif %}
                        {% if label.colorCode %}
                                {{ label.colorCode }}
                        {% endif %}
                        {% if label.image %}
                        {% endif %}
                {% endfor %}
                {% for productDesigner in catalogItem.product.configurators %}
                        {{ productDesigner.name }}
                        {% if productDesigner.result %}
                        {% endif %}
                {% endfor %}
                {% for productEnumValue in catalogItem.product.enumValues %}
                        {{ productEnumValue.id }}
                        {{ productEnumValue.name }}
                        {% if productEnumValue.selected %} ... {% endif %}
                        {% for variant in productEnumValue.variants %}
                        {% endfor %}
                        {% if productEnumValue.text %}
                                {{ productEnumValue.text }}
                        {% endif %}
                        {% if productEnumValue.image %}
                        {% endif %}
                        {% if productEnumValue.variantImage %}
                        {% endif %}
                {% endfor %}
                {% for product in catalogItem.product.packTemplateProducts %}
                        {{ product.id }}
                        {{ product.name }}
                        {{ product.trackingId }}
                        {{ product.dateCreated|date('d. m. Y H:i') }}
                        {% if product.active %} ... {% endif %}
                        {% if product.compared %} ... {% endif %}
                        {% if product.differentVariantPrices %} ... {% endif %}
                        {% if product.flagNew %} ... {% endif %}
                        {% if product.flagPromo %} ... {% endif %}
                        {% if product.flagSecondHand %} ... {% endif %}
                        {% if product.flagSellout %} ... {% endif %}
                        {% if product.otherDiscountApplicable %} ... {% endif %}
                        {% if product.soldSeparately %} ... {% endif %}
                        {% for address in product.publicContacts %}
                        {% endfor %}
                        {% for attributeInstance in product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in product.categories %}
                        {% endfor %}
                        {% for category in product.otherCategories %}
                        {% endfor %}
                        {% for file in product.files %}
                        {% endfor %}
                        {% for image in product.images %}
                        {% endfor %}
                        {% for image in product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in product.images360 %}
                        {% endfor %}
                        {% for image in product.currentImages %}
                        {% endfor %}
                        {% for image in product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in product.otherImages %}
                        {% endfor %}
                        {% for label in product.labels %}
                        {% endfor %}
                        {% for productDesigner in product.configurators %}
                        {% endfor %}
                        {% for productEnumValue in product.enumValues %}
                        {% endfor %}
                        {% for upsell in product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in product.currentVariants %}
                        {% endfor %}
                        {% for variant in product.variants %}
                        {% endfor %}
                        {% for variant in product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in product.videos %}
                        {% endfor %}
                        {{ product.trackingIds }}
                        {% if product.currentSubName %}
                                {{ product.currentSubName }}
                        {% endif %}
                        {% if product.nameSuffix %}
                                {{ product.nameSuffix }}
                        {% endif %}
                        {% if product.nameSupplier %}
                                {{ product.nameSupplier }}
                        {% endif %}
                        {% if product.text %}
                                {{ product.text }}
                        {% endif %}
                        {% if product.attribute %}
                        {% endif %}
                        {% if product.brand %}
                        {% endif %}
                        {% if product.image %}
                        {% endif %}
                        {% if product.imageForEnumValueId %}
                        {% endif %}
                        {% if product.successor %}
                        {% endif %}
                        {% if product.seo %}
                        {% endif %}
                        {% if product.supplier %}
                        {% endif %}
                        {% if product.unit %}
                        {% endif %}
                        {% if product.variant %}
                        {% endif %}
                        {% if product.warranty %}
                        {% endif %}
                        {% if product.contentGrid %}
                                {{ product.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.rating.count }}
                {% if catalogItem.product.rating.voted %} ... {% endif %}
                {% if catalogItem.product.rating.average %}
                        {{ catalogItem.product.rating.average }}
                {% endif %}
                {% for upsell in catalogItem.product.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.url }}
                {{ catalogItem.product.url.absolute }}
                {{ catalogItem.product.url.path }}
                {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {{ variantChoiceStep.headline }}
                        {{ variantChoiceStep.inputName }}
                        {{ variantChoiceStep.mode }}
                        {% if variantChoiceStep.final %} ... {% endif %}
                        {% for variantChoice in variantChoiceStep.choices %}
                        {% endfor %}
                        {% if variantChoiceStep.description %}
                                {{ variantChoiceStep.description }}
                        {% endif %}
                        {% if variantChoiceStep.infoDescription %}
                                {{ variantChoiceStep.infoDescription }}
                        {% endif %}
                        {% if variantChoiceStep.messageEmpty %}
                                {{ variantChoiceStep.messageEmpty }}
                        {% endif %}
                        {% if variantChoiceStep.placeholder %}
                                {{ variantChoiceStep.placeholder }}
                        {% endif %}
                        {% if variantChoiceStep.icon %}
                        {% endif %}
                        {% if variantChoiceStep.infoIcon %}
                        {% endif %}
                        {% if variantChoiceStep.info %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogItem.product.currentVariants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogItem.product.variants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.variantType.id }}
                {{ catalogItem.product.variantType.name }}
                {% for video in catalogItem.product.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.trackingIds }}
                {% if catalogItem.product.currentSubName %}
                        {{ catalogItem.product.currentSubName }}
                {% endif %}
                {% if catalogItem.product.nameSuffix %}
                        {{ catalogItem.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.product.nameSupplier %}
                        {{ catalogItem.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.product.text %}
                        {{ catalogItem.product.text }}
                {% endif %}
                {% if catalogItem.product.attribute %}
                        {{ catalogItem.product.attribute.name }}
                        {{ catalogItem.product.attribute.valuesHtml }}
                        {% for attributeValueInstance in catalogItem.product.attribute.values %}
                        {% endfor %}
                        {% if catalogItem.product.attribute.description %}
                                {{ catalogItem.product.attribute.description }}
                        {% endif %}
                        {% if catalogItem.product.attribute.group %}
                        {% endif %}
                        {% if catalogItem.product.attribute.image %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.brand %}
                        {{ catalogItem.product.brand.id }}
                        {{ catalogItem.product.brand.headline }}
                        {{ catalogItem.product.brand.name }}
                        {% if catalogItem.product.brand.flagImportant %} ... {% endif %}
                        {% for address in catalogItem.product.brand.publicContacts %}
                        {% endfor %}
                        {% for category in catalogItem.product.brand.categories %}
                        {% endfor %}
                        {% if catalogItem.product.brand.code %}
                                {{ catalogItem.product.brand.code }}
                        {% endif %}
                        {% if catalogItem.product.brand.web %}
                                {{ catalogItem.product.brand.web }}
                        {% endif %}
                        {% if catalogItem.product.brand.text %}
                                {{ catalogItem.product.brand.text }}
                        {% endif %}
                        {% if catalogItem.product.brand.image %}
                        {% endif %}
                        {% if catalogItem.product.brand.seo %}
                        {% endif %}
                        {% if catalogItem.product.brand.contentGrid %}
                                {{ catalogItem.product.brand.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.image %}
                        {{ catalogItem.product.image.originalHeight }}
                        {{ catalogItem.product.image.originalWidth }}
                        {{ catalogItem.product.image.url }}
                        {% if catalogItem.product.image.alt %}
                                {{ catalogItem.product.image.alt }}
                        {% endif %}
                        {% if catalogItem.product.image.text %}
                                {{ catalogItem.product.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.imageForEnumValueId %}
                        {{ catalogItem.product.imageForEnumValueId.originalHeight }}
                        {{ catalogItem.product.imageForEnumValueId.originalWidth }}
                        {{ catalogItem.product.imageForEnumValueId.url }}
                        {% if catalogItem.product.imageForEnumValueId.alt %}
                                {{ catalogItem.product.imageForEnumValueId.alt }}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId.text %}
                                {{ catalogItem.product.imageForEnumValueId.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.successor %}
                        {{ catalogItem.product.successor.id }}
                        {{ catalogItem.product.successor.name }}
                        {{ catalogItem.product.successor.trackingId }}
                        {{ catalogItem.product.successor.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.successor.active %} ... {% endif %}
                        {% if catalogItem.product.successor.compared %} ... {% endif %}
                        {% if catalogItem.product.successor.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.successor.flagNew %} ... {% endif %}
                        {% if catalogItem.product.successor.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.successor.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.successor.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.successor.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.successor.soldSeparately %} ... {% endif %}
                        {% for address in catalogItem.product.successor.publicContacts %}
                        {% endfor %}
                        {% for attributeInstance in catalogItem.product.successor.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.successor.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.successor.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.successor.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.successor.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.successor.labels %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.product.successor.configurators %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.successor.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.successor.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.successor.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.successor.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.successor.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.successor.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.successor.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.successor.videos %}
                        {% endfor %}
                        {{ catalogItem.product.successor.trackingIds }}
                        {% if catalogItem.product.successor.currentSubName %}
                                {{ catalogItem.product.successor.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.successor.nameSuffix %}
                                {{ catalogItem.product.successor.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.successor.nameSupplier %}
                                {{ catalogItem.product.successor.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.successor.text %}
                                {{ catalogItem.product.successor.text }}
                        {% endif %}
                        {% if catalogItem.product.successor.attribute %}
                        {% endif %}
                        {% if catalogItem.product.successor.brand %}
                        {% endif %}
                        {% if catalogItem.product.successor.image %}
                        {% endif %}
                        {% if catalogItem.product.successor.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.successor.seo %}
                        {% endif %}
                        {% if catalogItem.product.successor.supplier %}
                        {% endif %}
                        {% if catalogItem.product.successor.unit %}
                        {% endif %}
                        {% if catalogItem.product.successor.variant %}
                        {% endif %}
                        {% if catalogItem.product.successor.warranty %}
                        {% endif %}
                        {% if catalogItem.product.successor.contentGrid %}
                                {{ catalogItem.product.successor.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.seo %}
                        {% if catalogItem.product.seo.description %}
                                {{ catalogItem.product.seo.description }}
                        {% endif %}
                        {% if catalogItem.product.seo.keywords %}
                                {{ catalogItem.product.seo.keywords }}
                        {% endif %}
                        {% if catalogItem.product.seo.title %}
                                {{ catalogItem.product.seo.title }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.supplier %}
                        {{ catalogItem.product.supplier.id }}
                        {{ catalogItem.product.supplier.name }}
                        {% for address in catalogItem.product.supplier.publicContacts %}
                        {% endfor %}
                {% endif %}
                {% if catalogItem.product.unit %}
                        {{ catalogItem.product.unit.name }}
                {% endif %}
                {% if catalogItem.product.variant %}
                        {{ catalogItem.product.variant.id }}
                        {{ catalogItem.product.variant.name }}
                        {{ catalogItem.product.variant.trackingId }}
                        {% if catalogItem.product.variant.active %} ... {% endif %}
                        {% if catalogItem.product.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.product.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.product.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.product.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.product.variant.legacyRel %}
                                {{ catalogItem.product.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.product.variant.image %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.warranty %}
                        {{ catalogItem.product.warranty.months }}
                {% endif %}
                {% if catalogItem.product.contentGrid %}
                        {{ catalogItem.product.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogItem.unit %}
                {{ catalogItem.unit.name }}
        {% endif %}
        {% if catalogItem.upsell %}
                {{ catalogItem.upsell.id }}
                {{ catalogItem.upsell.name }}
                {% if catalogItem.upsell.inCart %} ... {% endif %}
                {{ catalogItem.upsell.category.id }}
                {{ catalogItem.upsell.category.productCount }}
                {{ catalogItem.upsell.category.productInStockCount }}
                {{ catalogItem.upsell.category.totalStockQuantity }}
                {{ catalogItem.upsell.category.headline }}
                {{ catalogItem.upsell.category.menuName }}
                {{ catalogItem.upsell.category.name }}
                {% if catalogItem.upsell.category.flagErotic %} ... {% endif %}
                {% if catalogItem.upsell.category.flagImportant %} ... {% endif %}
                {% if catalogItem.upsell.category.noFollow %} ... {% endif %}
                {% for category in catalogItem.upsell.category.subcategories %}
                {% endfor %}
                {% for video in catalogItem.upsell.category.videos %}
                {% endfor %}
                {{ catalogItem.upsell.category.pathNames }}
                {{ catalogItem.upsell.category.pathIds }}
                {{ catalogItem.upsell.category.templateAttribute }}
                {% if catalogItem.upsell.category.subHeadline %}
                        {{ catalogItem.upsell.category.subHeadline }}
                {% endif %}
                {% if catalogItem.upsell.category.text %}
                        {{ catalogItem.upsell.category.text }}
                {% endif %}
                {% if catalogItem.upsell.category.parent %}
                {% endif %}
                {% if catalogItem.upsell.category.image %}
                {% endif %}
                {% if catalogItem.upsell.category.contentGrid %}
                        {{ catalogItem.upsell.category.contentGrid }}
                {% endif %}
                {{ catalogItem.upsell.price.vatRate }}
                {% if catalogItem.upsell.price.discountPercent %}
                        {{ catalogItem.upsell.price.discountPercent }}
                {% endif %}
                {% if catalogItem.upsell.price.discountValidTo %}
                        {{ catalogItem.upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.upsell.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.upsell.price.discount %}
                {% endif %}
                {{ catalogItem.upsell.product.id }}
                {{ catalogItem.upsell.product.name }}
                {{ catalogItem.upsell.product.trackingId }}
                {{ catalogItem.upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.upsell.product.active %} ... {% endif %}
                {% if catalogItem.upsell.product.compared %} ... {% endif %}
                {% if catalogItem.upsell.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.upsell.product.flagNew %} ... {% endif %}
                {% if catalogItem.upsell.product.flagPromo %} ... {% endif %}
                {% if catalogItem.upsell.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.upsell.product.flagSellout %} ... {% endif %}
                {% if catalogItem.upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.upsell.product.soldSeparately %} ... {% endif %}
                {% for address in catalogItem.upsell.product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in catalogItem.upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogItem.upsell.product.categories %}
                {% endfor %}
                {% for category in catalogItem.upsell.product.otherCategories %}
                {% endfor %}
                {% for file in catalogItem.upsell.product.files %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.images %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.images360 %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.currentImages %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.otherImages %}
                {% endfor %}
                {% for label in catalogItem.upsell.product.labels %}
                {% endfor %}
                {% for productDesigner in catalogItem.upsell.product.configurators %}
                {% endfor %}
                {% for productEnumValue in catalogItem.upsell.product.enumValues %}
                {% endfor %}
                {% for product in catalogItem.upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogItem.upsell.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogItem.upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogItem.upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogItem.upsell.product.variants %}
                {% endfor %}
                {% for variant in catalogItem.upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogItem.upsell.product.videos %}
                {% endfor %}
                {{ catalogItem.upsell.product.trackingIds }}
                {% if catalogItem.upsell.product.currentSubName %}
                        {{ catalogItem.upsell.product.currentSubName }}
                {% endif %}
                {% if catalogItem.upsell.product.nameSuffix %}
                        {{ catalogItem.upsell.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.upsell.product.nameSupplier %}
                        {{ catalogItem.upsell.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.upsell.product.text %}
                        {{ catalogItem.upsell.product.text }}
                {% endif %}
                {% if catalogItem.upsell.product.attribute %}
                {% endif %}
                {% if catalogItem.upsell.product.brand %}
                {% endif %}
                {% if catalogItem.upsell.product.image %}
                {% endif %}
                {% if catalogItem.upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogItem.upsell.product.successor %}
                {% endif %}
                {% if catalogItem.upsell.product.seo %}
                {% endif %}
                {% if catalogItem.upsell.product.supplier %}
                {% endif %}
                {% if catalogItem.upsell.product.unit %}
                {% endif %}
                {% if catalogItem.upsell.product.variant %}
                {% endif %}
                {% if catalogItem.upsell.product.warranty %}
                {% endif %}
                {% if catalogItem.upsell.product.contentGrid %}
                        {{ catalogItem.upsell.product.contentGrid }}
                {% endif %}
                {{ catalogItem.upsell.group.id }}
                {{ catalogItem.upsell.group.requiredNoteMaximumLength }}
                {{ catalogItem.upsell.group.name }}
                {% if catalogItem.upsell.group.requiredNote %} ... {% endif %}
                {% if catalogItem.upsell.group.requiredUpload %} ... {% endif %}
                {% if catalogItem.upsell.group.singleSelection %} ... {% endif %}
                {% if catalogItem.upsell.group.text %}
                        {{ catalogItem.upsell.group.text }}
                {% endif %}
                {% if catalogItem.upsell.group.uploadInput %}
                        {{ catalogItem.upsell.group.uploadInput }}
                {% endif %}
                {% if catalogItem.upsell.code %}
                        {{ catalogItem.upsell.code }}
                {% endif %}
                {% if catalogItem.upsell.vatRate %}
                        {{ catalogItem.upsell.vatRate }}
                {% endif %}
                {% if catalogItem.upsell.image %}
                        {{ catalogItem.upsell.image.originalHeight }}
                        {{ catalogItem.upsell.image.originalWidth }}
                        {{ catalogItem.upsell.image.url }}
                        {% if catalogItem.upsell.image.alt %}
                                {{ catalogItem.upsell.image.alt }}
                        {% endif %}
                        {% if catalogItem.upsell.image.text %}
                                {{ catalogItem.upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.upsell.unit %}
                        {{ catalogItem.upsell.unit.name }}
                {% endif %}
        {% endif %}
        {% if catalogItem.variant %}
                {{ catalogItem.variant.id }}
                {{ catalogItem.variant.name }}
                {{ catalogItem.variant.trackingId }}
                {% if catalogItem.variant.active %} ... {% endif %}
                {% if catalogItem.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in catalogItem.variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.variant.item.cartAmountRequiredMultiplier }}
                {{ catalogItem.variant.item.id }}
                {{ catalogItem.variant.item.loyaltyPointsAmount }}
                {{ catalogItem.variant.item.name }}
                {{ catalogItem.variant.item.trackingId }}
                {% if catalogItem.variant.item.digital %} ... {% endif %}
                {% if catalogItem.variant.item.sellable %} ... {% endif %}
                {% if catalogItem.variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in catalogItem.variant.item.availableUpsells %}
                {% endfor %}
                {{ catalogItem.variant.item.trackingIds }}
                {{ catalogItem.variant.item.storageLocations }}
                {% if catalogItem.variant.item.packageWeight %}
                        {{ catalogItem.variant.item.packageWeight }}
                {% endif %}
                {% if catalogItem.variant.item.code %}
                        {{ catalogItem.variant.item.code }}
                {% endif %}
                {% if catalogItem.variant.item.packageHeight %}
                        {{ catalogItem.variant.item.packageHeight }}
                {% endif %}
                {% if catalogItem.variant.item.packageLength %}
                        {{ catalogItem.variant.item.packageLength }}
                {% endif %}
                {% if catalogItem.variant.item.packageWidth %}
                        {{ catalogItem.variant.item.packageWidth }}
                {% endif %}
                {% if catalogItem.variant.item.bundle %}
                {% endif %}
                {% if catalogItem.variant.item.cheapestDelivery %}
                {% endif %}
                {% if catalogItem.variant.item.freeDelivery %}
                {% endif %}
                {% if catalogItem.variant.item.closestFreeDelivery %}
                {% endif %}
                {% if catalogItem.variant.item.packageDimensions %}
                {% endif %}
                {% if catalogItem.variant.item.image %}
                {% endif %}
                {% if catalogItem.variant.item.price %}
                {% endif %}
                {% if catalogItem.variant.item.url %}
                {% endif %}
                {{ catalogItem.variant.product.id }}
                {{ catalogItem.variant.product.name }}
                {{ catalogItem.variant.product.trackingId }}
                {{ catalogItem.variant.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.variant.product.active %} ... {% endif %}
                {% if catalogItem.variant.product.compared %} ... {% endif %}
                {% if catalogItem.variant.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.variant.product.flagNew %} ... {% endif %}
                {% if catalogItem.variant.product.flagPromo %} ... {% endif %}
                {% if catalogItem.variant.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.variant.product.flagSellout %} ... {% endif %}
                {% if catalogItem.variant.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.variant.product.soldSeparately %} ... {% endif %}
                {% for address in catalogItem.variant.product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in catalogItem.variant.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.variant.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogItem.variant.product.categories %}
                {% endfor %}
                {% for category in catalogItem.variant.product.otherCategories %}
                {% endfor %}
                {% for file in catalogItem.variant.product.files %}
                {% endfor %}
                {% for image in catalogItem.variant.product.images %}
                {% endfor %}
                {% for image in catalogItem.variant.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogItem.variant.product.images360 %}
                {% endfor %}
                {% for image in catalogItem.variant.product.currentImages %}
                {% endfor %}
                {% for image in catalogItem.variant.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogItem.variant.product.otherImages %}
                {% endfor %}
                {% for label in catalogItem.variant.product.labels %}
                {% endfor %}
                {% for productDesigner in catalogItem.variant.product.configurators %}
                {% endfor %}
                {% for productEnumValue in catalogItem.variant.product.enumValues %}
                {% endfor %}
                {% for product in catalogItem.variant.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogItem.variant.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogItem.variant.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogItem.variant.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogItem.variant.product.variants %}
                {% endfor %}
                {% for variant in catalogItem.variant.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogItem.variant.product.videos %}
                {% endfor %}
                {{ catalogItem.variant.product.trackingIds }}
                {% if catalogItem.variant.product.currentSubName %}
                        {{ catalogItem.variant.product.currentSubName }}
                {% endif %}
                {% if catalogItem.variant.product.nameSuffix %}
                        {{ catalogItem.variant.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.variant.product.nameSupplier %}
                        {{ catalogItem.variant.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.variant.product.text %}
                        {{ catalogItem.variant.product.text }}
                {% endif %}
                {% if catalogItem.variant.product.attribute %}
                {% endif %}
                {% if catalogItem.variant.product.brand %}
                {% endif %}
                {% if catalogItem.variant.product.image %}
                {% endif %}
                {% if catalogItem.variant.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogItem.variant.product.successor %}
                {% endif %}
                {% if catalogItem.variant.product.seo %}
                {% endif %}
                {% if catalogItem.variant.product.supplier %}
                {% endif %}
                {% if catalogItem.variant.product.unit %}
                {% endif %}
                {% if catalogItem.variant.product.warranty %}
                {% endif %}
                {% if catalogItem.variant.product.contentGrid %}
                        {{ catalogItem.variant.product.contentGrid }}
                {% endif %}
                {% for upsell in catalogItem.variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.variant.url }}
                {{ catalogItem.variant.url.absolute }}
                {{ catalogItem.variant.url.path }}
                {% if catalogItem.variant.legacyRel %}
                        {{ catalogItem.variant.legacyRel }}
                {% endif %}
                {% if catalogItem.variant.image %}
                        {{ catalogItem.variant.image.originalHeight }}
                        {{ catalogItem.variant.image.originalWidth }}
                        {{ catalogItem.variant.image.url }}
                        {% if catalogItem.variant.image.alt %}
                                {{ catalogItem.variant.image.alt }}
                        {% endif %}
                        {% if catalogItem.variant.image.text %}
                                {{ catalogItem.variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endif %}
{% endfor %}

{% for discountItem in order.discountItems %}
        {{ discountItem.amount }}
        {{ discountItem.id }}
        {{ discountItem.name }}
        {{ discountItem.vatRate }}
        {% if discountItem.amountChangeAllowed %} ... {% endif %}
        {% if discountItem.catalogItem %} ... {% endif %}
        {% if discountItem.deleteAllowed %} ... {% endif %}
        {% if discountItem.discountItem %} ... {% endif %}
        {% for discountItem in discountItem.children %}
                {{ discountItem.amount }}
                {{ discountItem.id }}
                {{ discountItem.name }}
                {{ discountItem.vatRate }}
                {% if discountItem.amountChangeAllowed %} ... {% endif %}
                {% if discountItem.catalogItem %} ... {% endif %}
                {% if discountItem.deleteAllowed %} ... {% endif %}
                {% if discountItem.discountItem %} ... {% endif %}
                {% if discountItem.note %}
                        {{ discountItem.note }}
                {% endif %}
                {% if discountItem.trackingId %}
                        {{ discountItem.trackingId }}
                {% endif %}
                {% if discountItem.percent %}
                        {{ discountItem.percent }}
                {% endif %}
                {% if discountItem.discountCode %}
                        {{ discountItem.discountCode.code }}
                        {{ discountItem.discountCode.name }}
                        {{ discountItem.discountCode.validFrom|date('d. m. Y H:i') }}
                        {{ discountItem.discountCode.validTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if discountItem.voucher %}
                        {{ discountItem.voucher.code }}
                        {{ discountItem.voucher.validTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if discountItem.price %}
                        {{ discountItem.price.vatRate }}
                        {% if discountItem.price.discountPercent %}
                                {{ discountItem.price.discountPercent }}
                        {% endif %}
                        {% if discountItem.price.discountValidTo %}
                                {{ discountItem.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if discountItem.price.beforeDiscount %}
                        {% endif %}
                        {% if discountItem.price.discount %}
                        {% endif %}
                {% endif %}
                {% if discountItem.priceTotal %}
                        {{ discountItem.priceTotal.vatRate }}
                        {% if discountItem.priceTotal.discountPercent %}
                                {{ discountItem.priceTotal.discountPercent }}
                        {% endif %}
                        {% if discountItem.priceTotal.discountValidTo %}
                                {{ discountItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if discountItem.priceTotal.beforeDiscount %}
                        {% endif %}
                        {% if discountItem.priceTotal.discount %}
                        {% endif %}
                {% endif %}
                {% if discountItem.unit %}
                        {{ discountItem.unit.name }}
                {% endif %}
        {% endfor %}
        {% if discountItem.note %}
                {{ discountItem.note }}
        {% endif %}
        {% if discountItem.trackingId %}
                {{ discountItem.trackingId }}
        {% endif %}
        {% if discountItem.percent %}
                {{ discountItem.percent }}
        {% endif %}
        {% if discountItem.discountCode %}
                {{ discountItem.discountCode.code }}
                {{ discountItem.discountCode.name }}
                {{ discountItem.discountCode.validFrom|date('d. m. Y H:i') }}
                {{ discountItem.discountCode.validTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if discountItem.voucher %}
                {{ discountItem.voucher.code }}
                {{ discountItem.voucher.validTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if discountItem.price %}
                {{ discountItem.price.vatRate }}
                {{ discountItem.price.current.currency }}
                {{ discountItem.price.current.formatted }}
                {{ discountItem.price.current.value }}
                {% if discountItem.price.current.perUnit %}
                {% endif %}
                {% if discountItem.price.discountPercent %}
                        {{ discountItem.price.discountPercent }}
                {% endif %}
                {% if discountItem.price.discountValidTo %}
                        {{ discountItem.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if discountItem.price.beforeDiscount %}
                        {{ discountItem.price.beforeDiscount.currency }}
                        {{ discountItem.price.beforeDiscount.formatted }}
                        {{ discountItem.price.beforeDiscount.value }}
                        {% if discountItem.price.beforeDiscount.perUnit %}
                        {% endif %}
                {% endif %}
                {% if discountItem.price.discount %}
                        {{ discountItem.price.discount.currency }}
                        {{ discountItem.price.discount.formatted }}
                        {{ discountItem.price.discount.value }}
                        {% if discountItem.price.discount.perUnit %}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if discountItem.priceTotal %}
                {{ discountItem.priceTotal.vatRate }}
                {{ discountItem.priceTotal.current.currency }}
                {{ discountItem.priceTotal.current.formatted }}
                {{ discountItem.priceTotal.current.value }}
                {% if discountItem.priceTotal.current.perUnit %}
                {% endif %}
                {% if discountItem.priceTotal.discountPercent %}
                        {{ discountItem.priceTotal.discountPercent }}
                {% endif %}
                {% if discountItem.priceTotal.discountValidTo %}
                        {{ discountItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if discountItem.priceTotal.beforeDiscount %}
                        {{ discountItem.priceTotal.beforeDiscount.currency }}
                        {{ discountItem.priceTotal.beforeDiscount.formatted }}
                        {{ discountItem.priceTotal.beforeDiscount.value }}
                        {% if discountItem.priceTotal.beforeDiscount.perUnit %}
                        {% endif %}
                {% endif %}
                {% if discountItem.priceTotal.discount %}
                        {{ discountItem.priceTotal.discount.currency }}
                        {{ discountItem.priceTotal.discount.formatted }}
                        {{ discountItem.priceTotal.discount.value }}
                        {% if discountItem.priceTotal.discount.perUnit %}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if discountItem.unit %}
                {{ discountItem.unit.name }}
        {% endif %}
{% endfor %}
{{ order.price.total.currency }}
{{ order.price.total.formatted }}
{{ order.price.total.value }}
{% if order.price.total.perUnit %}
        {{ order.price.total.perUnit }}
        {{ order.price.total.perUnit.formatted }}
        {{ order.price.total.perUnit.unit }}
{% endif %}
{{ order.price.unpaid.currency }}
{{ order.price.unpaid.formatted }}
{{ order.price.unpaid.value }}
{% if order.price.unpaid.perUnit %}
        {{ order.price.unpaid.perUnit }}
        {{ order.price.unpaid.perUnit.formatted }}
        {{ order.price.unpaid.perUnit.unit }}
{% endif %}
{{ order.price.paid.currency }}
{{ order.price.paid.formatted }}
{{ order.price.paid.value }}
{% if order.price.paid.perUnit %}
        {{ order.price.paid.perUnit }}
        {{ order.price.paid.perUnit.formatted }}
        {{ order.price.paid.perUnit.unit }}
{% endif %}
{{ order.status.id }}
{{ order.status.name }}

{% for socialProfile in order.shop.socialProfiles %}
        {{ socialProfile.type }}
        {{ socialProfile.url }}
{% endfor %}
{% if order.shop.email %}
        {{ order.shop.email }}
{% endif %}
{% if order.shop.language %}
        {{ order.shop.language }}
{% endif %}
{% if order.shop.name %}
        {{ order.shop.name }}
{% endif %}
{% if order.shop.phone %}
        {{ order.shop.phone }}
{% endif %}
{% if order.shop.shortDomain %}
        {{ order.shop.shortDomain }}
{% endif %}
{% if order.shop.url %}
        {{ order.shop.url }}
{% endif %}
{% if order.shop.country %}
        {{ order.shop.country.code }}
        {{ order.shop.country.flagCircleUrl }}
        {{ order.shop.country.flagUrl }}
        {{ order.shop.country.name }}
        {% if order.shop.country.eU %} ... {% endif %}
{% endif %}
{% if order.shop.image %}
        {{ order.shop.image.originalHeight }}
        {{ order.shop.image.originalWidth }}
        {{ order.shop.image.url }}
        {% if order.shop.image.alt %}
                {{ order.shop.image.alt }}
        {% endif %}
        {% if order.shop.image.text %}
                {{ order.shop.image.text }}
        {% endif %}
{% endif %}
{{ order.url }}
{{ order.url.absolute }}
{{ order.url.path }}

{% for giftVoucher in order.purchasedGiftVouchers %}
        {{ giftVoucher.code }}
        {{ giftVoucher.name }}
        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
        {{ giftVoucher.value.currency }}
        {{ giftVoucher.value.formatted }}
        {% if giftVoucher.value.perUnit %}
                {{ giftVoucher.value.perUnit }}
                {{ giftVoucher.value.perUnit.formatted }}
                {{ giftVoucher.value.perUnit.unit }}
        {% endif %}
{% endfor %}

{% for giftVoucher in order.vouchers %}
        {{ giftVoucher.code }}
        {{ giftVoucher.name }}
        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
        {{ giftVoucher.value.currency }}
        {{ giftVoucher.value.formatted }}
        {% if giftVoucher.value.perUnit %}
                {{ giftVoucher.value.perUnit }}
                {{ giftVoucher.value.perUnit.formatted }}
                {{ giftVoucher.value.perUnit.unit }}
        {% endif %}
{% endfor %}

{% if order.code %}
        {{ order.code }}
{% endif %}

{% if order.note %}
        {{ order.note }}
{% endif %}

{% if order.date %}
        {{ order.date|date('d. m. Y H:i') }}
{% endif %}

{% if order.dateInStatus %}
        {{ order.dateInStatus|date('d. m. Y H:i') }}
{% endif %}

{% if order.expectedShippingDate %}
        {{ order.expectedShippingDate|date('d. m. Y H:i') }}
{% endif %}

{% if order.customer %}
        {{ order.customer.id }}
        {{ order.customer.userPointsAvailable }}
        {{ order.customer.userPointsExpiringOn }}
        {{ order.customer.userPointsTotal }}
        {{ order.customer.name }}
        {{ order.customer.dateCreated|date('d. m. Y H:i') }}
        {% if order.customer.productOnWishlist %} ... {% endif %}
        {% if order.customer.vatCharged %} ... {% endif %}
        {% if order.customer.wholesale %} ... {% endif %}
        {% for accountingDocument in order.customer.receipts %}
                {{ accountingDocument.code }}
                {{ accountingDocument.date|date('d. m. Y H:i') }}
                {{ accountingDocument.totalPrice.vatRate }}
                {% if accountingDocument.totalPrice.discountPercent %}
                        {{ accountingDocument.totalPrice.discountPercent }}
                {% endif %}
                {% if accountingDocument.totalPrice.discountValidTo %}
                        {{ accountingDocument.totalPrice.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if accountingDocument.totalPrice.beforeDiscount %}
                {% endif %}
                {% if accountingDocument.totalPrice.discount %}
                {% endif %}
                {{ accountingDocument.pdfUrl }}
                {{ accountingDocument.pdfUrl.absolute }}
                {{ accountingDocument.pdfUrl.path }}
        {% endfor %}
        {% if order.customer.address.delivery.city %}
                {{ order.customer.address.delivery.city }}
        {% endif %}
        {% if order.customer.address.delivery.company %}
                {{ order.customer.address.delivery.company }}
        {% endif %}
        {% if order.customer.address.delivery.companyId %}
                {{ order.customer.address.delivery.companyId }}
        {% endif %}
        {% if order.customer.address.delivery.email %}
                {{ order.customer.address.delivery.email }}
        {% endif %}
        {% if order.customer.address.delivery.phone %}
                {{ order.customer.address.delivery.phone }}
        {% endif %}
        {% if order.customer.address.delivery.region %}
                {{ order.customer.address.delivery.region }}
        {% endif %}
        {% if order.customer.address.delivery.street %}
                {{ order.customer.address.delivery.street }}
        {% endif %}
        {% if order.customer.address.delivery.vatId %}
                {{ order.customer.address.delivery.vatId }}
        {% endif %}
        {% if order.customer.address.delivery.web %}
                {{ order.customer.address.delivery.web }}
        {% endif %}
        {% if order.customer.address.delivery.zip %}
                {{ order.customer.address.delivery.zip }}
        {% endif %}
        {% if order.customer.address.delivery.purpose %}
        {% endif %}
        {% if order.customer.address.delivery.country %}
        {% endif %}
        {% if order.customer.address.invoice.city %}
                {{ order.customer.address.invoice.city }}
        {% endif %}
        {% if order.customer.address.invoice.company %}
                {{ order.customer.address.invoice.company }}
        {% endif %}
        {% if order.customer.address.invoice.companyId %}
                {{ order.customer.address.invoice.companyId }}
        {% endif %}
        {% if order.customer.address.invoice.email %}
                {{ order.customer.address.invoice.email }}
        {% endif %}
        {% if order.customer.address.invoice.phone %}
                {{ order.customer.address.invoice.phone }}
        {% endif %}
        {% if order.customer.address.invoice.region %}
                {{ order.customer.address.invoice.region }}
        {% endif %}
        {% if order.customer.address.invoice.street %}
                {{ order.customer.address.invoice.street }}
        {% endif %}
        {% if order.customer.address.invoice.vatId %}
                {{ order.customer.address.invoice.vatId }}
        {% endif %}
        {% if order.customer.address.invoice.web %}
                {{ order.customer.address.invoice.web }}
        {% endif %}
        {% if order.customer.address.invoice.zip %}
                {{ order.customer.address.invoice.zip }}
        {% endif %}
        {% if order.customer.address.invoice.purpose %}
        {% endif %}
        {% if order.customer.address.invoice.country %}
        {% endif %}
        {% for analyticsReport in order.customer.analyticReports %}
                {{ analyticsReport.name }}
                {{ analyticsReport.url }}
                {{ analyticsReport.url.absolute }}
                {{ analyticsReport.url.path }}
        {% endfor %}
        {% for order in order.customer.orders %}
                {{ order.amountOfItem }}
                {{ order.catalogItemCount }}
                {{ order.catalogItemTotalAmount }}
                {{ order.id }}
                {{ order.loyaltyPoints }}
                {{ order.usableLoyaltyPoints }}
                {{ order.language }}
                {{ order.vs }}
                {% if order.containsAnyOfLabels %} ... {% endif %}
                {% if order.containsItem %} ... {% endif %}
                {% if order.containsLabel %} ... {% endif %}
                {% if order.digitalPhysicalCombination %} ... {% endif %}
                {% if order.erotic %} ... {% endif %}
                {% if order.externalReviewAllowed %} ... {% endif %}
                {% if order.paid %} ... {% endif %}
                {% if order.useLoyaltyPoints %} ... {% endif %}
                {% if order.useLoyaltyPointsManually %} ... {% endif %}
                {% for accountingDocument in order.accountingDocuments %}
                        {{ accountingDocument.code }}
                        {{ accountingDocument.date|date('d. m. Y H:i') }}
                {% endfor %}
                {% for payment in order.availablePaymentMethods %}
                        {{ payment.inputId }}
                        {{ payment.name }}
                        {{ payment.url }}
                        {{ payment.vatRate }}
                        {% if payment.free %} ... {% endif %}
                        {% if payment.inAdvance %} ... {% endif %}
                        {% if payment.selected %} ... {% endif %}
                        {% if payment.code %}
                                {{ payment.code }}
                        {% endif %}
                        {% if payment.vs %}
                                {{ payment.vs }}
                        {% endif %}
                        {% if payment.qRCodeHTML %}
                                {{ payment.qRCodeHTML }}
                        {% endif %}
                        {% if payment.text %}
                                {{ payment.text }}
                        {% endif %}
                        {% if payment.bankAccount %}
                        {% endif %}
                        {% if payment.image %}
                        {% endif %}
                {% endfor %}
                {% for payment in order.payments %}
                        {{ payment.inputId }}
                        {{ payment.name }}
                        {{ payment.url }}
                        {{ payment.vatRate }}
                        {% if payment.free %} ... {% endif %}
                        {% if payment.inAdvance %} ... {% endif %}
                        {% if payment.selected %} ... {% endif %}
                        {% if payment.code %}
                                {{ payment.code }}
                        {% endif %}
                        {% if payment.vs %}
                                {{ payment.vs }}
                        {% endif %}
                        {% if payment.qRCodeHTML %}
                                {{ payment.qRCodeHTML }}
                        {% endif %}
                        {% if payment.text %}
                                {{ payment.text }}
                        {% endif %}
                        {% if payment.bankAccount %}
                        {% endif %}
                        {% if payment.image %}
                        {% endif %}
                {% endfor %}
                {% for transport in order.availableTransportMethods %}
                        {{ transport.inputId }}
                        {{ transport.name }}
                        {{ transport.vatRate }}
                        {% if transport.branchRequired %} ... {% endif %}
                        {% if transport.currier %} ... {% endif %}
                        {% if transport.dateGuaranteed %} ... {% endif %}
                        {% if transport.deliveryToAddress %} ... {% endif %}
                        {% if transport.digital %} ... {% endif %}
                        {% if transport.free %} ... {% endif %}
                        {% if transport.pickup %} ... {% endif %}
                        {% if transport.selected %} ... {% endif %}
                        {% if transport.text %}
                                {{ transport.text }}
                        {% endif %}
                        {% if transport.branch %}
                        {% endif %}
                        {% if transport.carrier %}
                        {% endif %}
                        {% if transport.deliveryDate %}
                        {% endif %}
                        {% if transport.packageType %}
                        {% endif %}
                        {% if transport.image %}
                        {% endif %}
                {% endfor %}
                {{ order.delivery.name }}
                {{ order.delivery.vatRate }}
                {% if order.delivery.deliveryAddressRequired %} ... {% endif %}
                {% if order.delivery.id %}
                        {{ order.delivery.id }}
                {% endif %}
                {% if order.delivery.freeLimit %}
                {% endif %}
                {% for catalogItem in order.catalogItems %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {% endfor %}
                        {% for catalogItem in catalogItem.children %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.availableConfigurators %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in order.items %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {% endfor %}
                        {% for catalogItem in catalogItem.children %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.availableConfigurators %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for discountItem in order.discountItems %}
                        {{ discountItem.amount }}
                        {{ discountItem.id }}
                        {{ discountItem.name }}
                        {{ discountItem.vatRate }}
                        {% if discountItem.amountChangeAllowed %} ... {% endif %}
                        {% if discountItem.catalogItem %} ... {% endif %}
                        {% if discountItem.deleteAllowed %} ... {% endif %}
                        {% if discountItem.discountItem %} ... {% endif %}
                        {% for discountItem in discountItem.children %}
                        {% endfor %}
                        {% if discountItem.note %}
                                {{ discountItem.note }}
                        {% endif %}
                        {% if discountItem.trackingId %}
                                {{ discountItem.trackingId }}
                        {% endif %}
                        {% if discountItem.percent %}
                                {{ discountItem.percent }}
                        {% endif %}
                        {% if discountItem.discountCode %}
                        {% endif %}
                        {% if discountItem.voucher %}
                        {% endif %}
                        {% if discountItem.price %}
                        {% endif %}
                        {% if discountItem.priceTotal %}
                        {% endif %}
                        {% if discountItem.unit %}
                        {% endif %}
                {% endfor %}
                {{ order.status.id }}
                {{ order.status.name }}
                {% for socialProfile in order.shop.socialProfiles %}
                {% endfor %}
                {% if order.shop.email %}
                        {{ order.shop.email }}
                {% endif %}
                {% if order.shop.language %}
                        {{ order.shop.language }}
                {% endif %}
                {% if order.shop.name %}
                        {{ order.shop.name }}
                {% endif %}
                {% if order.shop.phone %}
                        {{ order.shop.phone }}
                {% endif %}
                {% if order.shop.shortDomain %}
                        {{ order.shop.shortDomain }}
                {% endif %}
                {% if order.shop.url %}
                        {{ order.shop.url }}
                {% endif %}
                {% if order.shop.country %}
                {% endif %}
                {% if order.shop.image %}
                {% endif %}
                {{ order.url }}
                {{ order.url.absolute }}
                {{ order.url.path }}
                {% for giftVoucher in order.purchasedGiftVouchers %}
                        {{ giftVoucher.code }}
                        {{ giftVoucher.name }}
                        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {% endfor %}
                {% for giftVoucher in order.vouchers %}
                        {{ giftVoucher.code }}
                        {{ giftVoucher.name }}
                        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {% endfor %}
                {% if order.code %}
                        {{ order.code }}
                {% endif %}
                {% if order.note %}
                        {{ order.note }}
                {% endif %}
                {% if order.date %}
                        {{ order.date|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.dateInStatus %}
                        {{ order.dateInStatus|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.expectedShippingDate %}
                        {{ order.expectedShippingDate|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.closestFreeDelivery %}
                        {{ order.closestFreeDelivery.name }}
                        {{ order.closestFreeDelivery.vatRate }}
                        {% if order.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
                        {% if order.closestFreeDelivery.id %}
                                {{ order.closestFreeDelivery.id }}
                        {% endif %}
                        {% if order.closestFreeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if order.parentOrder %}
                        {{ order.parentOrder.amountOfItem }}
                        {{ order.parentOrder.catalogItemCount }}
                        {{ order.parentOrder.catalogItemTotalAmount }}
                        {{ order.parentOrder.id }}
                        {{ order.parentOrder.loyaltyPoints }}
                        {{ order.parentOrder.usableLoyaltyPoints }}
                        {{ order.parentOrder.language }}
                        {{ order.parentOrder.vs }}
                        {% if order.parentOrder.containsAnyOfLabels %} ... {% endif %}
                        {% if order.parentOrder.containsItem %} ... {% endif %}
                        {% if order.parentOrder.containsLabel %} ... {% endif %}
                        {% if order.parentOrder.digitalPhysicalCombination %} ... {% endif %}
                        {% if order.parentOrder.erotic %} ... {% endif %}
                        {% if order.parentOrder.externalReviewAllowed %} ... {% endif %}
                        {% if order.parentOrder.paid %} ... {% endif %}
                        {% if order.parentOrder.useLoyaltyPoints %} ... {% endif %}
                        {% if order.parentOrder.useLoyaltyPointsManually %} ... {% endif %}
                        {% for accountingDocument in order.parentOrder.accountingDocuments %}
                        {% endfor %}
                        {% for payment in order.parentOrder.availablePaymentMethods %}
                        {% endfor %}
                        {% for payment in order.parentOrder.payments %}
                        {% endfor %}
                        {% for transport in order.parentOrder.availableTransportMethods %}
                        {% endfor %}
                        {% for catalogItem in order.parentOrder.catalogItems %}
                        {% endfor %}
                        {% for catalogItem in order.parentOrder.items %}
                        {% endfor %}
                        {% for discountItem in order.parentOrder.discountItems %}
                        {% endfor %}
                        {% for giftVoucher in order.parentOrder.purchasedGiftVouchers %}
                        {% endfor %}
                        {% for giftVoucher in order.parentOrder.vouchers %}
                        {% endfor %}
                        {% if order.parentOrder.code %}
                                {{ order.parentOrder.code }}
                        {% endif %}
                        {% if order.parentOrder.note %}
                                {{ order.parentOrder.note }}
                        {% endif %}
                        {% if order.parentOrder.date %}
                                {{ order.parentOrder.date|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.parentOrder.dateInStatus %}
                                {{ order.parentOrder.dateInStatus|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.parentOrder.expectedShippingDate %}
                                {{ order.parentOrder.expectedShippingDate|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.parentOrder.closestFreeDelivery %}
                        {% endif %}
                        {% if order.parentOrder.package %}
                        {% endif %}
                {% endif %}
                {% if order.package %}
                        {{ order.package.trackingUrl }}
                        {{ order.package.date|date('d. m. Y H:i') }}
                        {% if order.package.code %}
                                {{ order.package.code }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for order in order.customer.childOrders %}
                {{ order.amountOfItem }}
                {{ order.catalogItemCount }}
                {{ order.catalogItemTotalAmount }}
                {{ order.id }}
                {{ order.loyaltyPoints }}
                {{ order.usableLoyaltyPoints }}
                {{ order.language }}
                {{ order.vs }}
                {% if order.containsAnyOfLabels %} ... {% endif %}
                {% if order.containsItem %} ... {% endif %}
                {% if order.containsLabel %} ... {% endif %}
                {% if order.digitalPhysicalCombination %} ... {% endif %}
                {% if order.erotic %} ... {% endif %}
                {% if order.externalReviewAllowed %} ... {% endif %}
                {% if order.paid %} ... {% endif %}
                {% if order.useLoyaltyPoints %} ... {% endif %}
                {% if order.useLoyaltyPointsManually %} ... {% endif %}
                {% for accountingDocument in order.accountingDocuments %}
                        {{ accountingDocument.code }}
                        {{ accountingDocument.date|date('d. m. Y H:i') }}
                {% endfor %}
                {% for payment in order.availablePaymentMethods %}
                        {{ payment.inputId }}
                        {{ payment.name }}
                        {{ payment.url }}
                        {{ payment.vatRate }}
                        {% if payment.free %} ... {% endif %}
                        {% if payment.inAdvance %} ... {% endif %}
                        {% if payment.selected %} ... {% endif %}
                        {% if payment.code %}
                                {{ payment.code }}
                        {% endif %}
                        {% if payment.vs %}
                                {{ payment.vs }}
                        {% endif %}
                        {% if payment.qRCodeHTML %}
                                {{ payment.qRCodeHTML }}
                        {% endif %}
                        {% if payment.text %}
                                {{ payment.text }}
                        {% endif %}
                        {% if payment.bankAccount %}
                        {% endif %}
                        {% if payment.image %}
                        {% endif %}
                {% endfor %}
                {% for payment in order.payments %}
                        {{ payment.inputId }}
                        {{ payment.name }}
                        {{ payment.url }}
                        {{ payment.vatRate }}
                        {% if payment.free %} ... {% endif %}
                        {% if payment.inAdvance %} ... {% endif %}
                        {% if payment.selected %} ... {% endif %}
                        {% if payment.code %}
                                {{ payment.code }}
                        {% endif %}
                        {% if payment.vs %}
                                {{ payment.vs }}
                        {% endif %}
                        {% if payment.qRCodeHTML %}
                                {{ payment.qRCodeHTML }}
                        {% endif %}
                        {% if payment.text %}
                                {{ payment.text }}
                        {% endif %}
                        {% if payment.bankAccount %}
                        {% endif %}
                        {% if payment.image %}
                        {% endif %}
                {% endfor %}
                {% for transport in order.availableTransportMethods %}
                        {{ transport.inputId }}
                        {{ transport.name }}
                        {{ transport.vatRate }}
                        {% if transport.branchRequired %} ... {% endif %}
                        {% if transport.currier %} ... {% endif %}
                        {% if transport.dateGuaranteed %} ... {% endif %}
                        {% if transport.deliveryToAddress %} ... {% endif %}
                        {% if transport.digital %} ... {% endif %}
                        {% if transport.free %} ... {% endif %}
                        {% if transport.pickup %} ... {% endif %}
                        {% if transport.selected %} ... {% endif %}
                        {% if transport.text %}
                                {{ transport.text }}
                        {% endif %}
                        {% if transport.branch %}
                        {% endif %}
                        {% if transport.carrier %}
                        {% endif %}
                        {% if transport.deliveryDate %}
                        {% endif %}
                        {% if transport.packageType %}
                        {% endif %}
                        {% if transport.image %}
                        {% endif %}
                {% endfor %}
                {{ order.delivery.name }}
                {{ order.delivery.vatRate }}
                {% if order.delivery.deliveryAddressRequired %} ... {% endif %}
                {% if order.delivery.id %}
                        {{ order.delivery.id }}
                {% endif %}
                {% if order.delivery.freeLimit %}
                {% endif %}
                {% for catalogItem in order.catalogItems %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {% endfor %}
                        {% for catalogItem in catalogItem.children %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.availableConfigurators %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in order.items %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {% endfor %}
                        {% for catalogItem in catalogItem.children %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.availableConfigurators %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for discountItem in order.discountItems %}
                        {{ discountItem.amount }}
                        {{ discountItem.id }}
                        {{ discountItem.name }}
                        {{ discountItem.vatRate }}
                        {% if discountItem.amountChangeAllowed %} ... {% endif %}
                        {% if discountItem.catalogItem %} ... {% endif %}
                        {% if discountItem.deleteAllowed %} ... {% endif %}
                        {% if discountItem.discountItem %} ... {% endif %}
                        {% for discountItem in discountItem.children %}
                        {% endfor %}
                        {% if discountItem.note %}
                                {{ discountItem.note }}
                        {% endif %}
                        {% if discountItem.trackingId %}
                                {{ discountItem.trackingId }}
                        {% endif %}
                        {% if discountItem.percent %}
                                {{ discountItem.percent }}
                        {% endif %}
                        {% if discountItem.discountCode %}
                        {% endif %}
                        {% if discountItem.voucher %}
                        {% endif %}
                        {% if discountItem.price %}
                        {% endif %}
                        {% if discountItem.priceTotal %}
                        {% endif %}
                        {% if discountItem.unit %}
                        {% endif %}
                {% endfor %}
                {{ order.status.id }}
                {{ order.status.name }}
                {% for socialProfile in order.shop.socialProfiles %}
                {% endfor %}
                {% if order.shop.email %}
                        {{ order.shop.email }}
                {% endif %}
                {% if order.shop.language %}
                        {{ order.shop.language }}
                {% endif %}
                {% if order.shop.name %}
                        {{ order.shop.name }}
                {% endif %}
                {% if order.shop.phone %}
                        {{ order.shop.phone }}
                {% endif %}
                {% if order.shop.shortDomain %}
                        {{ order.shop.shortDomain }}
                {% endif %}
                {% if order.shop.url %}
                        {{ order.shop.url }}
                {% endif %}
                {% if order.shop.country %}
                {% endif %}
                {% if order.shop.image %}
                {% endif %}
                {{ order.url }}
                {{ order.url.absolute }}
                {{ order.url.path }}
                {% for giftVoucher in order.purchasedGiftVouchers %}
                        {{ giftVoucher.code }}
                        {{ giftVoucher.name }}
                        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {% endfor %}
                {% for giftVoucher in order.vouchers %}
                        {{ giftVoucher.code }}
                        {{ giftVoucher.name }}
                        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {% endfor %}
                {% if order.code %}
                        {{ order.code }}
                {% endif %}
                {% if order.note %}
                        {{ order.note }}
                {% endif %}
                {% if order.date %}
                        {{ order.date|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.dateInStatus %}
                        {{ order.dateInStatus|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.expectedShippingDate %}
                        {{ order.expectedShippingDate|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.closestFreeDelivery %}
                        {{ order.closestFreeDelivery.name }}
                        {{ order.closestFreeDelivery.vatRate }}
                        {% if order.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
                        {% if order.closestFreeDelivery.id %}
                                {{ order.closestFreeDelivery.id }}
                        {% endif %}
                        {% if order.closestFreeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if order.parentOrder %}
                        {{ order.parentOrder.amountOfItem }}
                        {{ order.parentOrder.catalogItemCount }}
                        {{ order.parentOrder.catalogItemTotalAmount }}
                        {{ order.parentOrder.id }}
                        {{ order.parentOrder.loyaltyPoints }}
                        {{ order.parentOrder.usableLoyaltyPoints }}
                        {{ order.parentOrder.language }}
                        {{ order.parentOrder.vs }}
                        {% if order.parentOrder.containsAnyOfLabels %} ... {% endif %}
                        {% if order.parentOrder.containsItem %} ... {% endif %}
                        {% if order.parentOrder.containsLabel %} ... {% endif %}
                        {% if order.parentOrder.digitalPhysicalCombination %} ... {% endif %}
                        {% if order.parentOrder.erotic %} ... {% endif %}
                        {% if order.parentOrder.externalReviewAllowed %} ... {% endif %}
                        {% if order.parentOrder.paid %} ... {% endif %}
                        {% if order.parentOrder.useLoyaltyPoints %} ... {% endif %}
                        {% if order.parentOrder.useLoyaltyPointsManually %} ... {% endif %}
                        {% for accountingDocument in order.parentOrder.accountingDocuments %}
                        {% endfor %}
                        {% for payment in order.parentOrder.availablePaymentMethods %}
                        {% endfor %}
                        {% for payment in order.parentOrder.payments %}
                        {% endfor %}
                        {% for transport in order.parentOrder.availableTransportMethods %}
                        {% endfor %}
                        {% for catalogItem in order.parentOrder.catalogItems %}
                        {% endfor %}
                        {% for catalogItem in order.parentOrder.items %}
                        {% endfor %}
                        {% for discountItem in order.parentOrder.discountItems %}
                        {% endfor %}
                        {% for giftVoucher in order.parentOrder.purchasedGiftVouchers %}
                        {% endfor %}
                        {% for giftVoucher in order.parentOrder.vouchers %}
                        {% endfor %}
                        {% if order.parentOrder.code %}
                                {{ order.parentOrder.code }}
                        {% endif %}
                        {% if order.parentOrder.note %}
                                {{ order.parentOrder.note }}
                        {% endif %}
                        {% if order.parentOrder.date %}
                                {{ order.parentOrder.date|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.parentOrder.dateInStatus %}
                                {{ order.parentOrder.dateInStatus|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.parentOrder.expectedShippingDate %}
                                {{ order.parentOrder.expectedShippingDate|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.parentOrder.closestFreeDelivery %}
                        {% endif %}
                        {% if order.parentOrder.package %}
                        {% endif %}
                {% endif %}
                {% if order.package %}
                        {{ order.package.trackingUrl }}
                        {{ order.package.date|date('d. m. Y H:i') }}
                        {% if order.package.code %}
                                {{ order.package.code }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for userPointChange in order.customer.userPointChanges %}
                {{ userPointChange.amount }}
                {{ userPointChange.text }}
                {{ userPointChange.date|date('d. m. Y H:i') }}
                {% if userPointChange.dateExpire %}
                        {{ userPointChange.dateExpire|date('d. m. Y H:i') }}
                {% endif %}
        {% endfor %}
        {{ order.customer.alternativeAddresses }}
        {% if order.customer.loyaltyCard %}
                {{ order.customer.loyaltyCard }}
        {% endif %}
        {% if order.customer.socialLoginId %}
                {{ order.customer.socialLoginId }}
        {% endif %}
{% endif %}

{% if order.closestFreeDelivery %}
        {{ order.closestFreeDelivery.name }}
        {{ order.closestFreeDelivery.vatRate }}
        {% if order.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
        {{ order.closestFreeDelivery.payment.inputId }}
        {{ order.closestFreeDelivery.payment.name }}
        {{ order.closestFreeDelivery.payment.url }}
        {{ order.closestFreeDelivery.payment.vatRate }}
        {% if order.closestFreeDelivery.payment.free %} ... {% endif %}
        {% if order.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
        {% if order.closestFreeDelivery.payment.selected %} ... {% endif %}
        {{ order.closestFreeDelivery.payment.price.vatRate }}
        {% if order.closestFreeDelivery.payment.price.discountPercent %}
                {{ order.closestFreeDelivery.payment.price.discountPercent }}
        {% endif %}
        {% if order.closestFreeDelivery.payment.price.discountValidTo %}
                {{ order.closestFreeDelivery.payment.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.closestFreeDelivery.payment.price.beforeDiscount %}
        {% endif %}
        {% if order.closestFreeDelivery.payment.price.discount %}
        {% endif %}
        {% if order.closestFreeDelivery.payment.code %}
                {{ order.closestFreeDelivery.payment.code }}
        {% endif %}
        {% if order.closestFreeDelivery.payment.vs %}
                {{ order.closestFreeDelivery.payment.vs }}
        {% endif %}
        {% if order.closestFreeDelivery.payment.qRCodeHTML %}
                {{ order.closestFreeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if order.closestFreeDelivery.payment.text %}
                {{ order.closestFreeDelivery.payment.text }}
        {% endif %}
        {% if order.closestFreeDelivery.payment.bankAccount %}
                {{ order.closestFreeDelivery.payment.bankAccount }}
                {{ order.closestFreeDelivery.payment.bankAccount.currency }}
                {% if order.closestFreeDelivery.payment.bankAccount.bic %}
                        {{ order.closestFreeDelivery.payment.bankAccount.bic }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.bankAccount.iban %}
                        {{ order.closestFreeDelivery.payment.bankAccount.iban }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.bankAccount.local %}
                        {{ order.closestFreeDelivery.payment.bankAccount.local }}
                {% endif %}
        {% endif %}
        {% if order.closestFreeDelivery.payment.image %}
                {{ order.closestFreeDelivery.payment.image.originalHeight }}
                {{ order.closestFreeDelivery.payment.image.originalWidth }}
                {{ order.closestFreeDelivery.payment.image.url }}
                {% if order.closestFreeDelivery.payment.image.alt %}
                        {{ order.closestFreeDelivery.payment.image.alt }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.image.text %}
                        {{ order.closestFreeDelivery.payment.image.text }}
                {% endif %}
        {% endif %}
        {{ order.closestFreeDelivery.transport.inputId }}
        {{ order.closestFreeDelivery.transport.name }}
        {{ order.closestFreeDelivery.transport.vatRate }}
        {% if order.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
        {% if order.closestFreeDelivery.transport.currier %} ... {% endif %}
        {% if order.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if order.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if order.closestFreeDelivery.transport.digital %} ... {% endif %}
        {% if order.closestFreeDelivery.transport.free %} ... {% endif %}
        {% if order.closestFreeDelivery.transport.pickup %} ... {% endif %}
        {% if order.closestFreeDelivery.transport.selected %} ... {% endif %}
        {{ order.closestFreeDelivery.transport.price.vatRate }}
        {% if order.closestFreeDelivery.transport.price.discountPercent %}
                {{ order.closestFreeDelivery.transport.price.discountPercent }}
        {% endif %}
        {% if order.closestFreeDelivery.transport.price.discountValidTo %}
                {{ order.closestFreeDelivery.transport.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.closestFreeDelivery.transport.price.beforeDiscount %}
        {% endif %}
        {% if order.closestFreeDelivery.transport.price.discount %}
        {% endif %}
        {% if order.closestFreeDelivery.transport.text %}
                {{ order.closestFreeDelivery.transport.text }}
        {% endif %}
        {% if order.closestFreeDelivery.transport.branch %}
                {{ order.closestFreeDelivery.transport.branch.code }}
                {{ order.closestFreeDelivery.transport.branch.name }}
        {% endif %}
        {% if order.closestFreeDelivery.transport.carrier %}
                {{ order.closestFreeDelivery.transport.carrier.code }}
                {{ order.closestFreeDelivery.transport.carrier.name }}
        {% endif %}
        {% if order.closestFreeDelivery.transport.deliveryDate %}
                {{ order.closestFreeDelivery.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ order.closestFreeDelivery.transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ order.closestFreeDelivery.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if order.closestFreeDelivery.transport.deliveryDate.timeDelivered %}
                        {{ order.closestFreeDelivery.transport.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if order.closestFreeDelivery.transport.packageType %}
                {{ order.closestFreeDelivery.transport.packageType.code }}
        {% endif %}
        {% if order.closestFreeDelivery.transport.image %}
                {{ order.closestFreeDelivery.transport.image.originalHeight }}
                {{ order.closestFreeDelivery.transport.image.originalWidth }}
                {{ order.closestFreeDelivery.transport.image.url }}
                {% if order.closestFreeDelivery.transport.image.alt %}
                        {{ order.closestFreeDelivery.transport.image.alt }}
                {% endif %}
                {% if order.closestFreeDelivery.transport.image.text %}
                        {{ order.closestFreeDelivery.transport.image.text }}
                {% endif %}
        {% endif %}
        {{ order.closestFreeDelivery.price.vatRate }}
        {{ order.closestFreeDelivery.price.current.currency }}
        {{ order.closestFreeDelivery.price.current.formatted }}
        {{ order.closestFreeDelivery.price.current.value }}
        {% if order.closestFreeDelivery.price.current.perUnit %}
        {% endif %}
        {% if order.closestFreeDelivery.price.discountPercent %}
                {{ order.closestFreeDelivery.price.discountPercent }}
        {% endif %}
        {% if order.closestFreeDelivery.price.discountValidTo %}
                {{ order.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.closestFreeDelivery.price.beforeDiscount %}
                {{ order.closestFreeDelivery.price.beforeDiscount.currency }}
                {{ order.closestFreeDelivery.price.beforeDiscount.formatted }}
                {{ order.closestFreeDelivery.price.beforeDiscount.value }}
                {% if order.closestFreeDelivery.price.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if order.closestFreeDelivery.price.discount %}
                {{ order.closestFreeDelivery.price.discount.currency }}
                {{ order.closestFreeDelivery.price.discount.formatted }}
                {{ order.closestFreeDelivery.price.discount.value }}
                {% if order.closestFreeDelivery.price.discount.perUnit %}
                {% endif %}
        {% endif %}
        {% if order.closestFreeDelivery.id %}
                {{ order.closestFreeDelivery.id }}
        {% endif %}
        {% if order.closestFreeDelivery.freeLimit %}
                {{ order.closestFreeDelivery.freeLimit.percent }}
                {{ order.closestFreeDelivery.freeLimit.total.currency }}
                {{ order.closestFreeDelivery.freeLimit.total.formatted }}
                {{ order.closestFreeDelivery.freeLimit.total.value }}
                {% if order.closestFreeDelivery.freeLimit.total.perUnit %}
                {% endif %}
                {{ order.closestFreeDelivery.freeLimit.remains.currency }}
                {{ order.closestFreeDelivery.freeLimit.remains.formatted }}
                {{ order.closestFreeDelivery.freeLimit.remains.value }}
                {% if order.closestFreeDelivery.freeLimit.remains.perUnit %}
                {% endif %}
        {% endif %}
{% endif %}

{% if order.parentOrder %}
        {{ order.parentOrder.amountOfItem }}
        {{ order.parentOrder.catalogItemCount }}
        {{ order.parentOrder.catalogItemTotalAmount }}
        {{ order.parentOrder.id }}
        {{ order.parentOrder.loyaltyPoints }}
        {{ order.parentOrder.usableLoyaltyPoints }}
        {{ order.parentOrder.language }}
        {{ order.parentOrder.vs }}
        {% if order.parentOrder.containsAnyOfLabels %} ... {% endif %}
        {% if order.parentOrder.containsItem %} ... {% endif %}
        {% if order.parentOrder.containsLabel %} ... {% endif %}
        {% if order.parentOrder.digitalPhysicalCombination %} ... {% endif %}
        {% if order.parentOrder.erotic %} ... {% endif %}
        {% if order.parentOrder.externalReviewAllowed %} ... {% endif %}
        {% if order.parentOrder.paid %} ... {% endif %}
        {% if order.parentOrder.useLoyaltyPoints %} ... {% endif %}
        {% if order.parentOrder.useLoyaltyPointsManually %} ... {% endif %}
        {% for accountingDocument in order.parentOrder.accountingDocuments %}
                {{ accountingDocument.code }}
                {{ accountingDocument.date|date('d. m. Y H:i') }}
                {{ accountingDocument.totalPrice.vatRate }}
                {% if accountingDocument.totalPrice.discountPercent %}
                        {{ accountingDocument.totalPrice.discountPercent }}
                {% endif %}
                {% if accountingDocument.totalPrice.discountValidTo %}
                        {{ accountingDocument.totalPrice.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if accountingDocument.totalPrice.beforeDiscount %}
                {% endif %}
                {% if accountingDocument.totalPrice.discount %}
                {% endif %}
                {{ accountingDocument.pdfUrl }}
                {{ accountingDocument.pdfUrl.absolute }}
                {{ accountingDocument.pdfUrl.path }}
        {% endfor %}
        {% if order.parentOrder.address.delivery.city %}
                {{ order.parentOrder.address.delivery.city }}
        {% endif %}
        {% if order.parentOrder.address.delivery.company %}
                {{ order.parentOrder.address.delivery.company }}
        {% endif %}
        {% if order.parentOrder.address.delivery.companyId %}
                {{ order.parentOrder.address.delivery.companyId }}
        {% endif %}
        {% if order.parentOrder.address.delivery.email %}
                {{ order.parentOrder.address.delivery.email }}
        {% endif %}
        {% if order.parentOrder.address.delivery.phone %}
                {{ order.parentOrder.address.delivery.phone }}
        {% endif %}
        {% if order.parentOrder.address.delivery.region %}
                {{ order.parentOrder.address.delivery.region }}
        {% endif %}
        {% if order.parentOrder.address.delivery.street %}
                {{ order.parentOrder.address.delivery.street }}
        {% endif %}
        {% if order.parentOrder.address.delivery.vatId %}
                {{ order.parentOrder.address.delivery.vatId }}
        {% endif %}
        {% if order.parentOrder.address.delivery.web %}
                {{ order.parentOrder.address.delivery.web }}
        {% endif %}
        {% if order.parentOrder.address.delivery.zip %}
                {{ order.parentOrder.address.delivery.zip }}
        {% endif %}
        {% if order.parentOrder.address.delivery.purpose %}
        {% endif %}
        {% if order.parentOrder.address.delivery.country %}
        {% endif %}
        {% if order.parentOrder.address.invoice.city %}
                {{ order.parentOrder.address.invoice.city }}
        {% endif %}
        {% if order.parentOrder.address.invoice.company %}
                {{ order.parentOrder.address.invoice.company }}
        {% endif %}
        {% if order.parentOrder.address.invoice.companyId %}
                {{ order.parentOrder.address.invoice.companyId }}
        {% endif %}
        {% if order.parentOrder.address.invoice.email %}
                {{ order.parentOrder.address.invoice.email }}
        {% endif %}
        {% if order.parentOrder.address.invoice.phone %}
                {{ order.parentOrder.address.invoice.phone }}
        {% endif %}
        {% if order.parentOrder.address.invoice.region %}
                {{ order.parentOrder.address.invoice.region }}
        {% endif %}
        {% if order.parentOrder.address.invoice.street %}
                {{ order.parentOrder.address.invoice.street }}
        {% endif %}
        {% if order.parentOrder.address.invoice.vatId %}
                {{ order.parentOrder.address.invoice.vatId }}
        {% endif %}
        {% if order.parentOrder.address.invoice.web %}
                {{ order.parentOrder.address.invoice.web }}
        {% endif %}
        {% if order.parentOrder.address.invoice.zip %}
                {{ order.parentOrder.address.invoice.zip }}
        {% endif %}
        {% if order.parentOrder.address.invoice.purpose %}
        {% endif %}
        {% if order.parentOrder.address.invoice.country %}
        {% endif %}
        {% for payment in order.parentOrder.availablePaymentMethods %}
                {{ payment.inputId }}
                {{ payment.name }}
                {{ payment.url }}
                {{ payment.vatRate }}
                {% if payment.free %} ... {% endif %}
                {% if payment.inAdvance %} ... {% endif %}
                {% if payment.selected %} ... {% endif %}
                {{ payment.price.vatRate }}
                {% if payment.price.discountPercent %}
                        {{ payment.price.discountPercent }}
                {% endif %}
                {% if payment.price.discountValidTo %}
                        {{ payment.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if payment.price.beforeDiscount %}
                {% endif %}
                {% if payment.price.discount %}
                {% endif %}
                {% if payment.code %}
                        {{ payment.code }}
                {% endif %}
                {% if payment.vs %}
                        {{ payment.vs }}
                {% endif %}
                {% if payment.qRCodeHTML %}
                        {{ payment.qRCodeHTML }}
                {% endif %}
                {% if payment.text %}
                        {{ payment.text }}
                {% endif %}
                {% if payment.bankAccount %}
                        {{ payment.bankAccount }}
                        {{ payment.bankAccount.currency }}
                        {% if payment.bankAccount.bic %}
                                {{ payment.bankAccount.bic }}
                        {% endif %}
                        {% if payment.bankAccount.iban %}
                                {{ payment.bankAccount.iban }}
                        {% endif %}
                        {% if payment.bankAccount.local %}
                                {{ payment.bankAccount.local }}
                        {% endif %}
                {% endif %}
                {% if payment.image %}
                        {{ payment.image.originalHeight }}
                        {{ payment.image.originalWidth }}
                        {{ payment.image.url }}
                        {% if payment.image.alt %}
                                {{ payment.image.alt }}
                        {% endif %}
                        {% if payment.image.text %}
                                {{ payment.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for payment in order.parentOrder.payments %}
                {{ payment.inputId }}
                {{ payment.name }}
                {{ payment.url }}
                {{ payment.vatRate }}
                {% if payment.free %} ... {% endif %}
                {% if payment.inAdvance %} ... {% endif %}
                {% if payment.selected %} ... {% endif %}
                {{ payment.price.vatRate }}
                {% if payment.price.discountPercent %}
                        {{ payment.price.discountPercent }}
                {% endif %}
                {% if payment.price.discountValidTo %}
                        {{ payment.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if payment.price.beforeDiscount %}
                {% endif %}
                {% if payment.price.discount %}
                {% endif %}
                {% if payment.code %}
                        {{ payment.code }}
                {% endif %}
                {% if payment.vs %}
                        {{ payment.vs }}
                {% endif %}
                {% if payment.qRCodeHTML %}
                        {{ payment.qRCodeHTML }}
                {% endif %}
                {% if payment.text %}
                        {{ payment.text }}
                {% endif %}
                {% if payment.bankAccount %}
                        {{ payment.bankAccount }}
                        {{ payment.bankAccount.currency }}
                        {% if payment.bankAccount.bic %}
                                {{ payment.bankAccount.bic }}
                        {% endif %}
                        {% if payment.bankAccount.iban %}
                                {{ payment.bankAccount.iban }}
                        {% endif %}
                        {% if payment.bankAccount.local %}
                                {{ payment.bankAccount.local }}
                        {% endif %}
                {% endif %}
                {% if payment.image %}
                        {{ payment.image.originalHeight }}
                        {{ payment.image.originalWidth }}
                        {{ payment.image.url }}
                        {% if payment.image.alt %}
                                {{ payment.image.alt }}
                        {% endif %}
                        {% if payment.image.text %}
                                {{ payment.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for transport in order.parentOrder.availableTransportMethods %}
                {{ transport.inputId }}
                {{ transport.name }}
                {{ transport.vatRate }}
                {% if transport.branchRequired %} ... {% endif %}
                {% if transport.currier %} ... {% endif %}
                {% if transport.dateGuaranteed %} ... {% endif %}
                {% if transport.deliveryToAddress %} ... {% endif %}
                {% if transport.digital %} ... {% endif %}
                {% if transport.free %} ... {% endif %}
                {% if transport.pickup %} ... {% endif %}
                {% if transport.selected %} ... {% endif %}
                {{ transport.price.vatRate }}
                {% if transport.price.discountPercent %}
                        {{ transport.price.discountPercent }}
                {% endif %}
                {% if transport.price.discountValidTo %}
                        {{ transport.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if transport.price.beforeDiscount %}
                {% endif %}
                {% if transport.price.discount %}
                {% endif %}
                {% if transport.text %}
                        {{ transport.text }}
                {% endif %}
                {% if transport.branch %}
                        {{ transport.branch.code }}
                        {{ transport.branch.name }}
                {% endif %}
                {% if transport.carrier %}
                        {{ transport.carrier.code }}
                        {{ transport.carrier.name }}
                {% endif %}
                {% if transport.deliveryDate %}
                        {{ transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                        {{ transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                        {{ transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                        {% if transport.deliveryDate.timeDelivered %}
                                {{ transport.deliveryDate.timeDelivered }}
                        {% endif %}
                {% endif %}
                {% if transport.packageType %}
                        {{ transport.packageType.code }}
                {% endif %}
                {% if transport.image %}
                        {{ transport.image.originalHeight }}
                        {{ transport.image.originalWidth }}
                        {{ transport.image.url }}
                        {% if transport.image.alt %}
                                {{ transport.image.alt }}
                        {% endif %}
                        {% if transport.image.text %}
                                {{ transport.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ order.parentOrder.delivery.name }}
        {{ order.parentOrder.delivery.vatRate }}
        {% if order.parentOrder.delivery.deliveryAddressRequired %} ... {% endif %}
        {{ order.parentOrder.delivery.payment.inputId }}
        {{ order.parentOrder.delivery.payment.name }}
        {{ order.parentOrder.delivery.payment.url }}
        {{ order.parentOrder.delivery.payment.vatRate }}
        {% if order.parentOrder.delivery.payment.free %} ... {% endif %}
        {% if order.parentOrder.delivery.payment.inAdvance %} ... {% endif %}
        {% if order.parentOrder.delivery.payment.selected %} ... {% endif %}
        {% if order.parentOrder.delivery.payment.code %}
                {{ order.parentOrder.delivery.payment.code }}
        {% endif %}
        {% if order.parentOrder.delivery.payment.vs %}
                {{ order.parentOrder.delivery.payment.vs }}
        {% endif %}
        {% if order.parentOrder.delivery.payment.qRCodeHTML %}
                {{ order.parentOrder.delivery.payment.qRCodeHTML }}
        {% endif %}
        {% if order.parentOrder.delivery.payment.text %}
                {{ order.parentOrder.delivery.payment.text }}
        {% endif %}
        {% if order.parentOrder.delivery.payment.bankAccount %}
        {% endif %}
        {% if order.parentOrder.delivery.payment.image %}
        {% endif %}
        {{ order.parentOrder.delivery.transport.inputId }}
        {{ order.parentOrder.delivery.transport.name }}
        {{ order.parentOrder.delivery.transport.vatRate }}
        {% if order.parentOrder.delivery.transport.branchRequired %} ... {% endif %}
        {% if order.parentOrder.delivery.transport.currier %} ... {% endif %}
        {% if order.parentOrder.delivery.transport.dateGuaranteed %} ... {% endif %}
        {% if order.parentOrder.delivery.transport.deliveryToAddress %} ... {% endif %}
        {% if order.parentOrder.delivery.transport.digital %} ... {% endif %}
        {% if order.parentOrder.delivery.transport.free %} ... {% endif %}
        {% if order.parentOrder.delivery.transport.pickup %} ... {% endif %}
        {% if order.parentOrder.delivery.transport.selected %} ... {% endif %}
        {% if order.parentOrder.delivery.transport.text %}
                {{ order.parentOrder.delivery.transport.text }}
        {% endif %}
        {% if order.parentOrder.delivery.transport.branch %}
        {% endif %}
        {% if order.parentOrder.delivery.transport.carrier %}
        {% endif %}
        {% if order.parentOrder.delivery.transport.deliveryDate %}
        {% endif %}
        {% if order.parentOrder.delivery.transport.packageType %}
        {% endif %}
        {% if order.parentOrder.delivery.transport.image %}
        {% endif %}
        {{ order.parentOrder.delivery.price.vatRate }}
        {% if order.parentOrder.delivery.price.discountPercent %}
                {{ order.parentOrder.delivery.price.discountPercent }}
        {% endif %}
        {% if order.parentOrder.delivery.price.discountValidTo %}
                {{ order.parentOrder.delivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.parentOrder.delivery.price.beforeDiscount %}
        {% endif %}
        {% if order.parentOrder.delivery.price.discount %}
        {% endif %}
        {% if order.parentOrder.delivery.id %}
                {{ order.parentOrder.delivery.id }}
        {% endif %}
        {% if order.parentOrder.delivery.freeLimit %}
                {{ order.parentOrder.delivery.freeLimit.percent }}
        {% endif %}
        {% for catalogItem in order.parentOrder.catalogItems %}
                {{ catalogItem.amount }}
                {{ catalogItem.id }}
                {{ catalogItem.name }}
                {{ catalogItem.productName }}
                {{ catalogItem.trackingId }}
                {{ catalogItem.vatRate }}
                {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                {% if catalogItem.catalogItem %} ... {% endif %}
                {% if catalogItem.deleteAllowed %} ... {% endif %}
                {% if catalogItem.discountItem %} ... {% endif %}
                {% if catalogItem.gift %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in catalogItem.children %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.availableConfigurators %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for orderItemError in catalogItem.errors %}
                        {{ orderItemError.recommendedAmount }}
                        {{ orderItemError.code }}
                        {{ orderItemError.itemName }}
                        {{ orderItemError.message }}
                {% endfor %}
                {{ catalogItem.price.vatRate }}
                {% if catalogItem.price.discountPercent %}
                        {{ catalogItem.price.discountPercent }}
                {% endif %}
                {% if catalogItem.price.discountValidTo %}
                        {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.price.discount %}
                {% endif %}
                {{ catalogItem.priceTotal.vatRate }}
                {% if catalogItem.priceTotal.discountPercent %}
                        {{ catalogItem.priceTotal.discountPercent }}
                {% endif %}
                {% if catalogItem.priceTotal.discountValidTo %}
                        {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.priceTotal.beforeDiscount %}
                {% endif %}
                {% if catalogItem.priceTotal.discount %}
                {% endif %}
                {% for productDesigner in catalogItem.availableConfigurators %}
                        {{ productDesigner.name }}
                        {% if productDesigner.result %}
                        {% endif %}
                {% endfor %}
                {% for upsell in catalogItem.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.trackingIds }}
                {% if catalogItem.code %}
                        {{ catalogItem.code }}
                {% endif %}
                {% if catalogItem.note %}
                        {{ catalogItem.note }}
                {% endif %}
                {% if catalogItem.variantName %}
                        {{ catalogItem.variantName }}
                {% endif %}
                {% if catalogItem.image %}
                        {{ catalogItem.image.originalHeight }}
                        {{ catalogItem.image.originalWidth }}
                        {{ catalogItem.image.url }}
                        {% if catalogItem.image.alt %}
                                {{ catalogItem.image.alt }}
                        {% endif %}
                        {% if catalogItem.image.text %}
                                {{ catalogItem.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item %}
                        {{ catalogItem.item.cartAmountRequiredMultiplier }}
                        {{ catalogItem.item.id }}
                        {{ catalogItem.item.loyaltyPointsAmount }}
                        {{ catalogItem.item.name }}
                        {{ catalogItem.item.trackingId }}
                        {% if catalogItem.item.digital %} ... {% endif %}
                        {% if catalogItem.item.sellable %} ... {% endif %}
                        {% if catalogItem.item.service %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.item.trackingIds }}
                        {{ catalogItem.item.storageLocations }}
                        {% if catalogItem.item.packageWeight %}
                                {{ catalogItem.item.packageWeight }}
                        {% endif %}
                        {% if catalogItem.item.code %}
                                {{ catalogItem.item.code }}
                        {% endif %}
                        {% if catalogItem.item.packageHeight %}
                                {{ catalogItem.item.packageHeight }}
                        {% endif %}
                        {% if catalogItem.item.packageLength %}
                                {{ catalogItem.item.packageLength }}
                        {% endif %}
                        {% if catalogItem.item.packageWidth %}
                                {{ catalogItem.item.packageWidth }}
                        {% endif %}
                        {% if catalogItem.item.bundle %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery %}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.packageDimensions %}
                        {% endif %}
                        {% if catalogItem.item.image %}
                        {% endif %}
                        {% if catalogItem.item.price %}
                        {% endif %}
                        {% if catalogItem.item.url %}
                        {% endif %}
                        {% if catalogItem.item.variant %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product %}
                        {{ catalogItem.product.id }}
                        {{ catalogItem.product.name }}
                        {{ catalogItem.product.trackingId }}
                        {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.active %} ... {% endif %}
                        {% if catalogItem.product.compared %} ... {% endif %}
                        {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.flagNew %} ... {% endif %}
                        {% if catalogItem.product.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.soldSeparately %} ... {% endif %}
                        {% for address in catalogItem.product.publicContacts %}
                        {% endfor %}
                        {% for attributeInstance in catalogItem.product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.labels %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.product.configurators %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.videos %}
                        {% endfor %}
                        {{ catalogItem.product.trackingIds }}
                        {% if catalogItem.product.currentSubName %}
                                {{ catalogItem.product.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.nameSuffix %}
                                {{ catalogItem.product.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.nameSupplier %}
                                {{ catalogItem.product.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.text %}
                                {{ catalogItem.product.text }}
                        {% endif %}
                        {% if catalogItem.product.attribute %}
                        {% endif %}
                        {% if catalogItem.product.brand %}
                        {% endif %}
                        {% if catalogItem.product.image %}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.successor %}
                        {% endif %}
                        {% if catalogItem.product.seo %}
                        {% endif %}
                        {% if catalogItem.product.supplier %}
                        {% endif %}
                        {% if catalogItem.product.unit %}
                        {% endif %}
                        {% if catalogItem.product.variant %}
                        {% endif %}
                        {% if catalogItem.product.warranty %}
                        {% endif %}
                        {% if catalogItem.product.contentGrid %}
                                {{ catalogItem.product.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.unit %}
                        {{ catalogItem.unit.name }}
                {% endif %}
                {% if catalogItem.upsell %}
                        {{ catalogItem.upsell.id }}
                        {{ catalogItem.upsell.name }}
                        {% if catalogItem.upsell.inCart %} ... {% endif %}
                        {% if catalogItem.upsell.code %}
                                {{ catalogItem.upsell.code }}
                        {% endif %}
                        {% if catalogItem.upsell.vatRate %}
                                {{ catalogItem.upsell.vatRate }}
                        {% endif %}
                        {% if catalogItem.upsell.image %}
                        {% endif %}
                        {% if catalogItem.upsell.unit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.variant %}
                        {{ catalogItem.variant.id }}
                        {{ catalogItem.variant.name }}
                        {{ catalogItem.variant.trackingId }}
                        {% if catalogItem.variant.active %} ... {% endif %}
                        {% if catalogItem.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.variant.legacyRel %}
                                {{ catalogItem.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.variant.image %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for catalogItem in order.parentOrder.items %}
                {{ catalogItem.amount }}
                {{ catalogItem.id }}
                {{ catalogItem.name }}
                {{ catalogItem.productName }}
                {{ catalogItem.trackingId }}
                {{ catalogItem.vatRate }}
                {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                {% if catalogItem.catalogItem %} ... {% endif %}
                {% if catalogItem.deleteAllowed %} ... {% endif %}
                {% if catalogItem.discountItem %} ... {% endif %}
                {% if catalogItem.gift %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in catalogItem.children %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.availableConfigurators %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for orderItemError in catalogItem.errors %}
                        {{ orderItemError.recommendedAmount }}
                        {{ orderItemError.code }}
                        {{ orderItemError.itemName }}
                        {{ orderItemError.message }}
                {% endfor %}
                {{ catalogItem.price.vatRate }}
                {% if catalogItem.price.discountPercent %}
                        {{ catalogItem.price.discountPercent }}
                {% endif %}
                {% if catalogItem.price.discountValidTo %}
                        {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.price.discount %}
                {% endif %}
                {{ catalogItem.priceTotal.vatRate }}
                {% if catalogItem.priceTotal.discountPercent %}
                        {{ catalogItem.priceTotal.discountPercent }}
                {% endif %}
                {% if catalogItem.priceTotal.discountValidTo %}
                        {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.priceTotal.beforeDiscount %}
                {% endif %}
                {% if catalogItem.priceTotal.discount %}
                {% endif %}
                {% for productDesigner in catalogItem.availableConfigurators %}
                        {{ productDesigner.name }}
                        {% if productDesigner.result %}
                        {% endif %}
                {% endfor %}
                {% for upsell in catalogItem.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.trackingIds }}
                {% if catalogItem.code %}
                        {{ catalogItem.code }}
                {% endif %}
                {% if catalogItem.note %}
                        {{ catalogItem.note }}
                {% endif %}
                {% if catalogItem.variantName %}
                        {{ catalogItem.variantName }}
                {% endif %}
                {% if catalogItem.image %}
                        {{ catalogItem.image.originalHeight }}
                        {{ catalogItem.image.originalWidth }}
                        {{ catalogItem.image.url }}
                        {% if catalogItem.image.alt %}
                                {{ catalogItem.image.alt }}
                        {% endif %}
                        {% if catalogItem.image.text %}
                                {{ catalogItem.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item %}
                        {{ catalogItem.item.cartAmountRequiredMultiplier }}
                        {{ catalogItem.item.id }}
                        {{ catalogItem.item.loyaltyPointsAmount }}
                        {{ catalogItem.item.name }}
                        {{ catalogItem.item.trackingId }}
                        {% if catalogItem.item.digital %} ... {% endif %}
                        {% if catalogItem.item.sellable %} ... {% endif %}
                        {% if catalogItem.item.service %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.item.trackingIds }}
                        {{ catalogItem.item.storageLocations }}
                        {% if catalogItem.item.packageWeight %}
                                {{ catalogItem.item.packageWeight }}
                        {% endif %}
                        {% if catalogItem.item.code %}
                                {{ catalogItem.item.code }}
                        {% endif %}
                        {% if catalogItem.item.packageHeight %}
                                {{ catalogItem.item.packageHeight }}
                        {% endif %}
                        {% if catalogItem.item.packageLength %}
                                {{ catalogItem.item.packageLength }}
                        {% endif %}
                        {% if catalogItem.item.packageWidth %}
                                {{ catalogItem.item.packageWidth }}
                        {% endif %}
                        {% if catalogItem.item.bundle %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery %}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.packageDimensions %}
                        {% endif %}
                        {% if catalogItem.item.image %}
                        {% endif %}
                        {% if catalogItem.item.price %}
                        {% endif %}
                        {% if catalogItem.item.url %}
                        {% endif %}
                        {% if catalogItem.item.variant %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product %}
                        {{ catalogItem.product.id }}
                        {{ catalogItem.product.name }}
                        {{ catalogItem.product.trackingId }}
                        {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.active %} ... {% endif %}
                        {% if catalogItem.product.compared %} ... {% endif %}
                        {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.flagNew %} ... {% endif %}
                        {% if catalogItem.product.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.soldSeparately %} ... {% endif %}
                        {% for address in catalogItem.product.publicContacts %}
                        {% endfor %}
                        {% for attributeInstance in catalogItem.product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.labels %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.product.configurators %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.videos %}
                        {% endfor %}
                        {{ catalogItem.product.trackingIds }}
                        {% if catalogItem.product.currentSubName %}
                                {{ catalogItem.product.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.nameSuffix %}
                                {{ catalogItem.product.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.nameSupplier %}
                                {{ catalogItem.product.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.text %}
                                {{ catalogItem.product.text }}
                        {% endif %}
                        {% if catalogItem.product.attribute %}
                        {% endif %}
                        {% if catalogItem.product.brand %}
                        {% endif %}
                        {% if catalogItem.product.image %}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.successor %}
                        {% endif %}
                        {% if catalogItem.product.seo %}
                        {% endif %}
                        {% if catalogItem.product.supplier %}
                        {% endif %}
                        {% if catalogItem.product.unit %}
                        {% endif %}
                        {% if catalogItem.product.variant %}
                        {% endif %}
                        {% if catalogItem.product.warranty %}
                        {% endif %}
                        {% if catalogItem.product.contentGrid %}
                                {{ catalogItem.product.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.unit %}
                        {{ catalogItem.unit.name }}
                {% endif %}
                {% if catalogItem.upsell %}
                        {{ catalogItem.upsell.id }}
                        {{ catalogItem.upsell.name }}
                        {% if catalogItem.upsell.inCart %} ... {% endif %}
                        {% if catalogItem.upsell.code %}
                                {{ catalogItem.upsell.code }}
                        {% endif %}
                        {% if catalogItem.upsell.vatRate %}
                                {{ catalogItem.upsell.vatRate }}
                        {% endif %}
                        {% if catalogItem.upsell.image %}
                        {% endif %}
                        {% if catalogItem.upsell.unit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.variant %}
                        {{ catalogItem.variant.id }}
                        {{ catalogItem.variant.name }}
                        {{ catalogItem.variant.trackingId }}
                        {% if catalogItem.variant.active %} ... {% endif %}
                        {% if catalogItem.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.variant.legacyRel %}
                                {{ catalogItem.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.variant.image %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for discountItem in order.parentOrder.discountItems %}
                {{ discountItem.amount }}
                {{ discountItem.id }}
                {{ discountItem.name }}
                {{ discountItem.vatRate }}
                {% if discountItem.amountChangeAllowed %} ... {% endif %}
                {% if discountItem.catalogItem %} ... {% endif %}
                {% if discountItem.deleteAllowed %} ... {% endif %}
                {% if discountItem.discountItem %} ... {% endif %}
                {% for discountItem in discountItem.children %}
                        {{ discountItem.amount }}
                        {{ discountItem.id }}
                        {{ discountItem.name }}
                        {{ discountItem.vatRate }}
                        {% if discountItem.amountChangeAllowed %} ... {% endif %}
                        {% if discountItem.catalogItem %} ... {% endif %}
                        {% if discountItem.deleteAllowed %} ... {% endif %}
                        {% if discountItem.discountItem %} ... {% endif %}
                        {% if discountItem.note %}
                                {{ discountItem.note }}
                        {% endif %}
                        {% if discountItem.trackingId %}
                                {{ discountItem.trackingId }}
                        {% endif %}
                        {% if discountItem.percent %}
                                {{ discountItem.percent }}
                        {% endif %}
                        {% if discountItem.discountCode %}
                        {% endif %}
                        {% if discountItem.voucher %}
                        {% endif %}
                        {% if discountItem.price %}
                        {% endif %}
                        {% if discountItem.priceTotal %}
                        {% endif %}
                        {% if discountItem.unit %}
                        {% endif %}
                {% endfor %}
                {% if discountItem.note %}
                        {{ discountItem.note }}
                {% endif %}
                {% if discountItem.trackingId %}
                        {{ discountItem.trackingId }}
                {% endif %}
                {% if discountItem.percent %}
                        {{ discountItem.percent }}
                {% endif %}
                {% if discountItem.discountCode %}
                        {{ discountItem.discountCode.code }}
                        {{ discountItem.discountCode.name }}
                        {{ discountItem.discountCode.validFrom|date('d. m. Y H:i') }}
                        {{ discountItem.discountCode.validTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if discountItem.voucher %}
                        {{ discountItem.voucher.code }}
                        {{ discountItem.voucher.validTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if discountItem.price %}
                        {{ discountItem.price.vatRate }}
                        {% if discountItem.price.discountPercent %}
                                {{ discountItem.price.discountPercent }}
                        {% endif %}
                        {% if discountItem.price.discountValidTo %}
                                {{ discountItem.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if discountItem.price.beforeDiscount %}
                        {% endif %}
                        {% if discountItem.price.discount %}
                        {% endif %}
                {% endif %}
                {% if discountItem.priceTotal %}
                        {{ discountItem.priceTotal.vatRate }}
                        {% if discountItem.priceTotal.discountPercent %}
                                {{ discountItem.priceTotal.discountPercent }}
                        {% endif %}
                        {% if discountItem.priceTotal.discountValidTo %}
                                {{ discountItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if discountItem.priceTotal.beforeDiscount %}
                        {% endif %}
                        {% if discountItem.priceTotal.discount %}
                        {% endif %}
                {% endif %}
                {% if discountItem.unit %}
                        {{ discountItem.unit.name }}
                {% endif %}
        {% endfor %}
        {{ order.parentOrder.price.total.currency }}
        {{ order.parentOrder.price.total.formatted }}
        {{ order.parentOrder.price.total.value }}
        {% if order.parentOrder.price.total.perUnit %}
        {% endif %}
        {{ order.parentOrder.price.unpaid.currency }}
        {{ order.parentOrder.price.unpaid.formatted }}
        {{ order.parentOrder.price.unpaid.value }}
        {% if order.parentOrder.price.unpaid.perUnit %}
        {% endif %}
        {{ order.parentOrder.price.paid.currency }}
        {{ order.parentOrder.price.paid.formatted }}
        {{ order.parentOrder.price.paid.value }}
        {% if order.parentOrder.price.paid.perUnit %}
        {% endif %}
        {{ order.parentOrder.status.id }}
        {{ order.parentOrder.status.name }}
        {% for socialProfile in order.parentOrder.shop.socialProfiles %}
                {{ socialProfile.type }}
                {{ socialProfile.url }}
        {% endfor %}
        {% if order.parentOrder.shop.email %}
                {{ order.parentOrder.shop.email }}
        {% endif %}
        {% if order.parentOrder.shop.language %}
                {{ order.parentOrder.shop.language }}
        {% endif %}
        {% if order.parentOrder.shop.name %}
                {{ order.parentOrder.shop.name }}
        {% endif %}
        {% if order.parentOrder.shop.phone %}
                {{ order.parentOrder.shop.phone }}
        {% endif %}
        {% if order.parentOrder.shop.shortDomain %}
                {{ order.parentOrder.shop.shortDomain }}
        {% endif %}
        {% if order.parentOrder.shop.url %}
                {{ order.parentOrder.shop.url }}
        {% endif %}
        {% if order.parentOrder.shop.country %}
                {{ order.parentOrder.shop.country.code }}
                {{ order.parentOrder.shop.country.flagCircleUrl }}
                {{ order.parentOrder.shop.country.flagUrl }}
                {{ order.parentOrder.shop.country.name }}
                {% if order.parentOrder.shop.country.eU %} ... {% endif %}
        {% endif %}
        {% if order.parentOrder.shop.image %}
                {{ order.parentOrder.shop.image.originalHeight }}
                {{ order.parentOrder.shop.image.originalWidth }}
                {{ order.parentOrder.shop.image.url }}
                {% if order.parentOrder.shop.image.alt %}
                        {{ order.parentOrder.shop.image.alt }}
                {% endif %}
                {% if order.parentOrder.shop.image.text %}
                        {{ order.parentOrder.shop.image.text }}
                {% endif %}
        {% endif %}
        {{ order.parentOrder.url }}
        {{ order.parentOrder.url.absolute }}
        {{ order.parentOrder.url.path }}
        {% for giftVoucher in order.parentOrder.purchasedGiftVouchers %}
                {{ giftVoucher.code }}
                {{ giftVoucher.name }}
                {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {{ giftVoucher.value.currency }}
                {{ giftVoucher.value.formatted }}
                {% if giftVoucher.value.perUnit %}
                {% endif %}
        {% endfor %}
        {% for giftVoucher in order.parentOrder.vouchers %}
                {{ giftVoucher.code }}
                {{ giftVoucher.name }}
                {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {{ giftVoucher.value.currency }}
                {{ giftVoucher.value.formatted }}
                {% if giftVoucher.value.perUnit %}
                {% endif %}
        {% endfor %}
        {% if order.parentOrder.code %}
                {{ order.parentOrder.code }}
        {% endif %}
        {% if order.parentOrder.note %}
                {{ order.parentOrder.note }}
        {% endif %}
        {% if order.parentOrder.date %}
                {{ order.parentOrder.date|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.parentOrder.dateInStatus %}
                {{ order.parentOrder.dateInStatus|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.parentOrder.expectedShippingDate %}
                {{ order.parentOrder.expectedShippingDate|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.parentOrder.customer %}
                {{ order.parentOrder.customer.id }}
                {{ order.parentOrder.customer.userPointsAvailable }}
                {{ order.parentOrder.customer.userPointsExpiringOn }}
                {{ order.parentOrder.customer.userPointsTotal }}
                {{ order.parentOrder.customer.name }}
                {{ order.parentOrder.customer.dateCreated|date('d. m. Y H:i') }}
                {% if order.parentOrder.customer.productOnWishlist %} ... {% endif %}
                {% if order.parentOrder.customer.vatCharged %} ... {% endif %}
                {% if order.parentOrder.customer.wholesale %} ... {% endif %}
                {% for accountingDocument in order.parentOrder.customer.receipts %}
                        {{ accountingDocument.code }}
                        {{ accountingDocument.date|date('d. m. Y H:i') }}
                {% endfor %}
                {% for analyticsReport in order.parentOrder.customer.analyticReports %}
                        {{ analyticsReport.name }}
                {% endfor %}
                {% for order in order.parentOrder.customer.orders %}
                        {{ order.amountOfItem }}
                        {{ order.catalogItemCount }}
                        {{ order.catalogItemTotalAmount }}
                        {{ order.id }}
                        {{ order.loyaltyPoints }}
                        {{ order.usableLoyaltyPoints }}
                        {{ order.language }}
                        {{ order.vs }}
                        {% if order.containsAnyOfLabels %} ... {% endif %}
                        {% if order.containsItem %} ... {% endif %}
                        {% if order.containsLabel %} ... {% endif %}
                        {% if order.digitalPhysicalCombination %} ... {% endif %}
                        {% if order.erotic %} ... {% endif %}
                        {% if order.externalReviewAllowed %} ... {% endif %}
                        {% if order.paid %} ... {% endif %}
                        {% if order.useLoyaltyPoints %} ... {% endif %}
                        {% if order.useLoyaltyPointsManually %} ... {% endif %}
                        {% for accountingDocument in order.accountingDocuments %}
                        {% endfor %}
                        {% for payment in order.availablePaymentMethods %}
                        {% endfor %}
                        {% for payment in order.payments %}
                        {% endfor %}
                        {% for transport in order.availableTransportMethods %}
                        {% endfor %}
                        {% for catalogItem in order.catalogItems %}
                        {% endfor %}
                        {% for catalogItem in order.items %}
                        {% endfor %}
                        {% for discountItem in order.discountItems %}
                        {% endfor %}
                        {% for giftVoucher in order.purchasedGiftVouchers %}
                        {% endfor %}
                        {% for giftVoucher in order.vouchers %}
                        {% endfor %}
                        {% if order.code %}
                                {{ order.code }}
                        {% endif %}
                        {% if order.note %}
                                {{ order.note }}
                        {% endif %}
                        {% if order.date %}
                                {{ order.date|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.dateInStatus %}
                                {{ order.dateInStatus|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.expectedShippingDate %}
                                {{ order.expectedShippingDate|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.closestFreeDelivery %}
                        {% endif %}
                        {% if order.package %}
                        {% endif %}
                {% endfor %}
                {% for order in order.parentOrder.customer.childOrders %}
                        {{ order.amountOfItem }}
                        {{ order.catalogItemCount }}
                        {{ order.catalogItemTotalAmount }}
                        {{ order.id }}
                        {{ order.loyaltyPoints }}
                        {{ order.usableLoyaltyPoints }}
                        {{ order.language }}
                        {{ order.vs }}
                        {% if order.containsAnyOfLabels %} ... {% endif %}
                        {% if order.containsItem %} ... {% endif %}
                        {% if order.containsLabel %} ... {% endif %}
                        {% if order.digitalPhysicalCombination %} ... {% endif %}
                        {% if order.erotic %} ... {% endif %}
                        {% if order.externalReviewAllowed %} ... {% endif %}
                        {% if order.paid %} ... {% endif %}
                        {% if order.useLoyaltyPoints %} ... {% endif %}
                        {% if order.useLoyaltyPointsManually %} ... {% endif %}
                        {% for accountingDocument in order.accountingDocuments %}
                        {% endfor %}
                        {% for payment in order.availablePaymentMethods %}
                        {% endfor %}
                        {% for payment in order.payments %}
                        {% endfor %}
                        {% for transport in order.availableTransportMethods %}
                        {% endfor %}
                        {% for catalogItem in order.catalogItems %}
                        {% endfor %}
                        {% for catalogItem in order.items %}
                        {% endfor %}
                        {% for discountItem in order.discountItems %}
                        {% endfor %}
                        {% for giftVoucher in order.purchasedGiftVouchers %}
                        {% endfor %}
                        {% for giftVoucher in order.vouchers %}
                        {% endfor %}
                        {% if order.code %}
                                {{ order.code }}
                        {% endif %}
                        {% if order.note %}
                                {{ order.note }}
                        {% endif %}
                        {% if order.date %}
                                {{ order.date|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.dateInStatus %}
                                {{ order.dateInStatus|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.expectedShippingDate %}
                                {{ order.expectedShippingDate|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.closestFreeDelivery %}
                        {% endif %}
                        {% if order.package %}
                        {% endif %}
                {% endfor %}
                {% for userPointChange in order.parentOrder.customer.userPointChanges %}
                        {{ userPointChange.amount }}
                        {{ userPointChange.text }}
                        {{ userPointChange.date|date('d. m. Y H:i') }}
                        {% if userPointChange.dateExpire %}
                                {{ userPointChange.dateExpire|date('d. m. Y H:i') }}
                        {% endif %}
                {% endfor %}
                {{ order.parentOrder.customer.alternativeAddresses }}
                {% if order.parentOrder.customer.loyaltyCard %}
                        {{ order.parentOrder.customer.loyaltyCard }}
                {% endif %}
                {% if order.parentOrder.customer.socialLoginId %}
                        {{ order.parentOrder.customer.socialLoginId }}
                {% endif %}
        {% endif %}
        {% if order.parentOrder.closestFreeDelivery %}
                {{ order.parentOrder.closestFreeDelivery.name }}
                {{ order.parentOrder.closestFreeDelivery.vatRate }}
                {% if order.parentOrder.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
                {{ order.parentOrder.closestFreeDelivery.payment.inputId }}
                {{ order.parentOrder.closestFreeDelivery.payment.name }}
                {{ order.parentOrder.closestFreeDelivery.payment.url }}
                {{ order.parentOrder.closestFreeDelivery.payment.vatRate }}
                {% if order.parentOrder.closestFreeDelivery.payment.free %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.payment.selected %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.payment.code %}
                        {{ order.parentOrder.closestFreeDelivery.payment.code }}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.payment.vs %}
                        {{ order.parentOrder.closestFreeDelivery.payment.vs }}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.payment.qRCodeHTML %}
                        {{ order.parentOrder.closestFreeDelivery.payment.qRCodeHTML }}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.payment.text %}
                        {{ order.parentOrder.closestFreeDelivery.payment.text }}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.payment.bankAccount %}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.payment.image %}
                {% endif %}
                {{ order.parentOrder.closestFreeDelivery.transport.inputId }}
                {{ order.parentOrder.closestFreeDelivery.transport.name }}
                {{ order.parentOrder.closestFreeDelivery.transport.vatRate }}
                {% if order.parentOrder.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.currier %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.digital %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.free %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.pickup %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.selected %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.text %}
                        {{ order.parentOrder.closestFreeDelivery.transport.text }}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.branch %}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.carrier %}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.deliveryDate %}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.packageType %}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.image %}
                {% endif %}
                {{ order.parentOrder.closestFreeDelivery.price.vatRate }}
                {% if order.parentOrder.closestFreeDelivery.price.discountPercent %}
                        {{ order.parentOrder.closestFreeDelivery.price.discountPercent }}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.price.discountValidTo %}
                        {{ order.parentOrder.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.price.beforeDiscount %}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.price.discount %}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.id %}
                        {{ order.parentOrder.closestFreeDelivery.id }}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.freeLimit %}
                        {{ order.parentOrder.closestFreeDelivery.freeLimit.percent }}
                {% endif %}
        {% endif %}
        {% if order.parentOrder.package %}
                {{ order.parentOrder.package.trackingUrl }}
                {{ order.parentOrder.package.date|date('d. m. Y H:i') }}
                {% if order.parentOrder.package.status.delivered %} ... {% endif %}
                {% if order.parentOrder.package.status.deposited %} ... {% endif %}
                {% if order.parentOrder.package.status.inTransit %} ... {% endif %}
                {% if order.parentOrder.package.status.returned %} ... {% endif %}
                {% if order.parentOrder.package.code %}
                        {{ order.parentOrder.package.code }}
                {% endif %}
        {% endif %}
{% endif %}

{% if order.package %}
        {{ order.package.trackingUrl }}
        {{ order.package.date|date('d. m. Y H:i') }}
        {% if order.package.status.delivered %} ... {% endif %}
        {% if order.package.status.deposited %} ... {% endif %}
        {% if order.package.status.inTransit %} ... {% endif %}
        {% if order.package.status.returned %} ... {% endif %}
        {% if order.package.code %}
                {{ order.package.code }}
        {% endif %}
{% endif %}

Order/DiscountCode

Attributy objektu Order/DiscountCode

Název

Typ

Popis

code

string

Kód

name

string

Název slevového kódu

validFrom

datetime

Datum začátku platnost

validTo

datetime

Datum konce platnosti

Příklady:

{{ discountcode.code }}
{{ discountcode.name }}
{{ discountcode.validFrom|date('d. m. Y H:i') }}
{{ discountcode.validTo|date('d. m. Y H:i') }}

Order/FreeLimit

Attributy objektu Order/FreeLimit

Název

Typ

Popis

percent

int

Kolik procent je dosaženo z celku

total

PriceValue

Hodnota objednávky dosažení

remains

PriceValue

Kolik zbývá do dosažení dopravy zdarma

Příklady:

{{ freelimit.percent }}
{{ freelimit.total.currency }}
{{ freelimit.total.formatted }}
{{ freelimit.total.value }}
{% if freelimit.total.perUnit %}
        {{ freelimit.total.perUnit }}
        {{ freelimit.total.perUnit.formatted }}
        {{ freelimit.total.perUnit.unit }}
        {{ freelimit.total.perUnit.price.currency }}
        {{ freelimit.total.perUnit.price.formatted }}
        {{ freelimit.total.perUnit.price.value }}
{% endif %}
{{ freelimit.remains.currency }}
{{ freelimit.remains.formatted }}
{{ freelimit.remains.value }}
{% if freelimit.remains.perUnit %}
        {{ freelimit.remains.perUnit }}
        {{ freelimit.remains.perUnit.formatted }}
        {{ freelimit.remains.perUnit.unit }}
        {{ freelimit.remains.perUnit.price.currency }}
        {{ freelimit.remains.perUnit.price.formatted }}
        {{ freelimit.remains.perUnit.price.value }}
{% endif %}

Order/Item/CatalogItem

Attributy objektu Order/Item/CatalogItem

Název

Typ

Popis

amount

int

Množství

id

int

Id

name

string

Název položky

productName

string

Název produktu

trackingId

string

ID používané ve feedech a měřících skriptech

vatRate

float

Sazba DPH (%)

amountChangeAllowed

bool

Je povolena změna množství?

catalogItem

bool

Je položkou katalogu?

deleteAllowed

bool

Je povoleno odebrání z objednávky?

discountItem

bool

Je položka slevou?

gift

bool

Je položka dárkem?

availableUpsellGroups

AvailableUpsellGroup[]

Dostupné skupiny upsellu

availableConfiguratorUpsellGroups

AvailableUpsellGroup[]

Dostupné skupiny upsellu pro úpravy na míru

children

Order/Item/CatalogItem[] | Order/Item/DiscountItem[]

Podřazené položky (například díly kompletu)

errors

Order/Item/OrderItemError[]

Chyby položky (nedostupné kusy apod)

price

Price

Cena za kus

priceTotal

Price

Cena celkem

availableConfigurators

ProductDesigner/ProductDesigner[]

Dostupné konfigurátory pro úpravy na míru

availableUpsells

Upsell[]

Dostupné položky pro upsell

trackingIds

array

ID používané ve feedech a měřících skriptech (varianta a produkt

code

string | null

Kód položky

note

string | null

Poznámka

variantName

string | null

Název varianty

image

Image | null

Obrázek položky

item

Item | null

Položka

product

Product | null

Produkt

unit

Unit | null

Množstevní jednotka

upsell

Upsell | null

Je položka upsellem?

variant

Variant | null

Varianta

Příklady:

{{ catalogitem.amount }}
{{ catalogitem.id }}
{{ catalogitem.name }}
{{ catalogitem.productName }}
{{ catalogitem.trackingId }}
{{ catalogitem.vatRate }}
{% if catalogitem.amountChangeAllowed %} ... {% endif %}
{% if catalogitem.catalogItem %} ... {% endif %}
{% if catalogitem.deleteAllowed %} ... {% endif %}
{% if catalogitem.discountItem %} ... {% endif %}
{% if catalogitem.gift %} ... {% endif %}

{% for availableUpsellGroup in catalogitem.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathNames }}
                {{ upsell.category.pathIds }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for address in upsell.product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productDesigner in upsell.product.configurators %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in upsell.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}

{% for availableUpsellGroup in catalogitem.availableConfiguratorUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathNames }}
                {{ upsell.category.pathIds }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for address in upsell.product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productDesigner in upsell.product.configurators %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in upsell.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}

{% for catalogItem in catalogitem.children %}
        {{ catalogItem.amount }}
        {{ catalogItem.id }}
        {{ catalogItem.name }}
        {{ catalogItem.productName }}
        {{ catalogItem.trackingId }}
        {{ catalogItem.vatRate }}
        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
        {% if catalogItem.catalogItem %} ... {% endif %}
        {% if catalogItem.deleteAllowed %} ... {% endif %}
        {% if catalogItem.discountItem %} ... {% endif %}
        {% if catalogItem.gift %} ... {% endif %}
        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in catalogItem.availableConfiguratorUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for orderItemError in catalogItem.errors %}
                {{ orderItemError.recommendedAmount }}
                {{ orderItemError.code }}
                {{ orderItemError.itemName }}
                {{ orderItemError.message }}
        {% endfor %}
        {{ catalogItem.price.vatRate }}
        {{ catalogItem.price.current.currency }}
        {{ catalogItem.price.current.formatted }}
        {{ catalogItem.price.current.value }}
        {% if catalogItem.price.current.perUnit %}
        {% endif %}
        {% if catalogItem.price.discountPercent %}
                {{ catalogItem.price.discountPercent }}
        {% endif %}
        {% if catalogItem.price.discountValidTo %}
                {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogItem.price.beforeDiscount %}
                {{ catalogItem.price.beforeDiscount.currency }}
                {{ catalogItem.price.beforeDiscount.formatted }}
                {{ catalogItem.price.beforeDiscount.value }}
                {% if catalogItem.price.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if catalogItem.price.discount %}
                {{ catalogItem.price.discount.currency }}
                {{ catalogItem.price.discount.formatted }}
                {{ catalogItem.price.discount.value }}
                {% if catalogItem.price.discount.perUnit %}
                {% endif %}
        {% endif %}
        {{ catalogItem.priceTotal.vatRate }}
        {{ catalogItem.priceTotal.current.currency }}
        {{ catalogItem.priceTotal.current.formatted }}
        {{ catalogItem.priceTotal.current.value }}
        {% if catalogItem.priceTotal.current.perUnit %}
        {% endif %}
        {% if catalogItem.priceTotal.discountPercent %}
                {{ catalogItem.priceTotal.discountPercent }}
        {% endif %}
        {% if catalogItem.priceTotal.discountValidTo %}
                {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogItem.priceTotal.beforeDiscount %}
                {{ catalogItem.priceTotal.beforeDiscount.currency }}
                {{ catalogItem.priceTotal.beforeDiscount.formatted }}
                {{ catalogItem.priceTotal.beforeDiscount.value }}
                {% if catalogItem.priceTotal.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if catalogItem.priceTotal.discount %}
                {{ catalogItem.priceTotal.discount.currency }}
                {{ catalogItem.priceTotal.discount.formatted }}
                {{ catalogItem.priceTotal.discount.value }}
                {% if catalogItem.priceTotal.discount.perUnit %}
                {% endif %}
        {% endif %}
        {% for productDesigner in catalogItem.availableConfigurators %}
                {{ productDesigner.name }}
                {{ productDesigner.upsell.id }}
                {{ productDesigner.upsell.name }}
                {% if productDesigner.upsell.inCart %} ... {% endif %}
                {% if productDesigner.upsell.code %}
                        {{ productDesigner.upsell.code }}
                {% endif %}
                {% if productDesigner.upsell.vatRate %}
                        {{ productDesigner.upsell.vatRate }}
                {% endif %}
                {% if productDesigner.upsell.image %}
                {% endif %}
                {% if productDesigner.upsell.unit %}
                {% endif %}
                {% if productDesigner.result %}
                        {{ productDesigner.result.imageUrl }}
                        {{ productDesigner.result.uuid }}
                        {% for productDesignerResultPart in productDesigner.result.parts %}
                        {% endfor %}
                {% endif %}
        {% endfor %}
        {% for upsell in catalogItem.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathNames }}
                {{ upsell.category.pathIds }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for address in upsell.product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productDesigner in upsell.product.configurators %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ catalogItem.trackingIds }}
        {% if catalogItem.code %}
                {{ catalogItem.code }}
        {% endif %}
        {% if catalogItem.note %}
                {{ catalogItem.note }}
        {% endif %}
        {% if catalogItem.variantName %}
                {{ catalogItem.variantName }}
        {% endif %}
        {% if catalogItem.image %}
                {{ catalogItem.image.originalHeight }}
                {{ catalogItem.image.originalWidth }}
                {{ catalogItem.image.url }}
                {% if catalogItem.image.alt %}
                        {{ catalogItem.image.alt }}
                {% endif %}
                {% if catalogItem.image.text %}
                        {{ catalogItem.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogItem.item %}
                {{ catalogItem.item.cartAmountRequiredMultiplier }}
                {{ catalogItem.item.id }}
                {{ catalogItem.item.loyaltyPointsAmount }}
                {{ catalogItem.item.name }}
                {{ catalogItem.item.trackingId }}
                {% if catalogItem.item.digital %} ... {% endif %}
                {% if catalogItem.item.sellable %} ... {% endif %}
                {% if catalogItem.item.service %} ... {% endif %}
                {{ catalogItem.item.availability.availableAmount }}
                {{ catalogItem.item.availability.availableAmountExpectedToStorageRoom }}
                {{ catalogItem.item.availability.availableAmountInShowroom }}
                {{ catalogItem.item.availability.availableAmountInStockroom }}
                {{ catalogItem.item.availability.availableAmountInStorageCenter }}
                {{ catalogItem.item.availability.availableAmountOnWayToStorageRoom }}
                {{ catalogItem.item.availability.availableDemandsAmountFromSupplierToStorageRoom }}
                {{ catalogItem.item.availability.hours }}
                {{ catalogItem.item.availability.totalAmount }}
                {% if catalogItem.item.availability.inShowroom %} ... {% endif %}
                {% if catalogItem.item.availability.inStock %} ... {% endif %}
                {% if catalogItem.item.availability.preorder %} ... {% endif %}
                {% if catalogItem.item.availability.watchdogSupported %} ... {% endif %}
                {% for deliveryOption in catalogItem.item.availability.deliveryOptions %}
                {% endfor %}
                {% for expectedAmount in catalogItem.item.availability.availableAmountsExpectedToStorageRoom %}
                {% endfor %}
                {% for expectedAmount in catalogItem.item.availability.availableAmountsOnWayToStorageRoom %}
                {% endfor %}
                {% for expectedSupplierAmount in catalogItem.item.availability.availableDemandsFromSupplierToStorageRoom %}
                {% endfor %}
                {% if catalogItem.item.availability.text %}
                        {{ catalogItem.item.availability.text }}
                {% endif %}
                {% if catalogItem.item.availability.dateExpected %}
                        {{ catalogItem.item.availability.dateExpected|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.item.availability.deliveryOption %}
                {% endif %}
                {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.item.product.id }}
                {{ catalogItem.item.product.name }}
                {{ catalogItem.item.product.trackingId }}
                {{ catalogItem.item.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.item.product.active %} ... {% endif %}
                {% if catalogItem.item.product.compared %} ... {% endif %}
                {% if catalogItem.item.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.item.product.flagNew %} ... {% endif %}
                {% if catalogItem.item.product.flagPromo %} ... {% endif %}
                {% if catalogItem.item.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.item.product.flagSellout %} ... {% endif %}
                {% if catalogItem.item.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.item.product.soldSeparately %} ... {% endif %}
                {% for address in catalogItem.item.product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in catalogItem.item.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.item.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogItem.item.product.categories %}
                {% endfor %}
                {% for category in catalogItem.item.product.otherCategories %}
                {% endfor %}
                {% for file in catalogItem.item.product.files %}
                {% endfor %}
                {% for image in catalogItem.item.product.images %}
                {% endfor %}
                {% for image in catalogItem.item.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogItem.item.product.images360 %}
                {% endfor %}
                {% for image in catalogItem.item.product.currentImages %}
                {% endfor %}
                {% for image in catalogItem.item.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogItem.item.product.otherImages %}
                {% endfor %}
                {% for label in catalogItem.item.product.labels %}
                {% endfor %}
                {% for productDesigner in catalogItem.item.product.configurators %}
                {% endfor %}
                {% for productEnumValue in catalogItem.item.product.enumValues %}
                {% endfor %}
                {% for product in catalogItem.item.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogItem.item.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogItem.item.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogItem.item.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogItem.item.product.variants %}
                {% endfor %}
                {% for variant in catalogItem.item.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogItem.item.product.videos %}
                {% endfor %}
                {{ catalogItem.item.product.trackingIds }}
                {% if catalogItem.item.product.currentSubName %}
                        {{ catalogItem.item.product.currentSubName }}
                {% endif %}
                {% if catalogItem.item.product.nameSuffix %}
                        {{ catalogItem.item.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.item.product.nameSupplier %}
                        {{ catalogItem.item.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.item.product.text %}
                        {{ catalogItem.item.product.text }}
                {% endif %}
                {% if catalogItem.item.product.attribute %}
                {% endif %}
                {% if catalogItem.item.product.brand %}
                {% endif %}
                {% if catalogItem.item.product.image %}
                {% endif %}
                {% if catalogItem.item.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogItem.item.product.successor %}
                {% endif %}
                {% if catalogItem.item.product.seo %}
                {% endif %}
                {% if catalogItem.item.product.supplier %}
                {% endif %}
                {% if catalogItem.item.product.unit %}
                {% endif %}
                {% if catalogItem.item.product.variant %}
                {% endif %}
                {% if catalogItem.item.product.warranty %}
                {% endif %}
                {% if catalogItem.item.product.contentGrid %}
                        {{ catalogItem.item.product.contentGrid }}
                {% endif %}
                {% for upsell in catalogItem.item.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.item.trackingIds }}
                {{ catalogItem.item.storageLocations }}
                {% if catalogItem.item.packageWeight %}
                        {{ catalogItem.item.packageWeight }}
                {% endif %}
                {% if catalogItem.item.code %}
                        {{ catalogItem.item.code }}
                {% endif %}
                {% if catalogItem.item.packageHeight %}
                        {{ catalogItem.item.packageHeight }}
                {% endif %}
                {% if catalogItem.item.packageLength %}
                        {{ catalogItem.item.packageLength }}
                {% endif %}
                {% if catalogItem.item.packageWidth %}
                        {{ catalogItem.item.packageWidth }}
                {% endif %}
                {% if catalogItem.item.bundle %}
                        {% if catalogItem.item.bundle.multiPack %} ... {% endif %}
                        {% if catalogItem.item.bundle.price %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.cheapestDelivery %}
                        {{ catalogItem.item.cheapestDelivery.inputId }}
                        {{ catalogItem.item.cheapestDelivery.name }}
                        {{ catalogItem.item.cheapestDelivery.vatRate }}
                        {% if catalogItem.item.cheapestDelivery.branchRequired %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.currier %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.digital %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.free %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.pickup %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.selected %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.text %}
                                {{ catalogItem.item.cheapestDelivery.text }}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.branch %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.carrier %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.deliveryDate %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.packageType %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.image %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.freeDelivery %}
                        {{ catalogItem.item.freeDelivery.name }}
                        {{ catalogItem.item.freeDelivery.vatRate }}
                        {% if catalogItem.item.freeDelivery.deliveryAddressRequired %} ... {% endif %}
                        {% if catalogItem.item.freeDelivery.id %}
                                {{ catalogItem.item.freeDelivery.id }}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.closestFreeDelivery %}
                        {{ catalogItem.item.closestFreeDelivery.name }}
                        {{ catalogItem.item.closestFreeDelivery.vatRate }}
                        {% if catalogItem.item.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
                        {% if catalogItem.item.closestFreeDelivery.id %}
                                {{ catalogItem.item.closestFreeDelivery.id }}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.packageDimensions %}
                        {{ catalogItem.item.packageDimensions }}
                        {{ catalogItem.item.packageDimensions.unit }}
                        {{ catalogItem.item.packageDimensions.height }}
                        {{ catalogItem.item.packageDimensions.length }}
                        {{ catalogItem.item.packageDimensions.width }}
                {% endif %}
                {% if catalogItem.item.image %}
                        {{ catalogItem.item.image.originalHeight }}
                        {{ catalogItem.item.image.originalWidth }}
                        {{ catalogItem.item.image.url }}
                        {% if catalogItem.item.image.alt %}
                                {{ catalogItem.item.image.alt }}
                        {% endif %}
                        {% if catalogItem.item.image.text %}
                                {{ catalogItem.item.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.price %}
                        {{ catalogItem.item.price.vatRate }}
                        {% if catalogItem.item.price.discountPercent %}
                                {{ catalogItem.item.price.discountPercent }}
                        {% endif %}
                        {% if catalogItem.item.price.discountValidTo %}
                                {{ catalogItem.item.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if catalogItem.item.price.beforeDiscount %}
                        {% endif %}
                        {% if catalogItem.item.price.discount %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.url %}
                        {{ catalogItem.item.url }}
                        {{ catalogItem.item.url.absolute }}
                        {{ catalogItem.item.url.path }}
                {% endif %}
                {% if catalogItem.item.variant %}
                        {{ catalogItem.item.variant.id }}
                        {{ catalogItem.item.variant.name }}
                        {{ catalogItem.item.variant.trackingId }}
                        {% if catalogItem.item.variant.active %} ... {% endif %}
                        {% if catalogItem.item.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.item.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.item.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.item.variant.legacyRel %}
                                {{ catalogItem.item.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.item.variant.image %}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if catalogItem.product %}
                {{ catalogItem.product.id }}
                {{ catalogItem.product.name }}
                {{ catalogItem.product.trackingId }}
                {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.product.active %} ... {% endif %}
                {% if catalogItem.product.compared %} ... {% endif %}
                {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.product.flagNew %} ... {% endif %}
                {% if catalogItem.product.flagPromo %} ... {% endif %}
                {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.product.flagSellout %} ... {% endif %}
                {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.product.soldSeparately %} ... {% endif %}
                {% for address in catalogItem.product.publicContacts %}
                        {% if address.city %}
                                {{ address.city }}
                        {% endif %}
                        {% if address.company %}
                                {{ address.company }}
                        {% endif %}
                        {% if address.companyId %}
                                {{ address.companyId }}
                        {% endif %}
                        {% if address.email %}
                                {{ address.email }}
                        {% endif %}
                        {% if address.phone %}
                                {{ address.phone }}
                        {% endif %}
                        {% if address.region %}
                                {{ address.region }}
                        {% endif %}
                        {% if address.street %}
                                {{ address.street }}
                        {% endif %}
                        {% if address.vatId %}
                                {{ address.vatId }}
                        {% endif %}
                        {% if address.web %}
                                {{ address.web }}
                        {% endif %}
                        {% if address.zip %}
                                {{ address.zip }}
                        {% endif %}
                        {% if address.purpose %}
                        {% endif %}
                        {% if address.country %}
                        {% endif %}
                {% endfor %}
                {% for attributeInstance in catalogItem.product.attributes %}
                        {{ attributeInstance.name }}
                        {{ attributeInstance.valuesHtml }}
                        {% for attributeValueInstance in attributeInstance.values %}
                        {% endfor %}
                        {% if attributeInstance.description %}
                                {{ attributeInstance.description }}
                        {% endif %}
                        {% if attributeInstance.group %}
                        {% endif %}
                        {% if attributeInstance.image %}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.category.id }}
                {{ catalogItem.product.category.productCount }}
                {{ catalogItem.product.category.productInStockCount }}
                {{ catalogItem.product.category.totalStockQuantity }}
                {{ catalogItem.product.category.headline }}
                {{ catalogItem.product.category.menuName }}
                {{ catalogItem.product.category.name }}
                {% if catalogItem.product.category.flagErotic %} ... {% endif %}
                {% if catalogItem.product.category.flagImportant %} ... {% endif %}
                {% if catalogItem.product.category.noFollow %} ... {% endif %}
                {% for category in catalogItem.product.category.subcategories %}
                {% endfor %}
                {% for video in catalogItem.product.category.videos %}
                {% endfor %}
                {{ catalogItem.product.category.pathNames }}
                {{ catalogItem.product.category.pathIds }}
                {{ catalogItem.product.category.templateAttribute }}
                {% if catalogItem.product.category.subHeadline %}
                        {{ catalogItem.product.category.subHeadline }}
                {% endif %}
                {% if catalogItem.product.category.text %}
                        {{ catalogItem.product.category.text }}
                {% endif %}
                {% if catalogItem.product.category.parent %}
                {% endif %}
                {% if catalogItem.product.category.image %}
                {% endif %}
                {% if catalogItem.product.category.contentGrid %}
                        {{ catalogItem.product.category.contentGrid }}
                {% endif %}
                {% for category in catalogItem.product.categories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathNames }}
                        {{ category.pathIds }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for category in catalogItem.product.otherCategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathNames }}
                        {{ category.pathIds }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for file in catalogItem.product.files %}
                        {{ file.bytes }}
                        {{ file.url }}
                        {% if file.mime %}
                                {{ file.mime }}
                        {% endif %}
                        {% if file.name %}
                                {{ file.name }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.imagesWithEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.images360 %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.currentImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.otherImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.item.cartAmountRequiredMultiplier }}
                {{ catalogItem.product.item.id }}
                {{ catalogItem.product.item.loyaltyPointsAmount }}
                {{ catalogItem.product.item.name }}
                {{ catalogItem.product.item.trackingId }}
                {% if catalogItem.product.item.digital %} ... {% endif %}
                {% if catalogItem.product.item.sellable %} ... {% endif %}
                {% if catalogItem.product.item.service %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.product.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in catalogItem.product.item.availableUpsells %}
                {% endfor %}
                {{ catalogItem.product.item.trackingIds }}
                {{ catalogItem.product.item.storageLocations }}
                {% if catalogItem.product.item.packageWeight %}
                        {{ catalogItem.product.item.packageWeight }}
                {% endif %}
                {% if catalogItem.product.item.code %}
                        {{ catalogItem.product.item.code }}
                {% endif %}
                {% if catalogItem.product.item.packageHeight %}
                        {{ catalogItem.product.item.packageHeight }}
                {% endif %}
                {% if catalogItem.product.item.packageLength %}
                        {{ catalogItem.product.item.packageLength }}
                {% endif %}
                {% if catalogItem.product.item.packageWidth %}
                        {{ catalogItem.product.item.packageWidth }}
                {% endif %}
                {% if catalogItem.product.item.bundle %}
                {% endif %}
                {% if catalogItem.product.item.cheapestDelivery %}
                {% endif %}
                {% if catalogItem.product.item.freeDelivery %}
                {% endif %}
                {% if catalogItem.product.item.closestFreeDelivery %}
                {% endif %}
                {% if catalogItem.product.item.packageDimensions %}
                {% endif %}
                {% if catalogItem.product.item.image %}
                {% endif %}
                {% if catalogItem.product.item.price %}
                {% endif %}
                {% if catalogItem.product.item.url %}
                {% endif %}
                {% if catalogItem.product.item.variant %}
                {% endif %}
                {% for label in catalogItem.product.labels %}
                        {{ label.id }}
                        {{ label.name }}
                        {% if label.code %}
                                {{ label.code }}
                        {% endif %}
                        {% if label.colorCode %}
                                {{ label.colorCode }}
                        {% endif %}
                        {% if label.image %}
                        {% endif %}
                {% endfor %}
                {% for productDesigner in catalogItem.product.configurators %}
                        {{ productDesigner.name }}
                        {% if productDesigner.result %}
                        {% endif %}
                {% endfor %}
                {% for productEnumValue in catalogItem.product.enumValues %}
                        {{ productEnumValue.id }}
                        {{ productEnumValue.name }}
                        {% if productEnumValue.selected %} ... {% endif %}
                        {% for variant in productEnumValue.variants %}
                        {% endfor %}
                        {% if productEnumValue.text %}
                                {{ productEnumValue.text }}
                        {% endif %}
                        {% if productEnumValue.image %}
                        {% endif %}
                        {% if productEnumValue.variantImage %}
                        {% endif %}
                {% endfor %}
                {% for product in catalogItem.product.packTemplateProducts %}
                        {{ product.id }}
                        {{ product.name }}
                        {{ product.trackingId }}
                        {{ product.dateCreated|date('d. m. Y H:i') }}
                        {% if product.active %} ... {% endif %}
                        {% if product.compared %} ... {% endif %}
                        {% if product.differentVariantPrices %} ... {% endif %}
                        {% if product.flagNew %} ... {% endif %}
                        {% if product.flagPromo %} ... {% endif %}
                        {% if product.flagSecondHand %} ... {% endif %}
                        {% if product.flagSellout %} ... {% endif %}
                        {% if product.otherDiscountApplicable %} ... {% endif %}
                        {% if product.soldSeparately %} ... {% endif %}
                        {% for address in product.publicContacts %}
                        {% endfor %}
                        {% for attributeInstance in product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in product.categories %}
                        {% endfor %}
                        {% for category in product.otherCategories %}
                        {% endfor %}
                        {% for file in product.files %}
                        {% endfor %}
                        {% for image in product.images %}
                        {% endfor %}
                        {% for image in product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in product.images360 %}
                        {% endfor %}
                        {% for image in product.currentImages %}
                        {% endfor %}
                        {% for image in product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in product.otherImages %}
                        {% endfor %}
                        {% for label in product.labels %}
                        {% endfor %}
                        {% for productDesigner in product.configurators %}
                        {% endfor %}
                        {% for productEnumValue in product.enumValues %}
                        {% endfor %}
                        {% for upsell in product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in product.currentVariants %}
                        {% endfor %}
                        {% for variant in product.variants %}
                        {% endfor %}
                        {% for variant in product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in product.videos %}
                        {% endfor %}
                        {{ product.trackingIds }}
                        {% if product.currentSubName %}
                                {{ product.currentSubName }}
                        {% endif %}
                        {% if product.nameSuffix %}
                                {{ product.nameSuffix }}
                        {% endif %}
                        {% if product.nameSupplier %}
                                {{ product.nameSupplier }}
                        {% endif %}
                        {% if product.text %}
                                {{ product.text }}
                        {% endif %}
                        {% if product.attribute %}
                        {% endif %}
                        {% if product.brand %}
                        {% endif %}
                        {% if product.image %}
                        {% endif %}
                        {% if product.imageForEnumValueId %}
                        {% endif %}
                        {% if product.successor %}
                        {% endif %}
                        {% if product.seo %}
                        {% endif %}
                        {% if product.supplier %}
                        {% endif %}
                        {% if product.unit %}
                        {% endif %}
                        {% if product.variant %}
                        {% endif %}
                        {% if product.warranty %}
                        {% endif %}
                        {% if product.contentGrid %}
                                {{ product.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.rating.count }}
                {% if catalogItem.product.rating.voted %} ... {% endif %}
                {% if catalogItem.product.rating.average %}
                        {{ catalogItem.product.rating.average }}
                {% endif %}
                {% for upsell in catalogItem.product.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.url }}
                {{ catalogItem.product.url.absolute }}
                {{ catalogItem.product.url.path }}
                {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {{ variantChoiceStep.headline }}
                        {{ variantChoiceStep.inputName }}
                        {{ variantChoiceStep.mode }}
                        {% if variantChoiceStep.final %} ... {% endif %}
                        {% for variantChoice in variantChoiceStep.choices %}
                        {% endfor %}
                        {% if variantChoiceStep.description %}
                                {{ variantChoiceStep.description }}
                        {% endif %}
                        {% if variantChoiceStep.infoDescription %}
                                {{ variantChoiceStep.infoDescription }}
                        {% endif %}
                        {% if variantChoiceStep.messageEmpty %}
                                {{ variantChoiceStep.messageEmpty }}
                        {% endif %}
                        {% if variantChoiceStep.placeholder %}
                                {{ variantChoiceStep.placeholder }}
                        {% endif %}
                        {% if variantChoiceStep.icon %}
                        {% endif %}
                        {% if variantChoiceStep.infoIcon %}
                        {% endif %}
                        {% if variantChoiceStep.info %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogItem.product.currentVariants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogItem.product.variants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.variantType.id }}
                {{ catalogItem.product.variantType.name }}
                {% for video in catalogItem.product.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.trackingIds }}
                {% if catalogItem.product.currentSubName %}
                        {{ catalogItem.product.currentSubName }}
                {% endif %}
                {% if catalogItem.product.nameSuffix %}
                        {{ catalogItem.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.product.nameSupplier %}
                        {{ catalogItem.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.product.text %}
                        {{ catalogItem.product.text }}
                {% endif %}
                {% if catalogItem.product.attribute %}
                        {{ catalogItem.product.attribute.name }}
                        {{ catalogItem.product.attribute.valuesHtml }}
                        {% for attributeValueInstance in catalogItem.product.attribute.values %}
                        {% endfor %}
                        {% if catalogItem.product.attribute.description %}
                                {{ catalogItem.product.attribute.description }}
                        {% endif %}
                        {% if catalogItem.product.attribute.group %}
                        {% endif %}
                        {% if catalogItem.product.attribute.image %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.brand %}
                        {{ catalogItem.product.brand.id }}
                        {{ catalogItem.product.brand.headline }}
                        {{ catalogItem.product.brand.name }}
                        {% if catalogItem.product.brand.flagImportant %} ... {% endif %}
                        {% for address in catalogItem.product.brand.publicContacts %}
                        {% endfor %}
                        {% for category in catalogItem.product.brand.categories %}
                        {% endfor %}
                        {% if catalogItem.product.brand.code %}
                                {{ catalogItem.product.brand.code }}
                        {% endif %}
                        {% if catalogItem.product.brand.web %}
                                {{ catalogItem.product.brand.web }}
                        {% endif %}
                        {% if catalogItem.product.brand.text %}
                                {{ catalogItem.product.brand.text }}
                        {% endif %}
                        {% if catalogItem.product.brand.image %}
                        {% endif %}
                        {% if catalogItem.product.brand.seo %}
                        {% endif %}
                        {% if catalogItem.product.brand.contentGrid %}
                                {{ catalogItem.product.brand.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.image %}
                        {{ catalogItem.product.image.originalHeight }}
                        {{ catalogItem.product.image.originalWidth }}
                        {{ catalogItem.product.image.url }}
                        {% if catalogItem.product.image.alt %}
                                {{ catalogItem.product.image.alt }}
                        {% endif %}
                        {% if catalogItem.product.image.text %}
                                {{ catalogItem.product.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.imageForEnumValueId %}
                        {{ catalogItem.product.imageForEnumValueId.originalHeight }}
                        {{ catalogItem.product.imageForEnumValueId.originalWidth }}
                        {{ catalogItem.product.imageForEnumValueId.url }}
                        {% if catalogItem.product.imageForEnumValueId.alt %}
                                {{ catalogItem.product.imageForEnumValueId.alt }}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId.text %}
                                {{ catalogItem.product.imageForEnumValueId.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.successor %}
                        {{ catalogItem.product.successor.id }}
                        {{ catalogItem.product.successor.name }}
                        {{ catalogItem.product.successor.trackingId }}
                        {{ catalogItem.product.successor.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.successor.active %} ... {% endif %}
                        {% if catalogItem.product.successor.compared %} ... {% endif %}
                        {% if catalogItem.product.successor.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.successor.flagNew %} ... {% endif %}
                        {% if catalogItem.product.successor.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.successor.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.successor.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.successor.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.successor.soldSeparately %} ... {% endif %}
                        {% for address in catalogItem.product.successor.publicContacts %}
                        {% endfor %}
                        {% for attributeInstance in catalogItem.product.successor.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.successor.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.successor.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.successor.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.successor.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.successor.labels %}
                        {% endfor %}
                        {% for productDesigner in catalogItem.product.successor.configurators %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.successor.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.successor.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.successor.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.successor.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.successor.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.successor.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.successor.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.successor.videos %}
                        {% endfor %}
                        {{ catalogItem.product.successor.trackingIds }}
                        {% if catalogItem.product.successor.currentSubName %}
                                {{ catalogItem.product.successor.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.successor.nameSuffix %}
                                {{ catalogItem.product.successor.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.successor.nameSupplier %}
                                {{ catalogItem.product.successor.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.successor.text %}
                                {{ catalogItem.product.successor.text }}
                        {% endif %}
                        {% if catalogItem.product.successor.attribute %}
                        {% endif %}
                        {% if catalogItem.product.successor.brand %}
                        {% endif %}
                        {% if catalogItem.product.successor.image %}
                        {% endif %}
                        {% if catalogItem.product.successor.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.successor.seo %}
                        {% endif %}
                        {% if catalogItem.product.successor.supplier %}
                        {% endif %}
                        {% if catalogItem.product.successor.unit %}
                        {% endif %}
                        {% if catalogItem.product.successor.variant %}
                        {% endif %}
                        {% if catalogItem.product.successor.warranty %}
                        {% endif %}
                        {% if catalogItem.product.successor.contentGrid %}
                                {{ catalogItem.product.successor.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.seo %}
                        {% if catalogItem.product.seo.description %}
                                {{ catalogItem.product.seo.description }}
                        {% endif %}
                        {% if catalogItem.product.seo.keywords %}
                                {{ catalogItem.product.seo.keywords }}
                        {% endif %}
                        {% if catalogItem.product.seo.title %}
                                {{ catalogItem.product.seo.title }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.supplier %}
                        {{ catalogItem.product.supplier.id }}
                        {{ catalogItem.product.supplier.name }}
                        {% for address in catalogItem.product.supplier.publicContacts %}
                        {% endfor %}
                {% endif %}
                {% if catalogItem.product.unit %}
                        {{ catalogItem.product.unit.name }}
                {% endif %}
                {% if catalogItem.product.variant %}
                        {{ catalogItem.product.variant.id }}
                        {{ catalogItem.product.variant.name }}
                        {{ catalogItem.product.variant.trackingId }}
                        {% if catalogItem.product.variant.active %} ... {% endif %}
                        {% if catalogItem.product.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.product.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.product.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.product.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.product.variant.legacyRel %}
                                {{ catalogItem.product.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.product.variant.image %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.warranty %}
                        {{ catalogItem.product.warranty.months }}
                {% endif %}
                {% if catalogItem.product.contentGrid %}
                        {{ catalogItem.product.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogItem.unit %}
                {{ catalogItem.unit.name }}
        {% endif %}
        {% if catalogItem.upsell %}
                {{ catalogItem.upsell.id }}
                {{ catalogItem.upsell.name }}
                {% if catalogItem.upsell.inCart %} ... {% endif %}
                {{ catalogItem.upsell.category.id }}
                {{ catalogItem.upsell.category.productCount }}
                {{ catalogItem.upsell.category.productInStockCount }}
                {{ catalogItem.upsell.category.totalStockQuantity }}
                {{ catalogItem.upsell.category.headline }}
                {{ catalogItem.upsell.category.menuName }}
                {{ catalogItem.upsell.category.name }}
                {% if catalogItem.upsell.category.flagErotic %} ... {% endif %}
                {% if catalogItem.upsell.category.flagImportant %} ... {% endif %}
                {% if catalogItem.upsell.category.noFollow %} ... {% endif %}
                {% for category in catalogItem.upsell.category.subcategories %}
                {% endfor %}
                {% for video in catalogItem.upsell.category.videos %}
                {% endfor %}
                {{ catalogItem.upsell.category.pathNames }}
                {{ catalogItem.upsell.category.pathIds }}
                {{ catalogItem.upsell.category.templateAttribute }}
                {% if catalogItem.upsell.category.subHeadline %}
                        {{ catalogItem.upsell.category.subHeadline }}
                {% endif %}
                {% if catalogItem.upsell.category.text %}
                        {{ catalogItem.upsell.category.text }}
                {% endif %}
                {% if catalogItem.upsell.category.parent %}
                {% endif %}
                {% if catalogItem.upsell.category.image %}
                {% endif %}
                {% if catalogItem.upsell.category.contentGrid %}
                        {{ catalogItem.upsell.category.contentGrid }}
                {% endif %}
                {{ catalogItem.upsell.price.vatRate }}
                {% if catalogItem.upsell.price.discountPercent %}
                        {{ catalogItem.upsell.price.discountPercent }}
                {% endif %}
                {% if catalogItem.upsell.price.discountValidTo %}
                        {{ catalogItem.upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.upsell.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.upsell.price.discount %}
                {% endif %}
                {{ catalogItem.upsell.product.id }}
                {{ catalogItem.upsell.product.name }}
                {{ catalogItem.upsell.product.trackingId }}
                {{ catalogItem.upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.upsell.product.active %} ... {% endif %}
                {% if catalogItem.upsell.product.compared %} ... {% endif %}
                {% if catalogItem.upsell.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.upsell.product.flagNew %} ... {% endif %}
                {% if catalogItem.upsell.product.flagPromo %} ... {% endif %}
                {% if catalogItem.upsell.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.upsell.product.flagSellout %} ... {% endif %}
                {% if catalogItem.upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.upsell.product.soldSeparately %} ... {% endif %}
                {% for address in catalogItem.upsell.product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in catalogItem.upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogItem.upsell.product.categories %}
                {% endfor %}
                {% for category in catalogItem.upsell.product.otherCategories %}
                {% endfor %}
                {% for file in catalogItem.upsell.product.files %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.images %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.images360 %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.currentImages %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.otherImages %}
                {% endfor %}
                {% for label in catalogItem.upsell.product.labels %}
                {% endfor %}
                {% for productDesigner in catalogItem.upsell.product.configurators %}
                {% endfor %}
                {% for productEnumValue in catalogItem.upsell.product.enumValues %}
                {% endfor %}
                {% for product in catalogItem.upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogItem.upsell.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogItem.upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogItem.upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogItem.upsell.product.variants %}
                {% endfor %}
                {% for variant in catalogItem.upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogItem.upsell.product.videos %}
                {% endfor %}
                {{ catalogItem.upsell.product.trackingIds }}
                {% if catalogItem.upsell.product.currentSubName %}
                        {{ catalogItem.upsell.product.currentSubName }}
                {% endif %}
                {% if catalogItem.upsell.product.nameSuffix %}
                        {{ catalogItem.upsell.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.upsell.product.nameSupplier %}
                        {{ catalogItem.upsell.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.upsell.product.text %}
                        {{ catalogItem.upsell.product.text }}
                {% endif %}
                {% if catalogItem.upsell.product.attribute %}
                {% endif %}
                {% if catalogItem.upsell.product.brand %}
                {% endif %}
                {% if catalogItem.upsell.product.image %}
                {% endif %}
                {% if catalogItem.upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogItem.upsell.product.successor %}
                {% endif %}
                {% if catalogItem.upsell.product.seo %}
                {% endif %}
                {% if catalogItem.upsell.product.supplier %}
                {% endif %}
                {% if catalogItem.upsell.product.unit %}
                {% endif %}
                {% if catalogItem.upsell.product.variant %}
                {% endif %}
                {% if catalogItem.upsell.product.warranty %}
                {% endif %}
                {% if catalogItem.upsell.product.contentGrid %}
                        {{ catalogItem.upsell.product.contentGrid }}
                {% endif %}
                {{ catalogItem.upsell.group.id }}
                {{ catalogItem.upsell.group.requiredNoteMaximumLength }}
                {{ catalogItem.upsell.group.name }}
                {% if catalogItem.upsell.group.requiredNote %} ... {% endif %}
                {% if catalogItem.upsell.group.requiredUpload %} ... {% endif %}
                {% if catalogItem.upsell.group.singleSelection %} ... {% endif %}
                {% if catalogItem.upsell.group.text %}
                        {{ catalogItem.upsell.group.text }}
                {% endif %}
                {% if catalogItem.upsell.group.uploadInput %}
                        {{ catalogItem.upsell.group.uploadInput }}
                {% endif %}
                {% if catalogItem.upsell.code %}
                        {{ catalogItem.upsell.code }}
                {% endif %}
                {% if catalogItem.upsell.vatRate %}
                        {{ catalogItem.upsell.vatRate }}
                {% endif %}
                {% if catalogItem.upsell.image %}
                        {{ catalogItem.upsell.image.originalHeight }}
                        {{ catalogItem.upsell.image.originalWidth }}
                        {{ catalogItem.upsell.image.url }}
                        {% if catalogItem.upsell.image.alt %}
                                {{ catalogItem.upsell.image.alt }}
                        {% endif %}
                        {% if catalogItem.upsell.image.text %}
                                {{ catalogItem.upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.upsell.unit %}
                        {{ catalogItem.upsell.unit.name }}
                {% endif %}
        {% endif %}
        {% if catalogItem.variant %}
                {{ catalogItem.variant.id }}
                {{ catalogItem.variant.name }}
                {{ catalogItem.variant.trackingId }}
                {% if catalogItem.variant.active %} ... {% endif %}
                {% if catalogItem.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in catalogItem.variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.variant.item.cartAmountRequiredMultiplier }}
                {{ catalogItem.variant.item.id }}
                {{ catalogItem.variant.item.loyaltyPointsAmount }}
                {{ catalogItem.variant.item.name }}
                {{ catalogItem.variant.item.trackingId }}
                {% if catalogItem.variant.item.digital %} ... {% endif %}
                {% if catalogItem.variant.item.sellable %} ... {% endif %}
                {% if catalogItem.variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in catalogItem.variant.item.availableUpsells %}
                {% endfor %}
                {{ catalogItem.variant.item.trackingIds }}
                {{ catalogItem.variant.item.storageLocations }}
                {% if catalogItem.variant.item.packageWeight %}
                        {{ catalogItem.variant.item.packageWeight }}
                {% endif %}
                {% if catalogItem.variant.item.code %}
                        {{ catalogItem.variant.item.code }}
                {% endif %}
                {% if catalogItem.variant.item.packageHeight %}
                        {{ catalogItem.variant.item.packageHeight }}
                {% endif %}
                {% if catalogItem.variant.item.packageLength %}
                        {{ catalogItem.variant.item.packageLength }}
                {% endif %}
                {% if catalogItem.variant.item.packageWidth %}
                        {{ catalogItem.variant.item.packageWidth }}
                {% endif %}
                {% if catalogItem.variant.item.bundle %}
                {% endif %}
                {% if catalogItem.variant.item.cheapestDelivery %}
                {% endif %}
                {% if catalogItem.variant.item.freeDelivery %}
                {% endif %}
                {% if catalogItem.variant.item.closestFreeDelivery %}
                {% endif %}
                {% if catalogItem.variant.item.packageDimensions %}
                {% endif %}
                {% if catalogItem.variant.item.image %}
                {% endif %}
                {% if catalogItem.variant.item.price %}
                {% endif %}
                {% if catalogItem.variant.item.url %}
                {% endif %}
                {{ catalogItem.variant.product.id }}
                {{ catalogItem.variant.product.name }}
                {{ catalogItem.variant.product.trackingId }}
                {{ catalogItem.variant.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.variant.product.active %} ... {% endif %}
                {% if catalogItem.variant.product.compared %} ... {% endif %}
                {% if catalogItem.variant.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.variant.product.flagNew %} ... {% endif %}
                {% if catalogItem.variant.product.flagPromo %} ... {% endif %}
                {% if catalogItem.variant.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.variant.product.flagSellout %} ... {% endif %}
                {% if catalogItem.variant.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.variant.product.soldSeparately %} ... {% endif %}
                {% for address in catalogItem.variant.product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in catalogItem.variant.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.variant.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogItem.variant.product.categories %}
                {% endfor %}
                {% for category in catalogItem.variant.product.otherCategories %}
                {% endfor %}
                {% for file in catalogItem.variant.product.files %}
                {% endfor %}
                {% for image in catalogItem.variant.product.images %}
                {% endfor %}
                {% for image in catalogItem.variant.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogItem.variant.product.images360 %}
                {% endfor %}
                {% for image in catalogItem.variant.product.currentImages %}
                {% endfor %}
                {% for image in catalogItem.variant.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogItem.variant.product.otherImages %}
                {% endfor %}
                {% for label in catalogItem.variant.product.labels %}
                {% endfor %}
                {% for productDesigner in catalogItem.variant.product.configurators %}
                {% endfor %}
                {% for productEnumValue in catalogItem.variant.product.enumValues %}
                {% endfor %}
                {% for product in catalogItem.variant.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogItem.variant.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogItem.variant.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogItem.variant.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogItem.variant.product.variants %}
                {% endfor %}
                {% for variant in catalogItem.variant.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogItem.variant.product.videos %}
                {% endfor %}
                {{ catalogItem.variant.product.trackingIds }}
                {% if catalogItem.variant.product.currentSubName %}
                        {{ catalogItem.variant.product.currentSubName }}
                {% endif %}
                {% if catalogItem.variant.product.nameSuffix %}
                        {{ catalogItem.variant.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.variant.product.nameSupplier %}
                        {{ catalogItem.variant.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.variant.product.text %}
                        {{ catalogItem.variant.product.text }}
                {% endif %}
                {% if catalogItem.variant.product.attribute %}
                {% endif %}
                {% if catalogItem.variant.product.brand %}
                {% endif %}
                {% if catalogItem.variant.product.image %}
                {% endif %}
                {% if catalogItem.variant.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogItem.variant.product.successor %}
                {% endif %}
                {% if catalogItem.variant.product.seo %}
                {% endif %}
                {% if catalogItem.variant.product.supplier %}
                {% endif %}
                {% if catalogItem.variant.product.unit %}
                {% endif %}
                {% if catalogItem.variant.product.warranty %}
                {% endif %}
                {% if catalogItem.variant.product.contentGrid %}
                        {{ catalogItem.variant.product.contentGrid }}
                {% endif %}
                {% for upsell in catalogItem.variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.variant.url }}
                {{ catalogItem.variant.url.absolute }}
                {{ catalogItem.variant.url.path }}
                {% if catalogItem.variant.legacyRel %}
                        {{ catalogItem.variant.legacyRel }}
                {% endif %}
                {% if catalogItem.variant.image %}
                        {{ catalogItem.variant.image.originalHeight }}
                        {{ catalogItem.variant.image.originalWidth }}
                        {{ catalogItem.variant.image.url }}
                        {% if catalogItem.variant.image.alt %}
                                {{ catalogItem.variant.image.alt }}
                        {% endif %}
                        {% if catalogItem.variant.image.text %}
                                {{ catalogItem.variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endif %}
{% endfor %}

{% for orderItemError in catalogitem.errors %}
        {{ orderItemError.recommendedAmount }}
        {{ orderItemError.code }}
        {{ orderItemError.itemName }}
        {{ orderItemError.message }}
{% endfor %}
{{ catalogitem.price.vatRate }}
{{ catalogitem.price.current.currency }}
{{ catalogitem.price.current.formatted }}
{{ catalogitem.price.current.value }}
{% if catalogitem.price.current.perUnit %}
        {{ catalogitem.price.current.perUnit }}
        {{ catalogitem.price.current.perUnit.formatted }}
        {{ catalogitem.price.current.perUnit.unit }}
{% endif %}
{% if catalogitem.price.discountPercent %}
        {{ catalogitem.price.discountPercent }}
{% endif %}
{% if catalogitem.price.discountValidTo %}
        {{ catalogitem.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if catalogitem.price.beforeDiscount %}
        {{ catalogitem.price.beforeDiscount.currency }}
        {{ catalogitem.price.beforeDiscount.formatted }}
        {{ catalogitem.price.beforeDiscount.value }}
        {% if catalogitem.price.beforeDiscount.perUnit %}
                {{ catalogitem.price.beforeDiscount.perUnit }}
                {{ catalogitem.price.beforeDiscount.perUnit.formatted }}
                {{ catalogitem.price.beforeDiscount.perUnit.unit }}
        {% endif %}
{% endif %}
{% if catalogitem.price.discount %}
        {{ catalogitem.price.discount.currency }}
        {{ catalogitem.price.discount.formatted }}
        {{ catalogitem.price.discount.value }}
        {% if catalogitem.price.discount.perUnit %}
                {{ catalogitem.price.discount.perUnit }}
                {{ catalogitem.price.discount.perUnit.formatted }}
                {{ catalogitem.price.discount.perUnit.unit }}
        {% endif %}
{% endif %}
{{ catalogitem.priceTotal.vatRate }}
{{ catalogitem.priceTotal.current.currency }}
{{ catalogitem.priceTotal.current.formatted }}
{{ catalogitem.priceTotal.current.value }}
{% if catalogitem.priceTotal.current.perUnit %}
        {{ catalogitem.priceTotal.current.perUnit }}
        {{ catalogitem.priceTotal.current.perUnit.formatted }}
        {{ catalogitem.priceTotal.current.perUnit.unit }}
{% endif %}
{% if catalogitem.priceTotal.discountPercent %}
        {{ catalogitem.priceTotal.discountPercent }}
{% endif %}
{% if catalogitem.priceTotal.discountValidTo %}
        {{ catalogitem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if catalogitem.priceTotal.beforeDiscount %}
        {{ catalogitem.priceTotal.beforeDiscount.currency }}
        {{ catalogitem.priceTotal.beforeDiscount.formatted }}
        {{ catalogitem.priceTotal.beforeDiscount.value }}
        {% if catalogitem.priceTotal.beforeDiscount.perUnit %}
                {{ catalogitem.priceTotal.beforeDiscount.perUnit }}
                {{ catalogitem.priceTotal.beforeDiscount.perUnit.formatted }}
                {{ catalogitem.priceTotal.beforeDiscount.perUnit.unit }}
        {% endif %}
{% endif %}
{% if catalogitem.priceTotal.discount %}
        {{ catalogitem.priceTotal.discount.currency }}
        {{ catalogitem.priceTotal.discount.formatted }}
        {{ catalogitem.priceTotal.discount.value }}
        {% if catalogitem.priceTotal.discount.perUnit %}
                {{ catalogitem.priceTotal.discount.perUnit }}
                {{ catalogitem.priceTotal.discount.perUnit.formatted }}
                {{ catalogitem.priceTotal.discount.perUnit.unit }}
        {% endif %}
{% endif %}

{% for productDesigner in catalogitem.availableConfigurators %}
        {{ productDesigner.name }}
        {{ productDesigner.upsell.id }}
        {{ productDesigner.upsell.name }}
        {% if productDesigner.upsell.inCart %} ... {% endif %}
        {{ productDesigner.upsell.category.id }}
        {{ productDesigner.upsell.category.productCount }}
        {{ productDesigner.upsell.category.productInStockCount }}
        {{ productDesigner.upsell.category.totalStockQuantity }}
        {{ productDesigner.upsell.category.headline }}
        {{ productDesigner.upsell.category.menuName }}
        {{ productDesigner.upsell.category.name }}
        {% if productDesigner.upsell.category.flagErotic %} ... {% endif %}
        {% if productDesigner.upsell.category.flagImportant %} ... {% endif %}
        {% if productDesigner.upsell.category.noFollow %} ... {% endif %}
        {% for category in productDesigner.upsell.category.subcategories %}
        {% endfor %}
        {% for video in productDesigner.upsell.category.videos %}
        {% endfor %}
        {{ productDesigner.upsell.category.pathNames }}
        {{ productDesigner.upsell.category.pathIds }}
        {{ productDesigner.upsell.category.templateAttribute }}
        {% if productDesigner.upsell.category.subHeadline %}
                {{ productDesigner.upsell.category.subHeadline }}
        {% endif %}
        {% if productDesigner.upsell.category.text %}
                {{ productDesigner.upsell.category.text }}
        {% endif %}
        {% if productDesigner.upsell.category.parent %}
        {% endif %}
        {% if productDesigner.upsell.category.image %}
        {% endif %}
        {% if productDesigner.upsell.category.contentGrid %}
                {{ productDesigner.upsell.category.contentGrid }}
        {% endif %}
        {{ productDesigner.upsell.price.vatRate }}
        {% if productDesigner.upsell.price.discountPercent %}
                {{ productDesigner.upsell.price.discountPercent }}
        {% endif %}
        {% if productDesigner.upsell.price.discountValidTo %}
                {{ productDesigner.upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if productDesigner.upsell.price.beforeDiscount %}
        {% endif %}
        {% if productDesigner.upsell.price.discount %}
        {% endif %}
        {{ productDesigner.upsell.product.id }}
        {{ productDesigner.upsell.product.name }}
        {{ productDesigner.upsell.product.trackingId }}
        {{ productDesigner.upsell.product.dateCreated|date('d. m. Y H:i') }}
        {% if productDesigner.upsell.product.active %} ... {% endif %}
        {% if productDesigner.upsell.product.compared %} ... {% endif %}
        {% if productDesigner.upsell.product.differentVariantPrices %} ... {% endif %}
        {% if productDesigner.upsell.product.flagNew %} ... {% endif %}
        {% if productDesigner.upsell.product.flagPromo %} ... {% endif %}
        {% if productDesigner.upsell.product.flagSecondHand %} ... {% endif %}
        {% if productDesigner.upsell.product.flagSellout %} ... {% endif %}
        {% if productDesigner.upsell.product.otherDiscountApplicable %} ... {% endif %}
        {% if productDesigner.upsell.product.soldSeparately %} ... {% endif %}
        {% for address in productDesigner.upsell.product.publicContacts %}
        {% endfor %}
        {% for attributeInstance in productDesigner.upsell.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in productDesigner.upsell.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in productDesigner.upsell.product.categories %}
        {% endfor %}
        {% for category in productDesigner.upsell.product.otherCategories %}
        {% endfor %}
        {% for file in productDesigner.upsell.product.files %}
        {% endfor %}
        {% for image in productDesigner.upsell.product.images %}
        {% endfor %}
        {% for image in productDesigner.upsell.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in productDesigner.upsell.product.images360 %}
        {% endfor %}
        {% for image in productDesigner.upsell.product.currentImages %}
        {% endfor %}
        {% for image in productDesigner.upsell.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in productDesigner.upsell.product.otherImages %}
        {% endfor %}
        {% for label in productDesigner.upsell.product.labels %}
        {% endfor %}
        {% for productDesigner in productDesigner.upsell.product.configurators %}
        {% endfor %}
        {% for productEnumValue in productDesigner.upsell.product.enumValues %}
        {% endfor %}
        {% for product in productDesigner.upsell.product.packTemplateProducts %}
        {% endfor %}
        {% for upsell in productDesigner.upsell.product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in productDesigner.upsell.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in productDesigner.upsell.product.currentVariants %}
        {% endfor %}
        {% for variant in productDesigner.upsell.product.variants %}
        {% endfor %}
        {% for variant in productDesigner.upsell.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in productDesigner.upsell.product.videos %}
        {% endfor %}
        {{ productDesigner.upsell.product.trackingIds }}
        {% if productDesigner.upsell.product.currentSubName %}
                {{ productDesigner.upsell.product.currentSubName }}
        {% endif %}
        {% if productDesigner.upsell.product.nameSuffix %}
                {{ productDesigner.upsell.product.nameSuffix }}
        {% endif %}
        {% if productDesigner.upsell.product.nameSupplier %}
                {{ productDesigner.upsell.product.nameSupplier }}
        {% endif %}
        {% if productDesigner.upsell.product.text %}
                {{ productDesigner.upsell.product.text }}
        {% endif %}
        {% if productDesigner.upsell.product.attribute %}
        {% endif %}
        {% if productDesigner.upsell.product.brand %}
        {% endif %}
        {% if productDesigner.upsell.product.image %}
        {% endif %}
        {% if productDesigner.upsell.product.imageForEnumValueId %}
        {% endif %}
        {% if productDesigner.upsell.product.successor %}
        {% endif %}
        {% if productDesigner.upsell.product.seo %}
        {% endif %}
        {% if productDesigner.upsell.product.supplier %}
        {% endif %}
        {% if productDesigner.upsell.product.unit %}
        {% endif %}
        {% if productDesigner.upsell.product.variant %}
        {% endif %}
        {% if productDesigner.upsell.product.warranty %}
        {% endif %}
        {% if productDesigner.upsell.product.contentGrid %}
                {{ productDesigner.upsell.product.contentGrid }}
        {% endif %}
        {{ productDesigner.upsell.group.id }}
        {{ productDesigner.upsell.group.requiredNoteMaximumLength }}
        {{ productDesigner.upsell.group.name }}
        {% if productDesigner.upsell.group.requiredNote %} ... {% endif %}
        {% if productDesigner.upsell.group.requiredUpload %} ... {% endif %}
        {% if productDesigner.upsell.group.singleSelection %} ... {% endif %}
        {% if productDesigner.upsell.group.text %}
                {{ productDesigner.upsell.group.text }}
        {% endif %}
        {% if productDesigner.upsell.group.uploadInput %}
                {{ productDesigner.upsell.group.uploadInput }}
        {% endif %}
        {% if productDesigner.upsell.code %}
                {{ productDesigner.upsell.code }}
        {% endif %}
        {% if productDesigner.upsell.vatRate %}
                {{ productDesigner.upsell.vatRate }}
        {% endif %}
        {% if productDesigner.upsell.image %}
                {{ productDesigner.upsell.image.originalHeight }}
                {{ productDesigner.upsell.image.originalWidth }}
                {{ productDesigner.upsell.image.url }}
                {% if productDesigner.upsell.image.alt %}
                        {{ productDesigner.upsell.image.alt }}
                {% endif %}
                {% if productDesigner.upsell.image.text %}
                        {{ productDesigner.upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if productDesigner.upsell.unit %}
                {{ productDesigner.upsell.unit.name }}
        {% endif %}
        {% if productDesigner.result %}
                {{ productDesigner.result.imageUrl }}
                {{ productDesigner.result.uuid }}
                {{ productDesigner.result.price.currency }}
                {{ productDesigner.result.price.formatted }}
                {{ productDesigner.result.price.value }}
                {% if productDesigner.result.price.perUnit %}
                {% endif %}
                {% for productDesignerResultPart in productDesigner.result.parts %}
                        {{ productDesignerResultPart.imageUrl }}
                        {{ productDesignerResultPart.label }}
                {% endfor %}
        {% endif %}
{% endfor %}

{% for upsell in catalogitem.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {{ upsell.category.id }}
        {{ upsell.category.productCount }}
        {{ upsell.category.productInStockCount }}
        {{ upsell.category.totalStockQuantity }}
        {{ upsell.category.headline }}
        {{ upsell.category.menuName }}
        {{ upsell.category.name }}
        {% if upsell.category.flagErotic %} ... {% endif %}
        {% if upsell.category.flagImportant %} ... {% endif %}
        {% if upsell.category.noFollow %} ... {% endif %}
        {% for category in upsell.category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ upsell.category.url }}
        {{ upsell.category.url.absolute }}
        {{ upsell.category.url.path }}
        {{ upsell.category.variantType.id }}
        {{ upsell.category.variantType.name }}
        {% for video in upsell.category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.category.pathNames }}
        {{ upsell.category.pathIds }}
        {{ upsell.category.templateAttribute }}
        {% if upsell.category.subHeadline %}
                {{ upsell.category.subHeadline }}
        {% endif %}
        {% if upsell.category.text %}
                {{ upsell.category.text }}
        {% endif %}
        {% if upsell.category.parent %}
                {{ upsell.category.parent.id }}
                {{ upsell.category.parent.productCount }}
                {{ upsell.category.parent.productInStockCount }}
                {{ upsell.category.parent.totalStockQuantity }}
                {{ upsell.category.parent.headline }}
                {{ upsell.category.parent.menuName }}
                {{ upsell.category.parent.name }}
                {% if upsell.category.parent.flagErotic %} ... {% endif %}
                {% if upsell.category.parent.flagImportant %} ... {% endif %}
                {% if upsell.category.parent.noFollow %} ... {% endif %}
                {% for category in upsell.category.parent.subcategories %}
                {% endfor %}
                {% for video in upsell.category.parent.videos %}
                {% endfor %}
                {{ upsell.category.parent.pathNames }}
                {{ upsell.category.parent.pathIds }}
                {{ upsell.category.parent.templateAttribute }}
                {% if upsell.category.parent.subHeadline %}
                        {{ upsell.category.parent.subHeadline }}
                {% endif %}
                {% if upsell.category.parent.text %}
                        {{ upsell.category.parent.text }}
                {% endif %}
                {% if upsell.category.parent.image %}
                {% endif %}
                {% if upsell.category.parent.contentGrid %}
                        {{ upsell.category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.category.image %}
                {{ upsell.category.image.originalHeight }}
                {{ upsell.category.image.originalWidth }}
                {{ upsell.category.image.url }}
                {% if upsell.category.image.alt %}
                        {{ upsell.category.image.alt }}
                {% endif %}
                {% if upsell.category.image.text %}
                        {{ upsell.category.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.category.contentGrid %}
                {{ upsell.category.contentGrid }}
        {% endif %}
        {{ upsell.price.vatRate }}
        {{ upsell.price.current.currency }}
        {{ upsell.price.current.formatted }}
        {{ upsell.price.current.value }}
        {% if upsell.price.current.perUnit %}
        {% endif %}
        {% if upsell.price.discountPercent %}
                {{ upsell.price.discountPercent }}
        {% endif %}
        {% if upsell.price.discountValidTo %}
                {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if upsell.price.beforeDiscount %}
                {{ upsell.price.beforeDiscount.currency }}
                {{ upsell.price.beforeDiscount.formatted }}
                {{ upsell.price.beforeDiscount.value }}
                {% if upsell.price.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if upsell.price.discount %}
                {{ upsell.price.discount.currency }}
                {{ upsell.price.discount.formatted }}
                {{ upsell.price.discount.value }}
                {% if upsell.price.discount.perUnit %}
                {% endif %}
        {% endif %}
        {{ upsell.product.id }}
        {{ upsell.product.name }}
        {{ upsell.product.trackingId }}
        {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
        {% if upsell.product.active %} ... {% endif %}
        {% if upsell.product.compared %} ... {% endif %}
        {% if upsell.product.differentVariantPrices %} ... {% endif %}
        {% if upsell.product.flagNew %} ... {% endif %}
        {% if upsell.product.flagPromo %} ... {% endif %}
        {% if upsell.product.flagSecondHand %} ... {% endif %}
        {% if upsell.product.flagSellout %} ... {% endif %}
        {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
        {% if upsell.product.soldSeparately %} ... {% endif %}
        {% for address in upsell.product.publicContacts %}
                {% if address.city %}
                        {{ address.city }}
                {% endif %}
                {% if address.company %}
                        {{ address.company }}
                {% endif %}
                {% if address.companyId %}
                        {{ address.companyId }}
                {% endif %}
                {% if address.email %}
                        {{ address.email }}
                {% endif %}
                {% if address.phone %}
                        {{ address.phone }}
                {% endif %}
                {% if address.region %}
                        {{ address.region }}
                {% endif %}
                {% if address.street %}
                        {{ address.street }}
                {% endif %}
                {% if address.vatId %}
                        {{ address.vatId }}
                {% endif %}
                {% if address.web %}
                        {{ address.web }}
                {% endif %}
                {% if address.zip %}
                        {{ address.zip }}
                {% endif %}
                {% if address.purpose %}
                {% endif %}
                {% if address.country %}
                {% endif %}
        {% endfor %}
        {% for attributeInstance in upsell.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.category.id }}
        {{ upsell.product.category.productCount }}
        {{ upsell.product.category.productInStockCount }}
        {{ upsell.product.category.totalStockQuantity }}
        {{ upsell.product.category.headline }}
        {{ upsell.product.category.menuName }}
        {{ upsell.product.category.name }}
        {% if upsell.product.category.flagErotic %} ... {% endif %}
        {% if upsell.product.category.flagImportant %} ... {% endif %}
        {% if upsell.product.category.noFollow %} ... {% endif %}
        {% for category in upsell.product.category.subcategories %}
        {% endfor %}
        {% for video in upsell.product.category.videos %}
        {% endfor %}
        {{ upsell.product.category.pathNames }}
        {{ upsell.product.category.pathIds }}
        {{ upsell.product.category.templateAttribute }}
        {% if upsell.product.category.subHeadline %}
                {{ upsell.product.category.subHeadline }}
        {% endif %}
        {% if upsell.product.category.text %}
                {{ upsell.product.category.text }}
        {% endif %}
        {% if upsell.product.category.parent %}
        {% endif %}
        {% if upsell.product.category.image %}
        {% endif %}
        {% if upsell.product.category.contentGrid %}
                {{ upsell.product.category.contentGrid }}
        {% endif %}
        {% for category in upsell.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in upsell.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in upsell.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.item.cartAmountRequiredMultiplier }}
        {{ upsell.product.item.id }}
        {{ upsell.product.item.loyaltyPointsAmount }}
        {{ upsell.product.item.name }}
        {{ upsell.product.item.trackingId }}
        {% if upsell.product.item.digital %} ... {% endif %}
        {% if upsell.product.item.sellable %} ... {% endif %}
        {% if upsell.product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in upsell.product.item.availableUpsellGroups %}
        {% endfor %}
        {{ upsell.product.item.trackingIds }}
        {{ upsell.product.item.storageLocations }}
        {% if upsell.product.item.packageWeight %}
                {{ upsell.product.item.packageWeight }}
        {% endif %}
        {% if upsell.product.item.code %}
                {{ upsell.product.item.code }}
        {% endif %}
        {% if upsell.product.item.packageHeight %}
                {{ upsell.product.item.packageHeight }}
        {% endif %}
        {% if upsell.product.item.packageLength %}
                {{ upsell.product.item.packageLength }}
        {% endif %}
        {% if upsell.product.item.packageWidth %}
                {{ upsell.product.item.packageWidth }}
        {% endif %}
        {% if upsell.product.item.bundle %}
        {% endif %}
        {% if upsell.product.item.cheapestDelivery %}
        {% endif %}
        {% if upsell.product.item.freeDelivery %}
        {% endif %}
        {% if upsell.product.item.closestFreeDelivery %}
        {% endif %}
        {% if upsell.product.item.packageDimensions %}
        {% endif %}
        {% if upsell.product.item.image %}
        {% endif %}
        {% if upsell.product.item.price %}
        {% endif %}
        {% if upsell.product.item.url %}
        {% endif %}
        {% if upsell.product.item.variant %}
        {% endif %}
        {% for label in upsell.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productDesigner in upsell.product.configurators %}
                {{ productDesigner.name }}
                {% if productDesigner.result %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in upsell.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in upsell.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for address in product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productDesigner in product.configurators %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.rating.count }}
        {% if upsell.product.rating.voted %} ... {% endif %}
        {% if upsell.product.rating.average %}
                {{ upsell.product.rating.average }}
        {% endif %}
        {{ upsell.product.url }}
        {{ upsell.product.url.absolute }}
        {{ upsell.product.url.path }}
        {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.variantType.id }}
        {{ upsell.product.variantType.name }}
        {% for video in upsell.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.trackingIds }}
        {% if upsell.product.currentSubName %}
                {{ upsell.product.currentSubName }}
        {% endif %}
        {% if upsell.product.nameSuffix %}
                {{ upsell.product.nameSuffix }}
        {% endif %}
        {% if upsell.product.nameSupplier %}
                {{ upsell.product.nameSupplier }}
        {% endif %}
        {% if upsell.product.text %}
                {{ upsell.product.text }}
        {% endif %}
        {% if upsell.product.attribute %}
                {{ upsell.product.attribute.name }}
                {{ upsell.product.attribute.valuesHtml }}
                {% for attributeValueInstance in upsell.product.attribute.values %}
                {% endfor %}
                {% if upsell.product.attribute.description %}
                        {{ upsell.product.attribute.description }}
                {% endif %}
                {% if upsell.product.attribute.group %}
                {% endif %}
                {% if upsell.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if upsell.product.brand %}
                {{ upsell.product.brand.id }}
                {{ upsell.product.brand.headline }}
                {{ upsell.product.brand.name }}
                {% if upsell.product.brand.flagImportant %} ... {% endif %}
                {% for address in upsell.product.brand.publicContacts %}
                {% endfor %}
                {% for category in upsell.product.brand.categories %}
                {% endfor %}
                {% if upsell.product.brand.code %}
                        {{ upsell.product.brand.code }}
                {% endif %}
                {% if upsell.product.brand.web %}
                        {{ upsell.product.brand.web }}
                {% endif %}
                {% if upsell.product.brand.text %}
                        {{ upsell.product.brand.text }}
                {% endif %}
                {% if upsell.product.brand.image %}
                {% endif %}
                {% if upsell.product.brand.seo %}
                {% endif %}
                {% if upsell.product.brand.contentGrid %}
                        {{ upsell.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.product.image %}
                {{ upsell.product.image.originalHeight }}
                {{ upsell.product.image.originalWidth }}
                {{ upsell.product.image.url }}
                {% if upsell.product.image.alt %}
                        {{ upsell.product.image.alt }}
                {% endif %}
                {% if upsell.product.image.text %}
                        {{ upsell.product.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.product.imageForEnumValueId %}
                {{ upsell.product.imageForEnumValueId.originalHeight }}
                {{ upsell.product.imageForEnumValueId.originalWidth }}
                {{ upsell.product.imageForEnumValueId.url }}
                {% if upsell.product.imageForEnumValueId.alt %}
                        {{ upsell.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if upsell.product.imageForEnumValueId.text %}
                        {{ upsell.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if upsell.product.successor %}
                {{ upsell.product.successor.id }}
                {{ upsell.product.successor.name }}
                {{ upsell.product.successor.trackingId }}
                {{ upsell.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.successor.active %} ... {% endif %}
                {% if upsell.product.successor.compared %} ... {% endif %}
                {% if upsell.product.successor.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.successor.flagNew %} ... {% endif %}
                {% if upsell.product.successor.flagPromo %} ... {% endif %}
                {% if upsell.product.successor.flagSecondHand %} ... {% endif %}
                {% if upsell.product.successor.flagSellout %} ... {% endif %}
                {% if upsell.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.successor.soldSeparately %} ... {% endif %}
                {% for address in upsell.product.successor.publicContacts %}
                {% endfor %}
                {% for attributeInstance in upsell.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.successor.categories %}
                {% endfor %}
                {% for category in upsell.product.successor.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.successor.files %}
                {% endfor %}
                {% for image in upsell.product.successor.images %}
                {% endfor %}
                {% for image in upsell.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.successor.images360 %}
                {% endfor %}
                {% for image in upsell.product.successor.currentImages %}
                {% endfor %}
                {% for image in upsell.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.successor.otherImages %}
                {% endfor %}
                {% for label in upsell.product.successor.labels %}
                {% endfor %}
                {% for productDesigner in upsell.product.successor.configurators %}
                {% endfor %}
                {% for productEnumValue in upsell.product.successor.enumValues %}
                {% endfor %}
                {% for product in upsell.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.successor.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.successor.variants %}
                {% endfor %}
                {% for variant in upsell.product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.successor.videos %}
                {% endfor %}
                {{ upsell.product.successor.trackingIds }}
                {% if upsell.product.successor.currentSubName %}
                        {{ upsell.product.successor.currentSubName }}
                {% endif %}
                {% if upsell.product.successor.nameSuffix %}
                        {{ upsell.product.successor.nameSuffix }}
                {% endif %}
                {% if upsell.product.successor.nameSupplier %}
                        {{ upsell.product.successor.nameSupplier }}
                {% endif %}
                {% if upsell.product.successor.text %}
                        {{ upsell.product.successor.text }}
                {% endif %}
                {% if upsell.product.successor.attribute %}
                {% endif %}
                {% if upsell.product.successor.brand %}
                {% endif %}
                {% if upsell.product.successor.image %}
                {% endif %}
                {% if upsell.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.successor.seo %}
                {% endif %}
                {% if upsell.product.successor.supplier %}
                {% endif %}
                {% if upsell.product.successor.unit %}
                {% endif %}
                {% if upsell.product.successor.variant %}
                {% endif %}
                {% if upsell.product.successor.warranty %}
                {% endif %}
                {% if upsell.product.successor.contentGrid %}
                        {{ upsell.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.product.seo %}
                {% if upsell.product.seo.description %}
                        {{ upsell.product.seo.description }}
                {% endif %}
                {% if upsell.product.seo.keywords %}
                        {{ upsell.product.seo.keywords }}
                {% endif %}
                {% if upsell.product.seo.title %}
                        {{ upsell.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if upsell.product.supplier %}
                {{ upsell.product.supplier.id }}
                {{ upsell.product.supplier.name }}
                {% for address in upsell.product.supplier.publicContacts %}
                {% endfor %}
        {% endif %}
        {% if upsell.product.unit %}
                {{ upsell.product.unit.name }}
        {% endif %}
        {% if upsell.product.variant %}
                {{ upsell.product.variant.id }}
                {{ upsell.product.variant.name }}
                {{ upsell.product.variant.trackingId }}
                {% if upsell.product.variant.active %} ... {% endif %}
                {% if upsell.product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in upsell.product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in upsell.product.variant.enumValues %}
                {% endfor %}
                {% for image in upsell.product.variant.images %}
                {% endfor %}
                {% if upsell.product.variant.legacyRel %}
                        {{ upsell.product.variant.legacyRel }}
                {% endif %}
                {% if upsell.product.variant.image %}
                {% endif %}
        {% endif %}
        {% if upsell.product.warranty %}
                {{ upsell.product.warranty.months }}
        {% endif %}
        {% if upsell.product.contentGrid %}
                {{ upsell.product.contentGrid }}
        {% endif %}
        {{ upsell.group.id }}
        {{ upsell.group.requiredNoteMaximumLength }}
        {{ upsell.group.name }}
        {% if upsell.group.requiredNote %} ... {% endif %}
        {% if upsell.group.requiredUpload %} ... {% endif %}
        {% if upsell.group.singleSelection %} ... {% endif %}
        {% if upsell.group.text %}
                {{ upsell.group.text }}
        {% endif %}
        {% if upsell.group.uploadInput %}
                {{ upsell.group.uploadInput }}
        {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
                {{ upsell.image.originalHeight }}
                {{ upsell.image.originalWidth }}
                {{ upsell.image.url }}
                {% if upsell.image.alt %}
                        {{ upsell.image.alt }}
                {% endif %}
                {% if upsell.image.text %}
                        {{ upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.unit %}
                {{ upsell.unit.name }}
        {% endif %}
{% endfor %}
{{ catalogitem.trackingIds }}

{% if catalogitem.code %}
        {{ catalogitem.code }}
{% endif %}

{% if catalogitem.note %}
        {{ catalogitem.note }}
{% endif %}

{% if catalogitem.variantName %}
        {{ catalogitem.variantName }}
{% endif %}

{% if catalogitem.image %}
        {{ catalogitem.image.originalHeight }}
        {{ catalogitem.image.originalWidth }}
        {{ catalogitem.image.url }}
        {% if catalogitem.image.alt %}
                {{ catalogitem.image.alt }}
        {% endif %}
        {% if catalogitem.image.text %}
                {{ catalogitem.image.text }}
        {% endif %}
{% endif %}

{% if catalogitem.item %}
        {{ catalogitem.item.cartAmountRequiredMultiplier }}
        {{ catalogitem.item.id }}
        {{ catalogitem.item.loyaltyPointsAmount }}
        {{ catalogitem.item.name }}
        {{ catalogitem.item.trackingId }}
        {% if catalogitem.item.digital %} ... {% endif %}
        {% if catalogitem.item.sellable %} ... {% endif %}
        {% if catalogitem.item.service %} ... {% endif %}
        {{ catalogitem.item.availability.availableAmount }}
        {{ catalogitem.item.availability.availableAmountExpectedToStorageRoom }}
        {{ catalogitem.item.availability.availableAmountInShowroom }}
        {{ catalogitem.item.availability.availableAmountInStockroom }}
        {{ catalogitem.item.availability.availableAmountInStorageCenter }}
        {{ catalogitem.item.availability.availableAmountOnWayToStorageRoom }}
        {{ catalogitem.item.availability.availableDemandsAmountFromSupplierToStorageRoom }}
        {{ catalogitem.item.availability.hours }}
        {{ catalogitem.item.availability.totalAmount }}
        {% if catalogitem.item.availability.inShowroom %} ... {% endif %}
        {% if catalogitem.item.availability.inStock %} ... {% endif %}
        {% if catalogitem.item.availability.preorder %} ... {% endif %}
        {% if catalogitem.item.availability.watchdogSupported %} ... {% endif %}
        {% for deliveryOption in catalogitem.item.availability.deliveryOptions %}
                {{ deliveryOption.dateDelivered|date('d. m. Y H:i') }}
                {{ deliveryOption.dateSent|date('d. m. Y H:i') }}
                {{ deliveryOption.orderDeadline|date('d. m. Y H:i') }}
                {% if deliveryOption.timeDelivered %}
                        {{ deliveryOption.timeDelivered }}
                {% endif %}
        {% endfor %}
        {% for expectedAmount in catalogitem.item.availability.availableAmountsExpectedToStorageRoom %}
                {{ expectedAmount.amount }}
        {% endfor %}
        {% for expectedAmount in catalogitem.item.availability.availableAmountsOnWayToStorageRoom %}
                {{ expectedAmount.amount }}
        {% endfor %}
        {% for expectedSupplierAmount in catalogitem.item.availability.availableDemandsFromSupplierToStorageRoom %}
                {{ expectedSupplierAmount.amount }}
                {% if expectedSupplierAmount.expectedDate %}
                        {{ expectedSupplierAmount.expectedDate|date('d. m. Y H:i') }}
                {% endif %}
                {% if expectedSupplierAmount.orderDate %}
                        {{ expectedSupplierAmount.orderDate|date('d. m. Y H:i') }}
                {% endif %}
        {% endfor %}
        {% if catalogitem.item.availability.text %}
                {{ catalogitem.item.availability.text }}
        {% endif %}
        {% if catalogitem.item.availability.dateExpected %}
                {{ catalogitem.item.availability.dateExpected|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogitem.item.availability.deliveryOption %}
                {{ catalogitem.item.availability.deliveryOption.dateDelivered|date('d. m. Y H:i') }}
                {{ catalogitem.item.availability.deliveryOption.dateSent|date('d. m. Y H:i') }}
                {{ catalogitem.item.availability.deliveryOption.orderDeadline|date('d. m. Y H:i') }}
                {% if catalogitem.item.availability.deliveryOption.timeDelivered %}
                        {{ catalogitem.item.availability.deliveryOption.timeDelivered }}
                {% endif %}
        {% endif %}
        {% for availableUpsellGroup in catalogitem.item.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.item.product.id }}
        {{ catalogitem.item.product.name }}
        {{ catalogitem.item.product.trackingId }}
        {{ catalogitem.item.product.dateCreated|date('d. m. Y H:i') }}
        {% if catalogitem.item.product.active %} ... {% endif %}
        {% if catalogitem.item.product.compared %} ... {% endif %}
        {% if catalogitem.item.product.differentVariantPrices %} ... {% endif %}
        {% if catalogitem.item.product.flagNew %} ... {% endif %}
        {% if catalogitem.item.product.flagPromo %} ... {% endif %}
        {% if catalogitem.item.product.flagSecondHand %} ... {% endif %}
        {% if catalogitem.item.product.flagSellout %} ... {% endif %}
        {% if catalogitem.item.product.otherDiscountApplicable %} ... {% endif %}
        {% if catalogitem.item.product.soldSeparately %} ... {% endif %}
        {% for address in catalogitem.item.product.publicContacts %}
                {% if address.city %}
                        {{ address.city }}
                {% endif %}
                {% if address.company %}
                        {{ address.company }}
                {% endif %}
                {% if address.companyId %}
                        {{ address.companyId }}
                {% endif %}
                {% if address.email %}
                        {{ address.email }}
                {% endif %}
                {% if address.phone %}
                        {{ address.phone }}
                {% endif %}
                {% if address.region %}
                        {{ address.region }}
                {% endif %}
                {% if address.street %}
                        {{ address.street }}
                {% endif %}
                {% if address.vatId %}
                        {{ address.vatId }}
                {% endif %}
                {% if address.web %}
                        {{ address.web }}
                {% endif %}
                {% if address.zip %}
                        {{ address.zip }}
                {% endif %}
                {% if address.purpose %}
                {% endif %}
                {% if address.country %}
                {% endif %}
        {% endfor %}
        {% for attributeInstance in catalogitem.item.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in catalogitem.item.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.item.product.category.id }}
        {{ catalogitem.item.product.category.productCount }}
        {{ catalogitem.item.product.category.productInStockCount }}
        {{ catalogitem.item.product.category.totalStockQuantity }}
        {{ catalogitem.item.product.category.headline }}
        {{ catalogitem.item.product.category.menuName }}
        {{ catalogitem.item.product.category.name }}
        {% if catalogitem.item.product.category.flagErotic %} ... {% endif %}
        {% if catalogitem.item.product.category.flagImportant %} ... {% endif %}
        {% if catalogitem.item.product.category.noFollow %} ... {% endif %}
        {% for category in catalogitem.item.product.category.subcategories %}
        {% endfor %}
        {% for video in catalogitem.item.product.category.videos %}
        {% endfor %}
        {{ catalogitem.item.product.category.pathNames }}
        {{ catalogitem.item.product.category.pathIds }}
        {{ catalogitem.item.product.category.templateAttribute }}
        {% if catalogitem.item.product.category.subHeadline %}
                {{ catalogitem.item.product.category.subHeadline }}
        {% endif %}
        {% if catalogitem.item.product.category.text %}
                {{ catalogitem.item.product.category.text }}
        {% endif %}
        {% if catalogitem.item.product.category.parent %}
        {% endif %}
        {% if catalogitem.item.product.category.image %}
        {% endif %}
        {% if catalogitem.item.product.category.contentGrid %}
                {{ catalogitem.item.product.category.contentGrid }}
        {% endif %}
        {% for category in catalogitem.item.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in catalogitem.item.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in catalogitem.item.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.item.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.item.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.item.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.item.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.item.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.item.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for label in catalogitem.item.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productDesigner in catalogitem.item.product.configurators %}
                {{ productDesigner.name }}
                {% if productDesigner.result %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in catalogitem.item.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in catalogitem.item.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for address in product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productDesigner in product.configurators %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for upsell in product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.item.product.rating.count }}
        {% if catalogitem.item.product.rating.voted %} ... {% endif %}
        {% if catalogitem.item.product.rating.average %}
                {{ catalogitem.item.product.rating.average }}
        {% endif %}
        {% for upsell in catalogitem.item.product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.item.product.url }}
        {{ catalogitem.item.product.url.absolute }}
        {{ catalogitem.item.product.url.path }}
        {% for variantChoiceStep in catalogitem.item.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.item.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.item.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.item.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.item.product.variantType.id }}
        {{ catalogitem.item.product.variantType.name }}
        {% for video in catalogitem.item.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.item.product.trackingIds }}
        {% if catalogitem.item.product.currentSubName %}
                {{ catalogitem.item.product.currentSubName }}
        {% endif %}
        {% if catalogitem.item.product.nameSuffix %}
                {{ catalogitem.item.product.nameSuffix }}
        {% endif %}
        {% if catalogitem.item.product.nameSupplier %}
                {{ catalogitem.item.product.nameSupplier }}
        {% endif %}
        {% if catalogitem.item.product.text %}
                {{ catalogitem.item.product.text }}
        {% endif %}
        {% if catalogitem.item.product.attribute %}
                {{ catalogitem.item.product.attribute.name }}
                {{ catalogitem.item.product.attribute.valuesHtml }}
                {% for attributeValueInstance in catalogitem.item.product.attribute.values %}
                {% endfor %}
                {% if catalogitem.item.product.attribute.description %}
                        {{ catalogitem.item.product.attribute.description }}
                {% endif %}
                {% if catalogitem.item.product.attribute.group %}
                {% endif %}
                {% if catalogitem.item.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.product.brand %}
                {{ catalogitem.item.product.brand.id }}
                {{ catalogitem.item.product.brand.headline }}
                {{ catalogitem.item.product.brand.name }}
                {% if catalogitem.item.product.brand.flagImportant %} ... {% endif %}
                {% for address in catalogitem.item.product.brand.publicContacts %}
                {% endfor %}
                {% for category in catalogitem.item.product.brand.categories %}
                {% endfor %}
                {% if catalogitem.item.product.brand.code %}
                        {{ catalogitem.item.product.brand.code }}
                {% endif %}
                {% if catalogitem.item.product.brand.web %}
                        {{ catalogitem.item.product.brand.web }}
                {% endif %}
                {% if catalogitem.item.product.brand.text %}
                        {{ catalogitem.item.product.brand.text }}
                {% endif %}
                {% if catalogitem.item.product.brand.image %}
                {% endif %}
                {% if catalogitem.item.product.brand.seo %}
                {% endif %}
                {% if catalogitem.item.product.brand.contentGrid %}
                        {{ catalogitem.item.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.product.image %}
                {{ catalogitem.item.product.image.originalHeight }}
                {{ catalogitem.item.product.image.originalWidth }}
                {{ catalogitem.item.product.image.url }}
                {% if catalogitem.item.product.image.alt %}
                        {{ catalogitem.item.product.image.alt }}
                {% endif %}
                {% if catalogitem.item.product.image.text %}
                        {{ catalogitem.item.product.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.product.imageForEnumValueId %}
                {{ catalogitem.item.product.imageForEnumValueId.originalHeight }}
                {{ catalogitem.item.product.imageForEnumValueId.originalWidth }}
                {{ catalogitem.item.product.imageForEnumValueId.url }}
                {% if catalogitem.item.product.imageForEnumValueId.alt %}
                        {{ catalogitem.item.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if catalogitem.item.product.imageForEnumValueId.text %}
                        {{ catalogitem.item.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.product.successor %}
                {{ catalogitem.item.product.successor.id }}
                {{ catalogitem.item.product.successor.name }}
                {{ catalogitem.item.product.successor.trackingId }}
                {{ catalogitem.item.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if catalogitem.item.product.successor.active %} ... {% endif %}
                {% if catalogitem.item.product.successor.compared %} ... {% endif %}
                {% if catalogitem.item.product.successor.differentVariantPrices %} ... {% endif %}
                {% if catalogitem.item.product.successor.flagNew %} ... {% endif %}
                {% if catalogitem.item.product.successor.flagPromo %} ... {% endif %}
                {% if catalogitem.item.product.successor.flagSecondHand %} ... {% endif %}
                {% if catalogitem.item.product.successor.flagSellout %} ... {% endif %}
                {% if catalogitem.item.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if catalogitem.item.product.successor.soldSeparately %} ... {% endif %}
                {% for address in catalogitem.item.product.successor.publicContacts %}
                {% endfor %}
                {% for attributeInstance in catalogitem.item.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogitem.item.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogitem.item.product.successor.categories %}
                {% endfor %}
                {% for category in catalogitem.item.product.successor.otherCategories %}
                {% endfor %}
                {% for file in catalogitem.item.product.successor.files %}
                {% endfor %}
                {% for image in catalogitem.item.product.successor.images %}
                {% endfor %}
                {% for image in catalogitem.item.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogitem.item.product.successor.images360 %}
                {% endfor %}
                {% for image in catalogitem.item.product.successor.currentImages %}
                {% endfor %}
                {% for image in catalogitem.item.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogitem.item.product.successor.otherImages %}
                {% endfor %}
                {% for label in catalogitem.item.product.successor.labels %}
                {% endfor %}
                {% for productDesigner in catalogitem.item.product.successor.configurators %}
                {% endfor %}
                {% for productEnumValue in catalogitem.item.product.successor.enumValues %}
                {% endfor %}
                {% for product in catalogitem.item.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogitem.item.product.successor.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogitem.item.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogitem.item.product.successor.currentVariants %}
                {% endfor %}
                {% for variant in catalogitem.item.product.successor.variants %}
                {% endfor %}
                {% for variant in catalogitem.item.product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogitem.item.product.successor.videos %}
                {% endfor %}
                {{ catalogitem.item.product.successor.trackingIds }}
                {% if catalogitem.item.product.successor.currentSubName %}
                        {{ catalogitem.item.product.successor.currentSubName }}
                {% endif %}
                {% if catalogitem.item.product.successor.nameSuffix %}
                        {{ catalogitem.item.product.successor.nameSuffix }}
                {% endif %}
                {% if catalogitem.item.product.successor.nameSupplier %}
                        {{ catalogitem.item.product.successor.nameSupplier }}
                {% endif %}
                {% if catalogitem.item.product.successor.text %}
                        {{ catalogitem.item.product.successor.text }}
                {% endif %}
                {% if catalogitem.item.product.successor.attribute %}
                {% endif %}
                {% if catalogitem.item.product.successor.brand %}
                {% endif %}
                {% if catalogitem.item.product.successor.image %}
                {% endif %}
                {% if catalogitem.item.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if catalogitem.item.product.successor.seo %}
                {% endif %}
                {% if catalogitem.item.product.successor.supplier %}
                {% endif %}
                {% if catalogitem.item.product.successor.unit %}
                {% endif %}
                {% if catalogitem.item.product.successor.variant %}
                {% endif %}
                {% if catalogitem.item.product.successor.warranty %}
                {% endif %}
                {% if catalogitem.item.product.successor.contentGrid %}
                        {{ catalogitem.item.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.product.seo %}
                {% if catalogitem.item.product.seo.description %}
                        {{ catalogitem.item.product.seo.description }}
                {% endif %}
                {% if catalogitem.item.product.seo.keywords %}
                        {{ catalogitem.item.product.seo.keywords }}
                {% endif %}
                {% if catalogitem.item.product.seo.title %}
                        {{ catalogitem.item.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.product.supplier %}
                {{ catalogitem.item.product.supplier.id }}
                {{ catalogitem.item.product.supplier.name }}
                {% for address in catalogitem.item.product.supplier.publicContacts %}
                {% endfor %}
        {% endif %}
        {% if catalogitem.item.product.unit %}
                {{ catalogitem.item.product.unit.name }}
        {% endif %}
        {% if catalogitem.item.product.variant %}
                {{ catalogitem.item.product.variant.id }}
                {{ catalogitem.item.product.variant.name }}
                {{ catalogitem.item.product.variant.trackingId }}
                {% if catalogitem.item.product.variant.active %} ... {% endif %}
                {% if catalogitem.item.product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in catalogitem.item.product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in catalogitem.item.product.variant.enumValues %}
                {% endfor %}
                {% for image in catalogitem.item.product.variant.images %}
                {% endfor %}
                {% for upsell in catalogitem.item.product.variant.availableUpsells %}
                {% endfor %}
                {% if catalogitem.item.product.variant.legacyRel %}
                        {{ catalogitem.item.product.variant.legacyRel }}
                {% endif %}
                {% if catalogitem.item.product.variant.image %}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.product.warranty %}
                {{ catalogitem.item.product.warranty.months }}
        {% endif %}
        {% if catalogitem.item.product.contentGrid %}
                {{ catalogitem.item.product.contentGrid }}
        {% endif %}
        {% for upsell in catalogitem.item.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathNames }}
                {{ upsell.category.pathIds }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for address in upsell.product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productDesigner in upsell.product.configurators %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.item.trackingIds }}
        {{ catalogitem.item.storageLocations }}
        {% if catalogitem.item.packageWeight %}
                {{ catalogitem.item.packageWeight }}
        {% endif %}
        {% if catalogitem.item.code %}
                {{ catalogitem.item.code }}
        {% endif %}
        {% if catalogitem.item.packageHeight %}
                {{ catalogitem.item.packageHeight }}
        {% endif %}
        {% if catalogitem.item.packageLength %}
                {{ catalogitem.item.packageLength }}
        {% endif %}
        {% if catalogitem.item.packageWidth %}
                {{ catalogitem.item.packageWidth }}
        {% endif %}
        {% if catalogitem.item.bundle %}
                {% if catalogitem.item.bundle.multiPack %} ... {% endif %}
                {% if catalogitem.item.bundle.price %}
                        {{ catalogitem.item.bundle.price.vatRate }}
                        {% if catalogitem.item.bundle.price.discountPercent %}
                                {{ catalogitem.item.bundle.price.discountPercent }}
                        {% endif %}
                        {% if catalogitem.item.bundle.price.discountValidTo %}
                                {{ catalogitem.item.bundle.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if catalogitem.item.bundle.price.beforeDiscount %}
                        {% endif %}
                        {% if catalogitem.item.bundle.price.discount %}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.cheapestDelivery %}
                {{ catalogitem.item.cheapestDelivery.inputId }}
                {{ catalogitem.item.cheapestDelivery.name }}
                {{ catalogitem.item.cheapestDelivery.vatRate }}
                {% if catalogitem.item.cheapestDelivery.branchRequired %} ... {% endif %}
                {% if catalogitem.item.cheapestDelivery.currier %} ... {% endif %}
                {% if catalogitem.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                {% if catalogitem.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                {% if catalogitem.item.cheapestDelivery.digital %} ... {% endif %}
                {% if catalogitem.item.cheapestDelivery.free %} ... {% endif %}
                {% if catalogitem.item.cheapestDelivery.pickup %} ... {% endif %}
                {% if catalogitem.item.cheapestDelivery.selected %} ... {% endif %}
                {{ catalogitem.item.cheapestDelivery.price.vatRate }}
                {% if catalogitem.item.cheapestDelivery.price.discountPercent %}
                        {{ catalogitem.item.cheapestDelivery.price.discountPercent }}
                {% endif %}
                {% if catalogitem.item.cheapestDelivery.price.discountValidTo %}
                        {{ catalogitem.item.cheapestDelivery.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogitem.item.cheapestDelivery.price.beforeDiscount %}
                {% endif %}
                {% if catalogitem.item.cheapestDelivery.price.discount %}
                {% endif %}
                {% if catalogitem.item.cheapestDelivery.text %}
                        {{ catalogitem.item.cheapestDelivery.text }}
                {% endif %}
                {% if catalogitem.item.cheapestDelivery.branch %}
                        {{ catalogitem.item.cheapestDelivery.branch.code }}
                        {{ catalogitem.item.cheapestDelivery.branch.name }}
                {% endif %}
                {% if catalogitem.item.cheapestDelivery.carrier %}
                        {{ catalogitem.item.cheapestDelivery.carrier.code }}
                        {{ catalogitem.item.cheapestDelivery.carrier.name }}
                {% endif %}
                {% if catalogitem.item.cheapestDelivery.deliveryDate %}
                        {{ catalogitem.item.cheapestDelivery.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                        {{ catalogitem.item.cheapestDelivery.deliveryDate.dateSent|date('d. m. Y H:i') }}
                        {{ catalogitem.item.cheapestDelivery.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                        {% if catalogitem.item.cheapestDelivery.deliveryDate.timeDelivered %}
                                {{ catalogitem.item.cheapestDelivery.deliveryDate.timeDelivered }}
                        {% endif %}
                {% endif %}
                {% if catalogitem.item.cheapestDelivery.packageType %}
                        {{ catalogitem.item.cheapestDelivery.packageType.code }}
                {% endif %}
                {% if catalogitem.item.cheapestDelivery.image %}
                        {{ catalogitem.item.cheapestDelivery.image.originalHeight }}
                        {{ catalogitem.item.cheapestDelivery.image.originalWidth }}
                        {{ catalogitem.item.cheapestDelivery.image.url }}
                        {% if catalogitem.item.cheapestDelivery.image.alt %}
                                {{ catalogitem.item.cheapestDelivery.image.alt }}
                        {% endif %}
                        {% if catalogitem.item.cheapestDelivery.image.text %}
                                {{ catalogitem.item.cheapestDelivery.image.text }}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.freeDelivery %}
                {{ catalogitem.item.freeDelivery.name }}
                {{ catalogitem.item.freeDelivery.vatRate }}
                {% if catalogitem.item.freeDelivery.deliveryAddressRequired %} ... {% endif %}
                {{ catalogitem.item.freeDelivery.payment.inputId }}
                {{ catalogitem.item.freeDelivery.payment.name }}
                {{ catalogitem.item.freeDelivery.payment.url }}
                {{ catalogitem.item.freeDelivery.payment.vatRate }}
                {% if catalogitem.item.freeDelivery.payment.free %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.payment.inAdvance %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.payment.selected %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.payment.code %}
                        {{ catalogitem.item.freeDelivery.payment.code }}
                {% endif %}
                {% if catalogitem.item.freeDelivery.payment.vs %}
                        {{ catalogitem.item.freeDelivery.payment.vs }}
                {% endif %}
                {% if catalogitem.item.freeDelivery.payment.qRCodeHTML %}
                        {{ catalogitem.item.freeDelivery.payment.qRCodeHTML }}
                {% endif %}
                {% if catalogitem.item.freeDelivery.payment.text %}
                        {{ catalogitem.item.freeDelivery.payment.text }}
                {% endif %}
                {% if catalogitem.item.freeDelivery.payment.bankAccount %}
                {% endif %}
                {% if catalogitem.item.freeDelivery.payment.image %}
                {% endif %}
                {{ catalogitem.item.freeDelivery.transport.inputId }}
                {{ catalogitem.item.freeDelivery.transport.name }}
                {{ catalogitem.item.freeDelivery.transport.vatRate }}
                {% if catalogitem.item.freeDelivery.transport.branchRequired %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.transport.currier %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.transport.dateGuaranteed %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.transport.deliveryToAddress %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.transport.digital %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.transport.free %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.transport.pickup %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.transport.selected %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.transport.text %}
                        {{ catalogitem.item.freeDelivery.transport.text }}
                {% endif %}
                {% if catalogitem.item.freeDelivery.transport.branch %}
                {% endif %}
                {% if catalogitem.item.freeDelivery.transport.carrier %}
                {% endif %}
                {% if catalogitem.item.freeDelivery.transport.deliveryDate %}
                {% endif %}
                {% if catalogitem.item.freeDelivery.transport.packageType %}
                {% endif %}
                {% if catalogitem.item.freeDelivery.transport.image %}
                {% endif %}
                {{ catalogitem.item.freeDelivery.price.vatRate }}
                {% if catalogitem.item.freeDelivery.price.discountPercent %}
                        {{ catalogitem.item.freeDelivery.price.discountPercent }}
                {% endif %}
                {% if catalogitem.item.freeDelivery.price.discountValidTo %}
                        {{ catalogitem.item.freeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogitem.item.freeDelivery.price.beforeDiscount %}
                {% endif %}
                {% if catalogitem.item.freeDelivery.price.discount %}
                {% endif %}
                {% if catalogitem.item.freeDelivery.id %}
                        {{ catalogitem.item.freeDelivery.id }}
                {% endif %}
                {% if catalogitem.item.freeDelivery.freeLimit %}
                        {{ catalogitem.item.freeDelivery.freeLimit.percent }}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.closestFreeDelivery %}
                {{ catalogitem.item.closestFreeDelivery.name }}
                {{ catalogitem.item.closestFreeDelivery.vatRate }}
                {% if catalogitem.item.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
                {{ catalogitem.item.closestFreeDelivery.payment.inputId }}
                {{ catalogitem.item.closestFreeDelivery.payment.name }}
                {{ catalogitem.item.closestFreeDelivery.payment.url }}
                {{ catalogitem.item.closestFreeDelivery.payment.vatRate }}
                {% if catalogitem.item.closestFreeDelivery.payment.free %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.payment.selected %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.payment.code %}
                        {{ catalogitem.item.closestFreeDelivery.payment.code }}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.payment.vs %}
                        {{ catalogitem.item.closestFreeDelivery.payment.vs }}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.payment.qRCodeHTML %}
                        {{ catalogitem.item.closestFreeDelivery.payment.qRCodeHTML }}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.payment.text %}
                        {{ catalogitem.item.closestFreeDelivery.payment.text }}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.payment.bankAccount %}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.payment.image %}
                {% endif %}
                {{ catalogitem.item.closestFreeDelivery.transport.inputId }}
                {{ catalogitem.item.closestFreeDelivery.transport.name }}
                {{ catalogitem.item.closestFreeDelivery.transport.vatRate }}
                {% if catalogitem.item.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.currier %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.digital %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.free %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.pickup %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.selected %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.text %}
                        {{ catalogitem.item.closestFreeDelivery.transport.text }}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.branch %}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.carrier %}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.deliveryDate %}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.packageType %}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.image %}
                {% endif %}
                {{ catalogitem.item.closestFreeDelivery.price.vatRate }}
                {% if catalogitem.item.closestFreeDelivery.price.discountPercent %}
                        {{ catalogitem.item.closestFreeDelivery.price.discountPercent }}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.price.discountValidTo %}
                        {{ catalogitem.item.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.price.beforeDiscount %}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.price.discount %}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.id %}
                        {{ catalogitem.item.closestFreeDelivery.id }}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.freeLimit %}
                        {{ catalogitem.item.closestFreeDelivery.freeLimit.percent }}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.packageDimensions %}
                {{ catalogitem.item.packageDimensions }}
                {{ catalogitem.item.packageDimensions.unit }}
                {{ catalogitem.item.packageDimensions.height }}
                {{ catalogitem.item.packageDimensions.length }}
                {{ catalogitem.item.packageDimensions.width }}
        {% endif %}
        {% if catalogitem.item.image %}
                {{ catalogitem.item.image.originalHeight }}
                {{ catalogitem.item.image.originalWidth }}
                {{ catalogitem.item.image.url }}
                {% if catalogitem.item.image.alt %}
                        {{ catalogitem.item.image.alt }}
                {% endif %}
                {% if catalogitem.item.image.text %}
                        {{ catalogitem.item.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.price %}
                {{ catalogitem.item.price.vatRate }}
                {{ catalogitem.item.price.current.currency }}
                {{ catalogitem.item.price.current.formatted }}
                {{ catalogitem.item.price.current.value }}
                {% if catalogitem.item.price.current.perUnit %}
                {% endif %}
                {% if catalogitem.item.price.discountPercent %}
                        {{ catalogitem.item.price.discountPercent }}
                {% endif %}
                {% if catalogitem.item.price.discountValidTo %}
                        {{ catalogitem.item.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogitem.item.price.beforeDiscount %}
                        {{ catalogitem.item.price.beforeDiscount.currency }}
                        {{ catalogitem.item.price.beforeDiscount.formatted }}
                        {{ catalogitem.item.price.beforeDiscount.value }}
                        {% if catalogitem.item.price.beforeDiscount.perUnit %}
                        {% endif %}
                {% endif %}
                {% if catalogitem.item.price.discount %}
                        {{ catalogitem.item.price.discount.currency }}
                        {{ catalogitem.item.price.discount.formatted }}
                        {{ catalogitem.item.price.discount.value }}
                        {% if catalogitem.item.price.discount.perUnit %}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.url %}
                {{ catalogitem.item.url }}
                {{ catalogitem.item.url.absolute }}
                {{ catalogitem.item.url.path }}
        {% endif %}
        {% if catalogitem.item.variant %}
                {{ catalogitem.item.variant.id }}
                {{ catalogitem.item.variant.name }}
                {{ catalogitem.item.variant.trackingId }}
                {% if catalogitem.item.variant.active %} ... {% endif %}
                {% if catalogitem.item.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in catalogitem.item.variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in catalogitem.item.variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in catalogitem.item.variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.item.variant.product.id }}
                {{ catalogitem.item.variant.product.name }}
                {{ catalogitem.item.variant.product.trackingId }}
                {{ catalogitem.item.variant.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogitem.item.variant.product.active %} ... {% endif %}
                {% if catalogitem.item.variant.product.compared %} ... {% endif %}
                {% if catalogitem.item.variant.product.differentVariantPrices %} ... {% endif %}
                {% if catalogitem.item.variant.product.flagNew %} ... {% endif %}
                {% if catalogitem.item.variant.product.flagPromo %} ... {% endif %}
                {% if catalogitem.item.variant.product.flagSecondHand %} ... {% endif %}
                {% if catalogitem.item.variant.product.flagSellout %} ... {% endif %}
                {% if catalogitem.item.variant.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogitem.item.variant.product.soldSeparately %} ... {% endif %}
                {% for address in catalogitem.item.variant.product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in catalogitem.item.variant.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogitem.item.variant.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogitem.item.variant.product.categories %}
                {% endfor %}
                {% for category in catalogitem.item.variant.product.otherCategories %}
                {% endfor %}
                {% for file in catalogitem.item.variant.product.files %}
                {% endfor %}
                {% for image in catalogitem.item.variant.product.images %}
                {% endfor %}
                {% for image in catalogitem.item.variant.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogitem.item.variant.product.images360 %}
                {% endfor %}
                {% for image in catalogitem.item.variant.product.currentImages %}
                {% endfor %}
                {% for image in catalogitem.item.variant.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogitem.item.variant.product.otherImages %}
                {% endfor %}
                {% for label in catalogitem.item.variant.product.labels %}
                {% endfor %}
                {% for productDesigner in catalogitem.item.variant.product.configurators %}
                {% endfor %}
                {% for productEnumValue in catalogitem.item.variant.product.enumValues %}
                {% endfor %}
                {% for product in catalogitem.item.variant.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogitem.item.variant.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogitem.item.variant.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogitem.item.variant.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogitem.item.variant.product.variants %}
                {% endfor %}
                {% for variant in catalogitem.item.variant.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogitem.item.variant.product.videos %}
                {% endfor %}
                {{ catalogitem.item.variant.product.trackingIds }}
                {% if catalogitem.item.variant.product.currentSubName %}
                        {{ catalogitem.item.variant.product.currentSubName }}
                {% endif %}
                {% if catalogitem.item.variant.product.nameSuffix %}
                        {{ catalogitem.item.variant.product.nameSuffix }}
                {% endif %}
                {% if catalogitem.item.variant.product.nameSupplier %}
                        {{ catalogitem.item.variant.product.nameSupplier }}
                {% endif %}
                {% if catalogitem.item.variant.product.text %}
                        {{ catalogitem.item.variant.product.text }}
                {% endif %}
                {% if catalogitem.item.variant.product.attribute %}
                {% endif %}
                {% if catalogitem.item.variant.product.brand %}
                {% endif %}
                {% if catalogitem.item.variant.product.image %}
                {% endif %}
                {% if catalogitem.item.variant.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogitem.item.variant.product.successor %}
                {% endif %}
                {% if catalogitem.item.variant.product.seo %}
                {% endif %}
                {% if catalogitem.item.variant.product.supplier %}
                {% endif %}
                {% if catalogitem.item.variant.product.unit %}
                {% endif %}
                {% if catalogitem.item.variant.product.warranty %}
                {% endif %}
                {% if catalogitem.item.variant.product.contentGrid %}
                        {{ catalogitem.item.variant.product.contentGrid }}
                {% endif %}
                {% for upsell in catalogitem.item.variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.item.variant.url }}
                {{ catalogitem.item.variant.url.absolute }}
                {{ catalogitem.item.variant.url.path }}
                {% if catalogitem.item.variant.legacyRel %}
                        {{ catalogitem.item.variant.legacyRel }}
                {% endif %}
                {% if catalogitem.item.variant.image %}
                        {{ catalogitem.item.variant.image.originalHeight }}
                        {{ catalogitem.item.variant.image.originalWidth }}
                        {{ catalogitem.item.variant.image.url }}
                        {% if catalogitem.item.variant.image.alt %}
                                {{ catalogitem.item.variant.image.alt }}
                        {% endif %}
                        {% if catalogitem.item.variant.image.text %}
                                {{ catalogitem.item.variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endif %}
{% endif %}

{% if catalogitem.product %}
        {{ catalogitem.product.id }}
        {{ catalogitem.product.name }}
        {{ catalogitem.product.trackingId }}
        {{ catalogitem.product.dateCreated|date('d. m. Y H:i') }}
        {% if catalogitem.product.active %} ... {% endif %}
        {% if catalogitem.product.compared %} ... {% endif %}
        {% if catalogitem.product.differentVariantPrices %} ... {% endif %}
        {% if catalogitem.product.flagNew %} ... {% endif %}
        {% if catalogitem.product.flagPromo %} ... {% endif %}
        {% if catalogitem.product.flagSecondHand %} ... {% endif %}
        {% if catalogitem.product.flagSellout %} ... {% endif %}
        {% if catalogitem.product.otherDiscountApplicable %} ... {% endif %}
        {% if catalogitem.product.soldSeparately %} ... {% endif %}
        {% for address in catalogitem.product.publicContacts %}
                {{ address.name }}
                {% if address.name.first %}
                        {{ address.name.first }}
                {% endif %}
                {% if address.name.last %}
                        {{ address.name.last }}
                {% endif %}
                {% if address.city %}
                        {{ address.city }}
                {% endif %}
                {% if address.company %}
                        {{ address.company }}
                {% endif %}
                {% if address.companyId %}
                        {{ address.companyId }}
                {% endif %}
                {% if address.email %}
                        {{ address.email }}
                {% endif %}
                {% if address.phone %}
                        {{ address.phone }}
                {% endif %}
                {% if address.region %}
                        {{ address.region }}
                {% endif %}
                {% if address.street %}
                        {{ address.street }}
                {% endif %}
                {% if address.vatId %}
                        {{ address.vatId }}
                {% endif %}
                {% if address.web %}
                        {{ address.web }}
                {% endif %}
                {% if address.zip %}
                        {{ address.zip }}
                {% endif %}
                {% if address.purpose %}
                        {{ address.purpose.headline }}
                {% endif %}
                {% if address.country %}
                        {{ address.country.code }}
                        {{ address.country.flagCircleUrl }}
                        {{ address.country.flagUrl }}
                        {{ address.country.name }}
                        {% if address.country.eU %} ... {% endif %}
                {% endif %}
        {% endfor %}
        {% for attributeInstance in catalogitem.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                        {{ attributeValueInstance.values }}
                        {{ attributeValueInstance.nameHtml }}
                        {% if attributeValueInstance.colorCode %}
                                {{ attributeValueInstance.colorCode }}
                        {% endif %}
                        {% if attributeValueInstance.text %}
                                {{ attributeValueInstance.text }}
                        {% endif %}
                        {% if attributeValueInstance.unit %}
                                {{ attributeValueInstance.unit }}
                        {% endif %}
                        {% if attributeValueInstance.image %}
                        {% endif %}
                        {% if attributeValueInstance.name %}
                                {{ attributeValueInstance.name }}
                        {% endif %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                        {{ attributeInstance.group.id }}
                {% endif %}
                {% if attributeInstance.image %}
                        {{ attributeInstance.image.originalHeight }}
                        {{ attributeInstance.image.originalWidth }}
                        {{ attributeInstance.image.url }}
                        {% if attributeInstance.image.alt %}
                                {{ attributeInstance.image.alt }}
                        {% endif %}
                        {% if attributeInstance.image.text %}
                                {{ attributeInstance.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in catalogitem.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.product.category.id }}
        {{ catalogitem.product.category.productCount }}
        {{ catalogitem.product.category.productInStockCount }}
        {{ catalogitem.product.category.totalStockQuantity }}
        {{ catalogitem.product.category.headline }}
        {{ catalogitem.product.category.menuName }}
        {{ catalogitem.product.category.name }}
        {% if catalogitem.product.category.flagErotic %} ... {% endif %}
        {% if catalogitem.product.category.flagImportant %} ... {% endif %}
        {% if catalogitem.product.category.noFollow %} ... {% endif %}
        {% for category in catalogitem.product.category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.product.category.url }}
        {{ catalogitem.product.category.url.absolute }}
        {{ catalogitem.product.category.url.path }}
        {{ catalogitem.product.category.variantType.id }}
        {{ catalogitem.product.category.variantType.name }}
        {% for video in catalogitem.product.category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.product.category.pathNames }}
        {{ catalogitem.product.category.pathIds }}
        {{ catalogitem.product.category.templateAttribute }}
        {% if catalogitem.product.category.subHeadline %}
                {{ catalogitem.product.category.subHeadline }}
        {% endif %}
        {% if catalogitem.product.category.text %}
                {{ catalogitem.product.category.text }}
        {% endif %}
        {% if catalogitem.product.category.parent %}
                {{ catalogitem.product.category.parent.id }}
                {{ catalogitem.product.category.parent.productCount }}
                {{ catalogitem.product.category.parent.productInStockCount }}
                {{ catalogitem.product.category.parent.totalStockQuantity }}
                {{ catalogitem.product.category.parent.headline }}
                {{ catalogitem.product.category.parent.menuName }}
                {{ catalogitem.product.category.parent.name }}
                {% if catalogitem.product.category.parent.flagErotic %} ... {% endif %}
                {% if catalogitem.product.category.parent.flagImportant %} ... {% endif %}
                {% if catalogitem.product.category.parent.noFollow %} ... {% endif %}
                {% for category in catalogitem.product.category.parent.subcategories %}
                {% endfor %}
                {% for video in catalogitem.product.category.parent.videos %}
                {% endfor %}
                {{ catalogitem.product.category.parent.pathNames }}
                {{ catalogitem.product.category.parent.pathIds }}
                {{ catalogitem.product.category.parent.templateAttribute }}
                {% if catalogitem.product.category.parent.subHeadline %}
                        {{ catalogitem.product.category.parent.subHeadline }}
                {% endif %}
                {% if catalogitem.product.category.parent.text %}
                        {{ catalogitem.product.category.parent.text }}
                {% endif %}
                {% if catalogitem.product.category.parent.image %}
                {% endif %}
                {% if catalogitem.product.category.parent.contentGrid %}
                        {{ catalogitem.product.category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.category.image %}
                {{ catalogitem.product.category.image.originalHeight }}
                {{ catalogitem.product.category.image.originalWidth }}
                {{ catalogitem.product.category.image.url }}
                {% if catalogitem.product.category.image.alt %}
                        {{ catalogitem.product.category.image.alt }}
                {% endif %}
                {% if catalogitem.product.category.image.text %}
                        {{ catalogitem.product.category.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.category.contentGrid %}
                {{ catalogitem.product.category.contentGrid }}
        {% endif %}
        {% for category in catalogitem.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathNames }}
                        {{ category.pathIds }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ category.url }}
                {{ category.url.absolute }}
                {{ category.url.path }}
                {{ category.variantType.id }}
                {{ category.variantType.name }}
                {% for video in category.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                        {{ category.parent.id }}
                        {{ category.parent.productCount }}
                        {{ category.parent.productInStockCount }}
                        {{ category.parent.totalStockQuantity }}
                        {{ category.parent.headline }}
                        {{ category.parent.menuName }}
                        {{ category.parent.name }}
                        {% if category.parent.flagErotic %} ... {% endif %}
                        {% if category.parent.flagImportant %} ... {% endif %}
                        {% if category.parent.noFollow %} ... {% endif %}
                        {% for category in category.parent.subcategories %}
                        {% endfor %}
                        {% for video in category.parent.videos %}
                        {% endfor %}
                        {{ category.parent.pathNames }}
                        {{ category.parent.pathIds }}
                        {{ category.parent.templateAttribute }}
                        {% if category.parent.subHeadline %}
                                {{ category.parent.subHeadline }}
                        {% endif %}
                        {% if category.parent.text %}
                                {{ category.parent.text }}
                        {% endif %}
                        {% if category.parent.image %}
                        {% endif %}
                        {% if category.parent.contentGrid %}
                                {{ category.parent.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if category.image %}
                        {{ category.image.originalHeight }}
                        {{ category.image.originalWidth }}
                        {{ category.image.url }}
                        {% if category.image.alt %}
                                {{ category.image.alt }}
                        {% endif %}
                        {% if category.image.text %}
                                {{ category.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in catalogitem.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathNames }}
                        {{ category.pathIds }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ category.url }}
                {{ category.url.absolute }}
                {{ category.url.path }}
                {{ category.variantType.id }}
                {{ category.variantType.name }}
                {% for video in category.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                        {{ category.parent.id }}
                        {{ category.parent.productCount }}
                        {{ category.parent.productInStockCount }}
                        {{ category.parent.totalStockQuantity }}
                        {{ category.parent.headline }}
                        {{ category.parent.menuName }}
                        {{ category.parent.name }}
                        {% if category.parent.flagErotic %} ... {% endif %}
                        {% if category.parent.flagImportant %} ... {% endif %}
                        {% if category.parent.noFollow %} ... {% endif %}
                        {% for category in category.parent.subcategories %}
                        {% endfor %}
                        {% for video in category.parent.videos %}
                        {% endfor %}
                        {{ category.parent.pathNames }}
                        {{ category.parent.pathIds }}
                        {{ category.parent.templateAttribute }}
                        {% if category.parent.subHeadline %}
                                {{ category.parent.subHeadline }}
                        {% endif %}
                        {% if category.parent.text %}
                                {{ category.parent.text }}
                        {% endif %}
                        {% if category.parent.image %}
                        {% endif %}
                        {% if category.parent.contentGrid %}
                                {{ category.parent.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if category.image %}
                        {{ category.image.originalHeight }}
                        {{ category.image.originalWidth }}
                        {{ category.image.url }}
                        {% if category.image.alt %}
                                {{ category.image.alt }}
                        {% endif %}
                        {% if category.image.text %}
                                {{ category.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in catalogitem.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.usage.archive %} ... {% endif %}
                {% if file.usage.graphic %} ... {% endif %}
                {% if file.usage.manual %} ... {% endif %}
                {% if file.usage.other %} ... {% endif %}
                {% if file.usage.sound %} ... {% endif %}
                {% if file.usage.specification %} ... {% endif %}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.product.item.cartAmountRequiredMultiplier }}
        {{ catalogitem.product.item.id }}
        {{ catalogitem.product.item.loyaltyPointsAmount }}
        {{ catalogitem.product.item.name }}
        {{ catalogitem.product.item.trackingId }}
        {% if catalogitem.product.item.digital %} ... {% endif %}
        {% if catalogitem.product.item.sellable %} ... {% endif %}
        {% if catalogitem.product.item.service %} ... {% endif %}
        {{ catalogitem.product.item.availability.availableAmount }}
        {{ catalogitem.product.item.availability.availableAmountExpectedToStorageRoom }}
        {{ catalogitem.product.item.availability.availableAmountInShowroom }}
        {{ catalogitem.product.item.availability.availableAmountInStockroom }}
        {{ catalogitem.product.item.availability.availableAmountInStorageCenter }}
        {{ catalogitem.product.item.availability.availableAmountOnWayToStorageRoom }}
        {{ catalogitem.product.item.availability.availableDemandsAmountFromSupplierToStorageRoom }}
        {{ catalogitem.product.item.availability.hours }}
        {{ catalogitem.product.item.availability.totalAmount }}
        {% if catalogitem.product.item.availability.inShowroom %} ... {% endif %}
        {% if catalogitem.product.item.availability.inStock %} ... {% endif %}
        {% if catalogitem.product.item.availability.preorder %} ... {% endif %}
        {% if catalogitem.product.item.availability.watchdogSupported %} ... {% endif %}
        {% for deliveryOption in catalogitem.product.item.availability.deliveryOptions %}
        {% endfor %}
        {% for expectedAmount in catalogitem.product.item.availability.availableAmountsExpectedToStorageRoom %}
        {% endfor %}
        {% for expectedAmount in catalogitem.product.item.availability.availableAmountsOnWayToStorageRoom %}
        {% endfor %}
        {% for expectedSupplierAmount in catalogitem.product.item.availability.availableDemandsFromSupplierToStorageRoom %}
        {% endfor %}
        {% if catalogitem.product.item.availability.text %}
                {{ catalogitem.product.item.availability.text }}
        {% endif %}
        {% if catalogitem.product.item.availability.dateExpected %}
                {{ catalogitem.product.item.availability.dateExpected|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogitem.product.item.availability.deliveryOption %}
        {% endif %}
        {% for availableUpsellGroup in catalogitem.product.item.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for upsell in catalogitem.product.item.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.product.item.trackingIds }}
        {{ catalogitem.product.item.storageLocations }}
        {% if catalogitem.product.item.packageWeight %}
                {{ catalogitem.product.item.packageWeight }}
        {% endif %}
        {% if catalogitem.product.item.code %}
                {{ catalogitem.product.item.code }}
        {% endif %}
        {% if catalogitem.product.item.packageHeight %}
                {{ catalogitem.product.item.packageHeight }}
        {% endif %}
        {% if catalogitem.product.item.packageLength %}
                {{ catalogitem.product.item.packageLength }}
        {% endif %}
        {% if catalogitem.product.item.packageWidth %}
                {{ catalogitem.product.item.packageWidth }}
        {% endif %}
        {% if catalogitem.product.item.bundle %}
                {% if catalogitem.product.item.bundle.multiPack %} ... {% endif %}
                {% if catalogitem.product.item.bundle.price %}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.item.cheapestDelivery %}
                {{ catalogitem.product.item.cheapestDelivery.inputId }}
                {{ catalogitem.product.item.cheapestDelivery.name }}
                {{ catalogitem.product.item.cheapestDelivery.vatRate }}
                {% if catalogitem.product.item.cheapestDelivery.branchRequired %} ... {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.currier %} ... {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.digital %} ... {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.free %} ... {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.pickup %} ... {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.selected %} ... {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.text %}
                        {{ catalogitem.product.item.cheapestDelivery.text }}
                {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.branch %}
                {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.carrier %}
                {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.deliveryDate %}
                {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.packageType %}
                {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.image %}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.item.freeDelivery %}
                {{ catalogitem.product.item.freeDelivery.name }}
                {{ catalogitem.product.item.freeDelivery.vatRate }}
                {% if catalogitem.product.item.freeDelivery.deliveryAddressRequired %} ... {% endif %}
                {% if catalogitem.product.item.freeDelivery.id %}
                        {{ catalogitem.product.item.freeDelivery.id }}
                {% endif %}
                {% if catalogitem.product.item.freeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.item.closestFreeDelivery %}
                {{ catalogitem.product.item.closestFreeDelivery.name }}
                {{ catalogitem.product.item.closestFreeDelivery.vatRate }}
                {% if catalogitem.product.item.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
                {% if catalogitem.product.item.closestFreeDelivery.id %}
                        {{ catalogitem.product.item.closestFreeDelivery.id }}
                {% endif %}
                {% if catalogitem.product.item.closestFreeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.item.packageDimensions %}
                {{ catalogitem.product.item.packageDimensions }}
                {{ catalogitem.product.item.packageDimensions.unit }}
                {{ catalogitem.product.item.packageDimensions.height }}
                {{ catalogitem.product.item.packageDimensions.length }}
                {{ catalogitem.product.item.packageDimensions.width }}
        {% endif %}
        {% if catalogitem.product.item.image %}
                {{ catalogitem.product.item.image.originalHeight }}
                {{ catalogitem.product.item.image.originalWidth }}
                {{ catalogitem.product.item.image.url }}
                {% if catalogitem.product.item.image.alt %}
                        {{ catalogitem.product.item.image.alt }}
                {% endif %}
                {% if catalogitem.product.item.image.text %}
                        {{ catalogitem.product.item.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.item.price %}
                {{ catalogitem.product.item.price.vatRate }}
                {% if catalogitem.product.item.price.discountPercent %}
                        {{ catalogitem.product.item.price.discountPercent }}
                {% endif %}
                {% if catalogitem.product.item.price.discountValidTo %}
                        {{ catalogitem.product.item.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogitem.product.item.price.beforeDiscount %}
                {% endif %}
                {% if catalogitem.product.item.price.discount %}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.item.url %}
                {{ catalogitem.product.item.url }}
                {{ catalogitem.product.item.url.absolute }}
                {{ catalogitem.product.item.url.path }}
        {% endif %}
        {% if catalogitem.product.item.variant %}
                {{ catalogitem.product.item.variant.id }}
                {{ catalogitem.product.item.variant.name }}
                {{ catalogitem.product.item.variant.trackingId }}
                {% if catalogitem.product.item.variant.active %} ... {% endif %}
                {% if catalogitem.product.item.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in catalogitem.product.item.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in catalogitem.product.item.variant.enumValues %}
                {% endfor %}
                {% for image in catalogitem.product.item.variant.images %}
                {% endfor %}
                {% for upsell in catalogitem.product.item.variant.availableUpsells %}
                {% endfor %}
                {% if catalogitem.product.item.variant.legacyRel %}
                        {{ catalogitem.product.item.variant.legacyRel }}
                {% endif %}
                {% if catalogitem.product.item.variant.image %}
                {% endif %}
        {% endif %}
        {% for label in catalogitem.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                        {{ label.image.originalHeight }}
                        {{ label.image.originalWidth }}
                        {{ label.image.url }}
                        {% if label.image.alt %}
                                {{ label.image.alt }}
                        {% endif %}
                        {% if label.image.text %}
                                {{ label.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for productDesigner in catalogitem.product.configurators %}
                {{ productDesigner.name }}
                {{ productDesigner.upsell.id }}
                {{ productDesigner.upsell.name }}
                {% if productDesigner.upsell.inCart %} ... {% endif %}
                {% if productDesigner.upsell.code %}
                        {{ productDesigner.upsell.code }}
                {% endif %}
                {% if productDesigner.upsell.vatRate %}
                        {{ productDesigner.upsell.vatRate }}
                {% endif %}
                {% if productDesigner.upsell.image %}
                {% endif %}
                {% if productDesigner.upsell.unit %}
                {% endif %}
                {% if productDesigner.result %}
                        {{ productDesigner.result.imageUrl }}
                        {{ productDesigner.result.uuid }}
                        {% for productDesignerResultPart in productDesigner.result.parts %}
                        {% endfor %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in catalogitem.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {{ productEnumValue.enum.id }}
                {{ productEnumValue.enum.name }}
                {% for enumValue in productEnumValue.enum.values %}
                {% endfor %}
                {% if productEnumValue.enum.text %}
                        {{ productEnumValue.enum.text }}
                {% endif %}
                {% if productEnumValue.enum.meaning %}
                {% endif %}
                {{ productEnumValue.url }}
                {{ productEnumValue.url.absolute }}
                {{ productEnumValue.url.path }}
                {% for variant in productEnumValue.variants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                        {{ productEnumValue.image.originalHeight }}
                        {{ productEnumValue.image.originalWidth }}
                        {{ productEnumValue.image.url }}
                        {% if productEnumValue.image.alt %}
                                {{ productEnumValue.image.alt }}
                        {% endif %}
                        {% if productEnumValue.image.text %}
                                {{ productEnumValue.image.text }}
                        {% endif %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                        {{ productEnumValue.variantImage.originalHeight }}
                        {{ productEnumValue.variantImage.originalWidth }}
                        {{ productEnumValue.variantImage.url }}
                        {% if productEnumValue.variantImage.alt %}
                                {{ productEnumValue.variantImage.alt }}
                        {% endif %}
                        {% if productEnumValue.variantImage.text %}
                                {{ productEnumValue.variantImage.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for product in catalogitem.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for address in product.publicContacts %}
                        {% if address.city %}
                                {{ address.city }}
                        {% endif %}
                        {% if address.company %}
                                {{ address.company }}
                        {% endif %}
                        {% if address.companyId %}
                                {{ address.companyId }}
                        {% endif %}
                        {% if address.email %}
                                {{ address.email }}
                        {% endif %}
                        {% if address.phone %}
                                {{ address.phone }}
                        {% endif %}
                        {% if address.region %}
                                {{ address.region }}
                        {% endif %}
                        {% if address.street %}
                                {{ address.street }}
                        {% endif %}
                        {% if address.vatId %}
                                {{ address.vatId }}
                        {% endif %}
                        {% if address.web %}
                                {{ address.web }}
                        {% endif %}
                        {% if address.zip %}
                                {{ address.zip }}
                        {% endif %}
                        {% if address.purpose %}
                        {% endif %}
                        {% if address.country %}
                        {% endif %}
                {% endfor %}
                {% for attributeInstance in product.attributes %}
                        {{ attributeInstance.name }}
                        {{ attributeInstance.valuesHtml }}
                        {% for attributeValueInstance in attributeInstance.values %}
                        {% endfor %}
                        {% if attributeInstance.description %}
                                {{ attributeInstance.description }}
                        {% endif %}
                        {% if attributeInstance.group %}
                        {% endif %}
                        {% if attributeInstance.image %}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {{ product.category.id }}
                {{ product.category.productCount }}
                {{ product.category.productInStockCount }}
                {{ product.category.totalStockQuantity }}
                {{ product.category.headline }}
                {{ product.category.menuName }}
                {{ product.category.name }}
                {% if product.category.flagErotic %} ... {% endif %}
                {% if product.category.flagImportant %} ... {% endif %}
                {% if product.category.noFollow %} ... {% endif %}
                {% for category in product.category.subcategories %}
                {% endfor %}
                {% for video in product.category.videos %}
                {% endfor %}
                {{ product.category.pathNames }}
                {{ product.category.pathIds }}
                {{ product.category.templateAttribute }}
                {% if product.category.subHeadline %}
                        {{ product.category.subHeadline }}
                {% endif %}
                {% if product.category.text %}
                        {{ product.category.text }}
                {% endif %}
                {% if product.category.parent %}
                {% endif %}
                {% if product.category.image %}
                {% endif %}
                {% if product.category.contentGrid %}
                        {{ product.category.contentGrid }}
                {% endif %}
                {% for category in product.categories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathNames }}
                        {{ category.pathIds }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for category in product.otherCategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathNames }}
                        {{ category.pathIds }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for file in product.files %}
                        {{ file.bytes }}
                        {{ file.url }}
                        {% if file.mime %}
                                {{ file.mime }}
                        {% endif %}
                        {% if file.name %}
                                {{ file.name }}
                        {% endif %}
                {% endfor %}
                {% for image in product.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.images360 %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.currentImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.otherImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ product.item.cartAmountRequiredMultiplier }}
                {{ product.item.id }}
                {{ product.item.loyaltyPointsAmount }}
                {{ product.item.name }}
                {{ product.item.trackingId }}
                {% if product.item.digital %} ... {% endif %}
                {% if product.item.sellable %} ... {% endif %}
                {% if product.item.service %} ... {% endif %}
                {% for availableUpsellGroup in product.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in product.item.availableUpsells %}
                {% endfor %}
                {{ product.item.trackingIds }}
                {{ product.item.storageLocations }}
                {% if product.item.packageWeight %}
                        {{ product.item.packageWeight }}
                {% endif %}
                {% if product.item.code %}
                        {{ product.item.code }}
                {% endif %}
                {% if product.item.packageHeight %}
                        {{ product.item.packageHeight }}
                {% endif %}
                {% if product.item.packageLength %}
                        {{ product.item.packageLength }}
                {% endif %}
                {% if product.item.packageWidth %}
                        {{ product.item.packageWidth }}
                {% endif %}
                {% if product.item.bundle %}
                {% endif %}
                {% if product.item.cheapestDelivery %}
                {% endif %}
                {% if product.item.freeDelivery %}
                {% endif %}
                {% if product.item.closestFreeDelivery %}
                {% endif %}
                {% if product.item.packageDimensions %}
                {% endif %}
                {% if product.item.image %}
                {% endif %}
                {% if product.item.price %}
                {% endif %}
                {% if product.item.url %}
                {% endif %}
                {% if product.item.variant %}
                {% endif %}
                {% for label in product.labels %}
                        {{ label.id }}
                        {{ label.name }}
                        {% if label.code %}
                                {{ label.code }}
                        {% endif %}
                        {% if label.colorCode %}
                                {{ label.colorCode }}
                        {% endif %}
                        {% if label.image %}
                        {% endif %}
                {% endfor %}
                {% for productDesigner in product.configurators %}
                        {{ productDesigner.name }}
                        {% if productDesigner.result %}
                        {% endif %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                        {{ productEnumValue.id }}
                        {{ productEnumValue.name }}
                        {% if productEnumValue.selected %} ... {% endif %}
                        {% for variant in productEnumValue.variants %}
                        {% endfor %}
                        {% if productEnumValue.text %}
                                {{ productEnumValue.text }}
                        {% endif %}
                        {% if productEnumValue.image %}
                        {% endif %}
                        {% if productEnumValue.variantImage %}
                        {% endif %}
                {% endfor %}
                {{ product.rating.count }}
                {% if product.rating.voted %} ... {% endif %}
                {% if product.rating.average %}
                        {{ product.rating.average }}
                {% endif %}
                {% for upsell in product.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ product.url }}
                {{ product.url.absolute }}
                {{ product.url.path }}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                        {{ variantChoiceStep.headline }}
                        {{ variantChoiceStep.inputName }}
                        {{ variantChoiceStep.mode }}
                        {% if variantChoiceStep.final %} ... {% endif %}
                        {% for variantChoice in variantChoiceStep.choices %}
                        {% endfor %}
                        {% if variantChoiceStep.description %}
                                {{ variantChoiceStep.description }}
                        {% endif %}
                        {% if variantChoiceStep.infoDescription %}
                                {{ variantChoiceStep.infoDescription }}
                        {% endif %}
                        {% if variantChoiceStep.messageEmpty %}
                                {{ variantChoiceStep.messageEmpty }}
                        {% endif %}
                        {% if variantChoiceStep.placeholder %}
                                {{ variantChoiceStep.placeholder }}
                        {% endif %}
                        {% if variantChoiceStep.icon %}
                        {% endif %}
                        {% if variantChoiceStep.infoIcon %}
                        {% endif %}
                        {% if variantChoiceStep.info %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice %}
                        {% endif %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in product.variants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {{ product.variantType.id }}
                {{ product.variantType.name }}
                {% for video in product.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                        {{ product.attribute.name }}
                        {{ product.attribute.valuesHtml }}
                        {% for attributeValueInstance in product.attribute.values %}
                        {% endfor %}
                        {% if product.attribute.description %}
                                {{ product.attribute.description }}
                        {% endif %}
                        {% if product.attribute.group %}
                        {% endif %}
                        {% if product.attribute.image %}
                        {% endif %}
                {% endif %}
                {% if product.brand %}
                        {{ product.brand.id }}
                        {{ product.brand.headline }}
                        {{ product.brand.name }}
                        {% if product.brand.flagImportant %} ... {% endif %}
                        {% for address in product.brand.publicContacts %}
                        {% endfor %}
                        {% for category in product.brand.categories %}
                        {% endfor %}
                        {% if product.brand.code %}
                                {{ product.brand.code }}
                        {% endif %}
                        {% if product.brand.web %}
                                {{ product.brand.web }}
                        {% endif %}
                        {% if product.brand.text %}
                                {{ product.brand.text }}
                        {% endif %}
                        {% if product.brand.image %}
                        {% endif %}
                        {% if product.brand.seo %}
                        {% endif %}
                        {% if product.brand.contentGrid %}
                                {{ product.brand.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if product.image %}
                        {{ product.image.originalHeight }}
                        {{ product.image.originalWidth }}
                        {{ product.image.url }}
                        {% if product.image.alt %}
                                {{ product.image.alt }}
                        {% endif %}
                        {% if product.image.text %}
                                {{ product.image.text }}
                        {% endif %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                        {{ product.imageForEnumValueId.originalHeight }}
                        {{ product.imageForEnumValueId.originalWidth }}
                        {{ product.imageForEnumValueId.url }}
                        {% if product.imageForEnumValueId.alt %}
                                {{ product.imageForEnumValueId.alt }}
                        {% endif %}
                        {% if product.imageForEnumValueId.text %}
                                {{ product.imageForEnumValueId.text }}
                        {% endif %}
                {% endif %}
                {% if product.successor %}
                        {{ product.successor.id }}
                        {{ product.successor.name }}
                        {{ product.successor.trackingId }}
                        {{ product.successor.dateCreated|date('d. m. Y H:i') }}
                        {% if product.successor.active %} ... {% endif %}
                        {% if product.successor.compared %} ... {% endif %}
                        {% if product.successor.differentVariantPrices %} ... {% endif %}
                        {% if product.successor.flagNew %} ... {% endif %}
                        {% if product.successor.flagPromo %} ... {% endif %}
                        {% if product.successor.flagSecondHand %} ... {% endif %}
                        {% if product.successor.flagSellout %} ... {% endif %}
                        {% if product.successor.otherDiscountApplicable %} ... {% endif %}
                        {% if product.successor.soldSeparately %} ... {% endif %}
                        {% for address in product.successor.publicContacts %}
                        {% endfor %}
                        {% for attributeInstance in product.successor.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in product.successor.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in product.successor.categories %}
                        {% endfor %}
                        {% for category in product.successor.otherCategories %}
                        {% endfor %}
                        {% for file in product.successor.files %}
                        {% endfor %}
                        {% for image in product.successor.images %}
                        {% endfor %}
                        {% for image in product.successor.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in product.successor.images360 %}
                        {% endfor %}
                        {% for image in product.successor.currentImages %}
                        {% endfor %}
                        {% for image in product.successor.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in product.successor.otherImages %}
                        {% endfor %}
                        {% for label in product.successor.labels %}
                        {% endfor %}
                        {% for productDesigner in product.successor.configurators %}
                        {% endfor %}
                        {% for productEnumValue in product.successor.enumValues %}
                        {% endfor %}
                        {% for upsell in product.successor.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in product.successor.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in product.successor.currentVariants %}
                        {% endfor %}
                        {% for variant in product.successor.variants %}
                        {% endfor %}
                        {% for variant in product.successor.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in product.successor.videos %}
                        {% endfor %}
                        {{ product.successor.trackingIds }}
                        {% if product.successor.currentSubName %}
                                {{ product.successor.currentSubName }}
                        {% endif %}
                        {% if product.successor.nameSuffix %}
                                {{ product.successor.nameSuffix }}
                        {% endif %}
                        {% if product.successor.nameSupplier %}
                                {{ product.successor.nameSupplier }}
                        {% endif %}
                        {% if product.successor.text %}
                                {{ product.successor.text }}
                        {% endif %}
                        {% if product.successor.attribute %}
                        {% endif %}
                        {% if product.successor.brand %}
                        {% endif %}
                        {% if product.successor.image %}
                        {% endif %}
                        {% if product.successor.imageForEnumValueId %}
                        {% endif %}
                        {% if product.successor.seo %}
                        {% endif %}
                        {% if product.successor.supplier %}
                        {% endif %}
                        {% if product.successor.unit %}
                        {% endif %}
                        {% if product.successor.variant %}
                        {% endif %}
                        {% if product.successor.warranty %}
                        {% endif %}
                        {% if product.successor.contentGrid %}
                                {{ product.successor.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if product.seo %}
                        {% if product.seo.description %}
                                {{ product.seo.description }}
                        {% endif %}
                        {% if product.seo.keywords %}
                                {{ product.seo.keywords }}
                        {% endif %}
                        {% if product.seo.title %}
                                {{ product.seo.title }}
                        {% endif %}
                {% endif %}
                {% if product.supplier %}
                        {{ product.supplier.id }}
                        {{ product.supplier.name }}
                        {% for address in product.supplier.publicContacts %}
                        {% endfor %}
                {% endif %}
                {% if product.unit %}
                        {{ product.unit.name }}
                {% endif %}
                {% if product.variant %}
                        {{ product.variant.id }}
                        {{ product.variant.name }}
                        {{ product.variant.trackingId }}
                        {% if product.variant.active %} ... {% endif %}
                        {% if product.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in product.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in product.variant.enumValues %}
                        {% endfor %}
                        {% for image in product.variant.images %}
                        {% endfor %}
                        {% for upsell in product.variant.availableUpsells %}
                        {% endfor %}
                        {% if product.variant.legacyRel %}
                                {{ product.variant.legacyRel }}
                        {% endif %}
                        {% if product.variant.image %}
                        {% endif %}
                {% endif %}
                {% if product.warranty %}
                        {{ product.warranty.months }}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.product.rating.count }}
        {% if catalogitem.product.rating.voted %} ... {% endif %}
        {% if catalogitem.product.rating.average %}
                {{ catalogitem.product.rating.average }}
        {% endif %}
        {% for upsell in catalogitem.product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathNames }}
                {{ upsell.category.pathIds }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.product.url }}
        {{ catalogitem.product.url.absolute }}
        {{ catalogitem.product.url.path }}
        {% for variantChoiceStep in catalogitem.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                        {{ variantChoice.inputValue }}
                        {{ variantChoice.name }}
                        {% if variantChoice.selected %} ... {% endif %}
                        {% if variantChoice.color %}
                                {{ variantChoice.color }}
                        {% endif %}
                        {% if variantChoice.description %}
                                {{ variantChoice.description }}
                        {% endif %}
                        {% if variantChoice.availability %}
                        {% endif %}
                        {% if variantChoice.bundle %}
                        {% endif %}
                        {% if variantChoice.icon %}
                        {% endif %}
                        {% if variantChoice.image %}
                        {% endif %}
                        {% if variantChoice.price %}
                        {% endif %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                        {{ variantChoiceStep.icon.originalHeight }}
                        {{ variantChoiceStep.icon.originalWidth }}
                        {{ variantChoiceStep.icon.url }}
                        {% if variantChoiceStep.icon.alt %}
                                {{ variantChoiceStep.icon.alt }}
                        {% endif %}
                        {% if variantChoiceStep.icon.text %}
                                {{ variantChoiceStep.icon.text }}
                        {% endif %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                        {{ variantChoiceStep.infoIcon.originalHeight }}
                        {{ variantChoiceStep.infoIcon.originalWidth }}
                        {{ variantChoiceStep.infoIcon.url }}
                        {% if variantChoiceStep.infoIcon.alt %}
                                {{ variantChoiceStep.infoIcon.alt }}
                        {% endif %}
                        {% if variantChoiceStep.infoIcon.text %}
                                {{ variantChoiceStep.infoIcon.text }}
                        {% endif %}
                {% endif %}
                {% if variantChoiceStep.info %}
                        {{ variantChoiceStep.info.id }}
                        {{ variantChoiceStep.info.name }}
                        {% for file in variantChoiceStep.info.files %}
                        {% endfor %}
                        {% for image in variantChoiceStep.info.images %}
                        {% endfor %}
                        {% for textPage in variantChoiceStep.info.subPages %}
                        {% endfor %}
                        {% for video in variantChoiceStep.info.videos %}
                        {% endfor %}
                        {% if variantChoiceStep.info.code %}
                                {{ variantChoiceStep.info.code }}
                        {% endif %}
                        {% if variantChoiceStep.info.text %}
                                {{ variantChoiceStep.info.text }}
                        {% endif %}
                        {% if variantChoiceStep.info.image %}
                        {% endif %}
                        {% if variantChoiceStep.info.contentGrid %}
                                {{ variantChoiceStep.info.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                        {{ variantChoiceStep.selectedChoice.inputValue }}
                        {{ variantChoiceStep.selectedChoice.name }}
                        {% if variantChoiceStep.selectedChoice.selected %} ... {% endif %}
                        {% if variantChoiceStep.selectedChoice.color %}
                                {{ variantChoiceStep.selectedChoice.color }}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.description %}
                                {{ variantChoiceStep.selectedChoice.description }}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.availability %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.bundle %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.icon %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.image %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.price %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ variant.item.cartAmountRequiredMultiplier }}
                {{ variant.item.id }}
                {{ variant.item.loyaltyPointsAmount }}
                {{ variant.item.name }}
                {{ variant.item.trackingId }}
                {% if variant.item.digital %} ... {% endif %}
                {% if variant.item.sellable %} ... {% endif %}
                {% if variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in variant.item.availableUpsells %}
                {% endfor %}
                {{ variant.item.trackingIds }}
                {{ variant.item.storageLocations }}
                {% if variant.item.packageWeight %}
                        {{ variant.item.packageWeight }}
                {% endif %}
                {% if variant.item.code %}
                        {{ variant.item.code }}
                {% endif %}
                {% if variant.item.packageHeight %}
                        {{ variant.item.packageHeight }}
                {% endif %}
                {% if variant.item.packageLength %}
                        {{ variant.item.packageLength }}
                {% endif %}
                {% if variant.item.packageWidth %}
                        {{ variant.item.packageWidth }}
                {% endif %}
                {% if variant.item.bundle %}
                {% endif %}
                {% if variant.item.cheapestDelivery %}
                {% endif %}
                {% if variant.item.freeDelivery %}
                {% endif %}
                {% if variant.item.closestFreeDelivery %}
                {% endif %}
                {% if variant.item.packageDimensions %}
                {% endif %}
                {% if variant.item.image %}
                {% endif %}
                {% if variant.item.price %}
                {% endif %}
                {% if variant.item.url %}
                {% endif %}
                {% if variant.item.variant %}
                {% endif %}
                {% for upsell in variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ variant.url }}
                {{ variant.url.absolute }}
                {{ variant.url.path }}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                        {{ variant.image.originalHeight }}
                        {{ variant.image.originalWidth }}
                        {{ variant.image.url }}
                        {% if variant.image.alt %}
                                {{ variant.image.alt }}
                        {% endif %}
                        {% if variant.image.text %}
                                {{ variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ variant.item.cartAmountRequiredMultiplier }}
                {{ variant.item.id }}
                {{ variant.item.loyaltyPointsAmount }}
                {{ variant.item.name }}
                {{ variant.item.trackingId }}
                {% if variant.item.digital %} ... {% endif %}
                {% if variant.item.sellable %} ... {% endif %}
                {% if variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in variant.item.availableUpsells %}
                {% endfor %}
                {{ variant.item.trackingIds }}
                {{ variant.item.storageLocations }}
                {% if variant.item.packageWeight %}
                        {{ variant.item.packageWeight }}
                {% endif %}
                {% if variant.item.code %}
                        {{ variant.item.code }}
                {% endif %}
                {% if variant.item.packageHeight %}
                        {{ variant.item.packageHeight }}
                {% endif %}
                {% if variant.item.packageLength %}
                        {{ variant.item.packageLength }}
                {% endif %}
                {% if variant.item.packageWidth %}
                        {{ variant.item.packageWidth }}
                {% endif %}
                {% if variant.item.bundle %}
                {% endif %}
                {% if variant.item.cheapestDelivery %}
                {% endif %}
                {% if variant.item.freeDelivery %}
                {% endif %}
                {% if variant.item.closestFreeDelivery %}
                {% endif %}
                {% if variant.item.packageDimensions %}
                {% endif %}
                {% if variant.item.image %}
                {% endif %}
                {% if variant.item.price %}
                {% endif %}
                {% if variant.item.url %}
                {% endif %}
                {% if variant.item.variant %}
                {% endif %}
                {% for upsell in variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ variant.url }}
                {{ variant.url.absolute }}
                {{ variant.url.path }}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                        {{ variant.image.originalHeight }}
                        {{ variant.image.originalWidth }}
                        {{ variant.image.url }}
                        {% if variant.image.alt %}
                                {{ variant.image.alt }}
                        {% endif %}
                        {% if variant.image.text %}
                                {{ variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ variant.item.cartAmountRequiredMultiplier }}
                {{ variant.item.id }}
                {{ variant.item.loyaltyPointsAmount }}
                {{ variant.item.name }}
                {{ variant.item.trackingId }}
                {% if variant.item.digital %} ... {% endif %}
                {% if variant.item.sellable %} ... {% endif %}
                {% if variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in variant.item.availableUpsells %}
                {% endfor %}
                {{ variant.item.trackingIds }}
                {{ variant.item.storageLocations }}
                {% if variant.item.packageWeight %}
                        {{ variant.item.packageWeight }}
                {% endif %}
                {% if variant.item.code %}
                        {{ variant.item.code }}
                {% endif %}
                {% if variant.item.packageHeight %}
                        {{ variant.item.packageHeight }}
                {% endif %}
                {% if variant.item.packageLength %}
                        {{ variant.item.packageLength }}
                {% endif %}
                {% if variant.item.packageWidth %}
                        {{ variant.item.packageWidth }}
                {% endif %}
                {% if variant.item.bundle %}
                {% endif %}
                {% if variant.item.cheapestDelivery %}
                {% endif %}
                {% if variant.item.freeDelivery %}
                {% endif %}
                {% if variant.item.closestFreeDelivery %}
                {% endif %}
                {% if variant.item.packageDimensions %}
                {% endif %}
                {% if variant.item.image %}
                {% endif %}
                {% if variant.item.price %}
                {% endif %}
                {% if variant.item.url %}
                {% endif %}
                {% if variant.item.variant %}
                {% endif %}
                {% for upsell in variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ variant.url }}
                {{ variant.url.absolute }}
                {{ variant.url.path }}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                        {{ variant.image.originalHeight }}
                        {{ variant.image.originalWidth }}
                        {{ variant.image.url }}
                        {% if variant.image.alt %}
                                {{ variant.image.alt }}
                        {% endif %}
                        {% if variant.image.text %}
                                {{ variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.product.variantType.id }}
        {{ catalogitem.product.variantType.name }}
        {% for video in catalogitem.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                        {{ video.image.originalHeight }}
                        {{ video.image.originalWidth }}
                        {{ video.image.url }}
                        {% if video.image.alt %}
                                {{ video.image.alt }}
                        {% endif %}
                        {% if video.image.text %}
                                {{ video.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.product.trackingIds }}
        {% if catalogitem.product.currentSubName %}
                {{ catalogitem.product.currentSubName }}
        {% endif %}
        {% if catalogitem.product.nameSuffix %}
                {{ catalogitem.product.nameSuffix }}
        {% endif %}
        {% if catalogitem.product.nameSupplier %}
                {{ catalogitem.product.nameSupplier }}
        {% endif %}
        {% if catalogitem.product.text %}
                {{ catalogitem.product.text }}
        {% endif %}
        {% if catalogitem.product.attribute %}
                {{ catalogitem.product.attribute.name }}
                {{ catalogitem.product.attribute.valuesHtml }}
                {% for attributeValueInstance in catalogitem.product.attribute.values %}
                        {{ attributeValueInstance.values }}
                        {{ attributeValueInstance.nameHtml }}
                        {% if attributeValueInstance.colorCode %}
                                {{ attributeValueInstance.colorCode }}
                        {% endif %}
                        {% if attributeValueInstance.text %}
                                {{ attributeValueInstance.text }}
                        {% endif %}
                        {% if attributeValueInstance.unit %}
                                {{ attributeValueInstance.unit }}
                        {% endif %}
                        {% if attributeValueInstance.image %}
                        {% endif %}
                        {% if attributeValueInstance.name %}
                                {{ attributeValueInstance.name }}
                        {% endif %}
                {% endfor %}
                {% if catalogitem.product.attribute.description %}
                        {{ catalogitem.product.attribute.description }}
                {% endif %}
                {% if catalogitem.product.attribute.group %}
                        {{ catalogitem.product.attribute.group.id }}
                {% endif %}
                {% if catalogitem.product.attribute.image %}
                        {{ catalogitem.product.attribute.image.originalHeight }}
                        {{ catalogitem.product.attribute.image.originalWidth }}
                        {{ catalogitem.product.attribute.image.url }}
                        {% if catalogitem.product.attribute.image.alt %}
                                {{ catalogitem.product.attribute.image.alt }}
                        {% endif %}
                        {% if catalogitem.product.attribute.image.text %}
                                {{ catalogitem.product.attribute.image.text }}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.brand %}
                {{ catalogitem.product.brand.id }}
                {{ catalogitem.product.brand.headline }}
                {{ catalogitem.product.brand.name }}
                {% if catalogitem.product.brand.flagImportant %} ... {% endif %}
                {% for address in catalogitem.product.brand.publicContacts %}
                        {% if address.city %}
                                {{ address.city }}
                        {% endif %}
                        {% if address.company %}
                                {{ address.company }}
                        {% endif %}
                        {% if address.companyId %}
                                {{ address.companyId }}
                        {% endif %}
                        {% if address.email %}
                                {{ address.email }}
                        {% endif %}
                        {% if address.phone %}
                                {{ address.phone }}
                        {% endif %}
                        {% if address.region %}
                                {{ address.region }}
                        {% endif %}
                        {% if address.street %}
                                {{ address.street }}
                        {% endif %}
                        {% if address.vatId %}
                                {{ address.vatId }}
                        {% endif %}
                        {% if address.web %}
                                {{ address.web }}
                        {% endif %}
                        {% if address.zip %}
                                {{ address.zip }}
                        {% endif %}
                        {% if address.purpose %}
                        {% endif %}
                        {% if address.country %}
                        {% endif %}
                {% endfor %}
                {% for category in catalogitem.product.brand.categories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathNames }}
                        {{ category.pathIds }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.product.brand.url }}
                {{ catalogitem.product.brand.url.absolute }}
                {{ catalogitem.product.brand.url.path }}
                {{ catalogitem.product.brand.categoryUrl }}
                {{ catalogitem.product.brand.categoryUrl.absolute }}
                {{ catalogitem.product.brand.categoryUrl.path }}
                {% if catalogitem.product.brand.code %}
                        {{ catalogitem.product.brand.code }}
                {% endif %}
                {% if catalogitem.product.brand.web %}
                        {{ catalogitem.product.brand.web }}
                {% endif %}
                {% if catalogitem.product.brand.text %}
                        {{ catalogitem.product.brand.text }}
                {% endif %}
                {% if catalogitem.product.brand.image %}
                        {{ catalogitem.product.brand.image.originalHeight }}
                        {{ catalogitem.product.brand.image.originalWidth }}
                        {{ catalogitem.product.brand.image.url }}
                        {% if catalogitem.product.brand.image.alt %}
                                {{ catalogitem.product.brand.image.alt }}
                        {% endif %}
                        {% if catalogitem.product.brand.image.text %}
                                {{ catalogitem.product.brand.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogitem.product.brand.seo %}
                        {% if catalogitem.product.brand.seo.description %}
                                {{ catalogitem.product.brand.seo.description }}
                        {% endif %}
                        {% if catalogitem.product.brand.seo.keywords %}
                                {{ catalogitem.product.brand.seo.keywords }}
                        {% endif %}
                        {% if catalogitem.product.brand.seo.title %}
                                {{ catalogitem.product.brand.seo.title }}
                        {% endif %}
                {% endif %}
                {% if catalogitem.product.brand.contentGrid %}
                        {{ catalogitem.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.image %}
                {{ catalogitem.product.image.originalHeight }}
                {{ catalogitem.product.image.originalWidth }}
                {{ catalogitem.product.image.url }}
                {% if catalogitem.product.image.alt %}
                        {{ catalogitem.product.image.alt }}
                {% endif %}
                {% if catalogitem.product.image.text %}
                        {{ catalogitem.product.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.imageForEnumValueId %}
                {{ catalogitem.product.imageForEnumValueId.originalHeight }}
                {{ catalogitem.product.imageForEnumValueId.originalWidth }}
                {{ catalogitem.product.imageForEnumValueId.url }}
                {% if catalogitem.product.imageForEnumValueId.alt %}
                        {{ catalogitem.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if catalogitem.product.imageForEnumValueId.text %}
                        {{ catalogitem.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.successor %}
                {{ catalogitem.product.successor.id }}
                {{ catalogitem.product.successor.name }}
                {{ catalogitem.product.successor.trackingId }}
                {{ catalogitem.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if catalogitem.product.successor.active %} ... {% endif %}
                {% if catalogitem.product.successor.compared %} ... {% endif %}
                {% if catalogitem.product.successor.differentVariantPrices %} ... {% endif %}
                {% if catalogitem.product.successor.flagNew %} ... {% endif %}
                {% if catalogitem.product.successor.flagPromo %} ... {% endif %}
                {% if catalogitem.product.successor.flagSecondHand %} ... {% endif %}
                {% if catalogitem.product.successor.flagSellout %} ... {% endif %}
                {% if catalogitem.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if catalogitem.product.successor.soldSeparately %} ... {% endif %}
                {% for address in catalogitem.product.successor.publicContacts %}
                        {% if address.city %}
                                {{ address.city }}
                        {% endif %}
                        {% if address.company %}
                                {{ address.company }}
                        {% endif %}
                        {% if address.companyId %}
                                {{ address.companyId }}
                        {% endif %}
                        {% if address.email %}
                                {{ address.email }}
                        {% endif %}
                        {% if address.phone %}
                                {{ address.phone }}
                        {% endif %}
                        {% if address.region %}
                                {{ address.region }}
                        {% endif %}
                        {% if address.street %}
                                {{ address.street }}
                        {% endif %}
                        {% if address.vatId %}
                                {{ address.vatId }}
                        {% endif %}
                        {% if address.web %}
                                {{ address.web }}
                        {% endif %}
                        {% if address.zip %}
                                {{ address.zip }}
                        {% endif %}
                        {% if address.purpose %}
                        {% endif %}
                        {% if address.country %}
                        {% endif %}
                {% endfor %}
                {% for attributeInstance in catalogitem.product.successor.attributes %}
                        {{ attributeInstance.name }}
                        {{ attributeInstance.valuesHtml }}
                        {% for attributeValueInstance in attributeInstance.values %}
                        {% endfor %}
                        {% if attributeInstance.description %}
                                {{ attributeInstance.description }}
                        {% endif %}
                        {% if attributeInstance.group %}
                        {% endif %}
                        {% if attributeInstance.image %}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in catalogitem.product.successor.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.product.successor.category.id }}
                {{ catalogitem.product.successor.category.productCount }}
                {{ catalogitem.product.successor.category.productInStockCount }}
                {{ catalogitem.product.successor.category.totalStockQuantity }}
                {{ catalogitem.product.successor.category.headline }}
                {{ catalogitem.product.successor.category.menuName }}
                {{ catalogitem.product.successor.category.name }}
                {% if catalogitem.product.successor.category.flagErotic %} ... {% endif %}
                {% if catalogitem.product.successor.category.flagImportant %} ... {% endif %}
                {% if catalogitem.product.successor.category.noFollow %} ... {% endif %}
                {% for category in catalogitem.product.successor.category.subcategories %}
                {% endfor %}
                {% for video in catalogitem.product.successor.category.videos %}
                {% endfor %}
                {{ catalogitem.product.successor.category.pathNames }}
                {{ catalogitem.product.successor.category.pathIds }}
                {{ catalogitem.product.successor.category.templateAttribute }}
                {% if catalogitem.product.successor.category.subHeadline %}
                        {{ catalogitem.product.successor.category.subHeadline }}
                {% endif %}
                {% if catalogitem.product.successor.category.text %}
                        {{ catalogitem.product.successor.category.text }}
                {% endif %}
                {% if catalogitem.product.successor.category.parent %}
                {% endif %}
                {% if catalogitem.product.successor.category.image %}
                {% endif %}
                {% if catalogitem.product.successor.category.contentGrid %}
                        {{ catalogitem.product.successor.category.contentGrid }}
                {% endif %}
                {% for category in catalogitem.product.successor.categories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathNames }}
                        {{ category.pathIds }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for category in catalogitem.product.successor.otherCategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathNames }}
                        {{ category.pathIds }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for file in catalogitem.product.successor.files %}
                        {{ file.bytes }}
                        {{ file.url }}
                        {% if file.mime %}
                                {{ file.mime }}
                        {% endif %}
                        {% if file.name %}
                                {{ file.name }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogitem.product.successor.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogitem.product.successor.imagesWithEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogitem.product.successor.images360 %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogitem.product.successor.currentImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogitem.product.successor.imagesWithoutEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogitem.product.successor.otherImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.product.successor.item.cartAmountRequiredMultiplier }}
                {{ catalogitem.product.successor.item.id }}
                {{ catalogitem.product.successor.item.loyaltyPointsAmount }}
                {{ catalogitem.product.successor.item.name }}
                {{ catalogitem.product.successor.item.trackingId }}
                {% if catalogitem.product.successor.item.digital %} ... {% endif %}
                {% if catalogitem.product.successor.item.sellable %} ... {% endif %}
                {% if catalogitem.product.successor.item.service %} ... {% endif %}
                {% for availableUpsellGroup in catalogitem.product.successor.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in catalogitem.product.successor.item.availableUpsells %}
                {% endfor %}
                {{ catalogitem.product.successor.item.trackingIds }}
                {{ catalogitem.product.successor.item.storageLocations }}
                {% if catalogitem.product.successor.item.packageWeight %}
                        {{ catalogitem.product.successor.item.packageWeight }}
                {% endif %}
                {% if catalogitem.product.successor.item.code %}
                        {{ catalogitem.product.successor.item.code }}
                {% endif %}
                {% if catalogitem.product.successor.item.packageHeight %}
                        {{ catalogitem.product.successor.item.packageHeight }}
                {% endif %}
                {% if catalogitem.product.successor.item.packageLength %}
                        {{ catalogitem.product.successor.item.packageLength }}
                {% endif %}
                {% if catalogitem.product.successor.item.packageWidth %}
                        {{ catalogitem.product.successor.item.packageWidth }}
                {% endif %}
                {% if catalogitem.product.successor.item.bundle %}
                {% endif %}
                {% if catalogitem.product.successor.item.cheapestDelivery %}
                {% endif %}
                {% if catalogitem.product.successor.item.freeDelivery %}
                {% endif %}
                {% if catalogitem.product.successor.item.closestFreeDelivery %}
                {% endif %}
                {% if catalogitem.product.successor.item.packageDimensions %}
                {% endif %}
                {% if catalogitem.product.successor.item.image %}
                {% endif %}
                {% if catalogitem.product.successor.item.price %}
                {% endif %}
                {% if catalogitem.product.successor.item.url %}
                {% endif %}
                {% if catalogitem.product.successor.item.variant %}
                {% endif %}
                {% for label in catalogitem.product.successor.labels %}
                        {{ label.id }}
                        {{ label.name }}
                        {% if label.code %}
                                {{ label.code }}
                        {% endif %}
                        {% if label.colorCode %}
                                {{ label.colorCode }}
                        {% endif %}
                        {% if label.image %}
                        {% endif %}
                {% endfor %}
                {% for productDesigner in catalogitem.product.successor.configurators %}
                        {{ productDesigner.name }}
                        {% if productDesigner.result %}
                        {% endif %}
                {% endfor %}
                {% for productEnumValue in catalogitem.product.successor.enumValues %}
                        {{ productEnumValue.id }}
                        {{ productEnumValue.name }}
                        {% if productEnumValue.selected %} ... {% endif %}
                        {% for variant in productEnumValue.variants %}
                        {% endfor %}
                        {% if productEnumValue.text %}
                                {{ productEnumValue.text }}
                        {% endif %}
                        {% if productEnumValue.image %}
                        {% endif %}
                        {% if productEnumValue.variantImage %}
                        {% endif %}
                {% endfor %}
                {% for product in catalogitem.product.successor.packTemplateProducts %}
                        {{ product.id }}
                        {{ product.name }}
                        {{ product.trackingId }}
                        {{ product.dateCreated|date('d. m. Y H:i') }}
                        {% if product.active %} ... {% endif %}
                        {% if product.compared %} ... {% endif %}
                        {% if product.differentVariantPrices %} ... {% endif %}
                        {% if product.flagNew %} ... {% endif %}
                        {% if product.flagPromo %} ... {% endif %}
                        {% if product.flagSecondHand %} ... {% endif %}
                        {% if product.flagSellout %} ... {% endif %}
                        {% if product.otherDiscountApplicable %} ... {% endif %}
                        {% if product.soldSeparately %} ... {% endif %}
                        {% for address in product.publicContacts %}
                        {% endfor %}
                        {% for attributeInstance in product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in product.categories %}
                        {% endfor %}
                        {% for category in product.otherCategories %}
                        {% endfor %}
                        {% for file in product.files %}
                        {% endfor %}
                        {% for image in product.images %}
                        {% endfor %}
                        {% for image in product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in product.images360 %}
                        {% endfor %}
                        {% for image in product.currentImages %}
                        {% endfor %}
                        {% for image in product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in product.otherImages %}
                        {% endfor %}
                        {% for label in product.labels %}
                        {% endfor %}
                        {% for productDesigner in product.configurators %}
                        {% endfor %}
                        {% for productEnumValue in product.enumValues %}
                        {% endfor %}
                        {% for upsell in product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in product.currentVariants %}
                        {% endfor %}
                        {% for variant in product.variants %}
                        {% endfor %}
                        {% for variant in product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in product.videos %}
                        {% endfor %}
                        {{ product.trackingIds }}
                        {% if product.currentSubName %}
                                {{ product.currentSubName }}
                        {% endif %}
                        {% if product.nameSuffix %}
                                {{ product.nameSuffix }}
                        {% endif %}
                        {% if product.nameSupplier %}
                                {{ product.nameSupplier }}
                        {% endif %}
                        {% if product.text %}
                                {{ product.text }}
                        {% endif %}
                        {% if product.attribute %}
                        {% endif %}
                        {% if product.brand %}
                        {% endif %}
                        {% if product.image %}
                        {% endif %}
                        {% if product.imageForEnumValueId %}
                        {% endif %}
                        {% if product.seo %}
                        {% endif %}
                        {% if product.supplier %}
                        {% endif %}
                        {% if product.unit %}
                        {% endif %}
                        {% if product.variant %}
                        {% endif %}
                        {% if product.warranty %}
                        {% endif %}
                        {% if product.contentGrid %}
                                {{ product.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.product.successor.rating.count }}
                {% if catalogitem.product.successor.rating.voted %} ... {% endif %}
                {% if catalogitem.product.successor.rating.average %}
                        {{ catalogitem.product.successor.rating.average }}
                {% endif %}
                {% for upsell in catalogitem.product.successor.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.product.successor.url }}
                {{ catalogitem.product.successor.url.absolute }}
                {{ catalogitem.product.successor.url.path }}
                {% for variantChoiceStep in catalogitem.product.successor.variantChoiceSteps %}
                        {{ variantChoiceStep.headline }}
                        {{ variantChoiceStep.inputName }}
                        {{ variantChoiceStep.mode }}
                        {% if variantChoiceStep.final %} ... {% endif %}
                        {% for variantChoice in variantChoiceStep.choices %}
                        {% endfor %}
                        {% if variantChoiceStep.description %}
                                {{ variantChoiceStep.description }}
                        {% endif %}
                        {% if variantChoiceStep.infoDescription %}
                                {{ variantChoiceStep.infoDescription }}
                        {% endif %}
                        {% if variantChoiceStep.messageEmpty %}
                                {{ variantChoiceStep.messageEmpty }}
                        {% endif %}
                        {% if variantChoiceStep.placeholder %}
                                {{ variantChoiceStep.placeholder }}
                        {% endif %}
                        {% if variantChoiceStep.icon %}
                        {% endif %}
                        {% if variantChoiceStep.infoIcon %}
                        {% endif %}
                        {% if variantChoiceStep.info %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogitem.product.successor.currentVariants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogitem.product.successor.variants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogitem.product.successor.variantsWithEnumValueIds %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.product.successor.variantType.id }}
                {{ catalogitem.product.successor.variantType.name }}
                {% for video in catalogitem.product.successor.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.product.successor.trackingIds }}
                {% if catalogitem.product.successor.currentSubName %}
                        {{ catalogitem.product.successor.currentSubName }}
                {% endif %}
                {% if catalogitem.product.successor.nameSuffix %}
                        {{ catalogitem.product.successor.nameSuffix }}
                {% endif %}
                {% if catalogitem.product.successor.nameSupplier %}
                        {{ catalogitem.product.successor.nameSupplier }}
                {% endif %}
                {% if catalogitem.product.successor.text %}
                        {{ catalogitem.product.successor.text }}
                {% endif %}
                {% if catalogitem.product.successor.attribute %}
                        {{ catalogitem.product.successor.attribute.name }}
                        {{ catalogitem.product.successor.attribute.valuesHtml }}
                        {% for attributeValueInstance in catalogitem.product.successor.attribute.values %}
                        {% endfor %}
                        {% if catalogitem.product.successor.attribute.description %}
                                {{ catalogitem.product.successor.attribute.description }}
                        {% endif %}
                        {% if catalogitem.product.successor.attribute.group %}
                        {% endif %}
                        {% if catalogitem.product.successor.attribute.image %}
                        {% endif %}
                {% endif %}
                {% if catalogitem.product.successor.brand %}
                        {{ catalogitem.product.successor.brand.id }}
                        {{ catalogitem.product.successor.brand.headline }}
                        {{ catalogitem.product.successor.brand.name }}
                        {% if catalogitem.product.successor.brand.flagImportant %} ... {% endif %}
                        {% for address in catalogitem.product.successor.brand.publicContacts %}
                        {% endfor %}
                        {% for category in catalogitem.product.successor.brand.categories %}
                        {% endfor %}
                        {% if catalogitem.product.successor.brand.code %}
                                {{ catalogitem.product.successor.brand.code }}
                        {% endif %}
                        {% if catalogitem.product.successor.brand.web %}
                                {{ catalogitem.product.successor.brand.web }}
                        {% endif %}
                        {% if catalogitem.product.successor.brand.text %}
                                {{ catalogitem.product.successor.brand.text }}
                        {% endif %}
                        {% if catalogitem.product.successor.brand.image %}
                        {% endif %}
                        {% if catalogitem.product.successor.brand.seo %}
                        {% endif %}
                        {% if catalogitem.product.successor.brand.contentGrid %}
                                {{ catalogitem.product.successor.brand.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogitem.product.successor.image %}
                        {{ catalogitem.product.successor.image.originalHeight }}
                        {{ catalogitem.product.successor.image.originalWidth }}
                        {{ catalogitem.product.successor.image.url }}
                        {% if catalogitem.product.successor.image.alt %}
                                {{ catalogitem.product.successor.image.alt }}
                        {% endif %}
                        {% if catalogitem.product.successor.image.text %}
                                {{ catalogitem.product.successor.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogitem.product.successor.imageForEnumValueId %}
                        {{ catalogitem.product.successor.imageForEnumValueId.originalHeight }}
                        {{ catalogitem.product.successor.imageForEnumValueId.originalWidth }}
                        {{ catalogitem.product.successor.imageForEnumValueId.url }}
                        {% if catalogitem.product.successor.imageForEnumValueId.alt %}
                                {{ catalogitem.product.successor.imageForEnumValueId.alt }}
                        {% endif %}
                        {% if catalogitem.product.successor.imageForEnumValueId.text %}
                                {{ catalogitem.product.successor.imageForEnumValueId.text }}
                        {% endif %}
                {% endif %}
                {% if catalogitem.product.successor.seo %}
                        {% if catalogitem.product.successor.seo.description %}
                                {{ catalogitem.product.successor.seo.description }}
                        {% endif %}
                        {% if catalogitem.product.successor.seo.keywords %}
                                {{ catalogitem.product.successor.seo.keywords }}
                        {% endif %}
                        {% if catalogitem.product.successor.seo.title %}
                                {{ catalogitem.product.successor.seo.title }}
                        {% endif %}
                {% endif %}
                {% if catalogitem.product.successor.supplier %}
                        {{ catalogitem.product.successor.supplier.id }}
                        {{ catalogitem.product.successor.supplier.name }}
                        {% for address in catalogitem.product.successor.supplier.publicContacts %}
                        {% endfor %}
                {% endif %}
                {% if catalogitem.product.successor.unit %}
                        {{ catalogitem.product.successor.unit.name }}
                {% endif %}
                {% if catalogitem.product.successor.variant %}
                        {{ catalogitem.product.successor.variant.id }}
                        {{ catalogitem.product.successor.variant.name }}
                        {{ catalogitem.product.successor.variant.trackingId }}
                        {% if catalogitem.product.successor.variant.active %} ... {% endif %}
                        {% if catalogitem.product.successor.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogitem.product.successor.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogitem.product.successor.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogitem.product.successor.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogitem.product.successor.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogitem.product.successor.variant.legacyRel %}
                                {{ catalogitem.product.successor.variant.legacyRel }}
                        {% endif %}
                        {% if catalogitem.product.successor.variant.image %}
                        {% endif %}
                {% endif %}
                {% if catalogitem.product.successor.warranty %}
                        {{ catalogitem.product.successor.warranty.months }}
                {% endif %}
                {% if catalogitem.product.successor.contentGrid %}
                        {{ catalogitem.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.seo %}
                {% if catalogitem.product.seo.description %}
                        {{ catalogitem.product.seo.description }}
                {% endif %}
                {% if catalogitem.product.seo.keywords %}
                        {{ catalogitem.product.seo.keywords }}
                {% endif %}
                {% if catalogitem.product.seo.title %}
                        {{ catalogitem.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.supplier %}
                {{ catalogitem.product.supplier.id }}
                {{ catalogitem.product.supplier.name }}
                {% for address in catalogitem.product.supplier.publicContacts %}
                        {% if address.city %}
                                {{ address.city }}
                        {% endif %}
                        {% if address.company %}
                                {{ address.company }}
                        {% endif %}
                        {% if address.companyId %}
                                {{ address.companyId }}
                        {% endif %}
                        {% if address.email %}
                                {{ address.email }}
                        {% endif %}
                        {% if address.phone %}
                                {{ address.phone }}
                        {% endif %}
                        {% if address.region %}
                                {{ address.region }}
                        {% endif %}
                        {% if address.street %}
                                {{ address.street }}
                        {% endif %}
                        {% if address.vatId %}
                                {{ address.vatId }}
                        {% endif %}
                        {% if address.web %}
                                {{ address.web }}
                        {% endif %}
                        {% if address.zip %}
                                {{ address.zip }}
                        {% endif %}
                        {% if address.purpose %}
                        {% endif %}
                        {% if address.country %}
                        {% endif %}
                {% endfor %}
        {% endif %}
        {% if catalogitem.product.unit %}
                {{ catalogitem.product.unit.name }}
        {% endif %}
        {% if catalogitem.product.variant %}
                {{ catalogitem.product.variant.id }}
                {{ catalogitem.product.variant.name }}
                {{ catalogitem.product.variant.trackingId }}
                {% if catalogitem.product.variant.active %} ... {% endif %}
                {% if catalogitem.product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in catalogitem.product.variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in catalogitem.product.variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in catalogitem.product.variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.product.variant.item.cartAmountRequiredMultiplier }}
                {{ catalogitem.product.variant.item.id }}
                {{ catalogitem.product.variant.item.loyaltyPointsAmount }}
                {{ catalogitem.product.variant.item.name }}
                {{ catalogitem.product.variant.item.trackingId }}
                {% if catalogitem.product.variant.item.digital %} ... {% endif %}
                {% if catalogitem.product.variant.item.sellable %} ... {% endif %}
                {% if catalogitem.product.variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in catalogitem.product.variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in catalogitem.product.variant.item.availableUpsells %}
                {% endfor %}
                {{ catalogitem.product.variant.item.trackingIds }}
                {{ catalogitem.product.variant.item.storageLocations }}
                {% if catalogitem.product.variant.item.packageWeight %}
                        {{ catalogitem.product.variant.item.packageWeight }}
                {% endif %}
                {% if catalogitem.product.variant.item.code %}
                        {{ catalogitem.product.variant.item.code }}
                {% endif %}
                {% if catalogitem.product.variant.item.packageHeight %}
                        {{ catalogitem.product.variant.item.packageHeight }}
                {% endif %}
                {% if catalogitem.product.variant.item.packageLength %}
                        {{ catalogitem.product.variant.item.packageLength }}
                {% endif %}
                {% if catalogitem.product.variant.item.packageWidth %}
                        {{ catalogitem.product.variant.item.packageWidth }}
                {% endif %}
                {% if catalogitem.product.variant.item.bundle %}
                {% endif %}
                {% if catalogitem.product.variant.item.cheapestDelivery %}
                {% endif %}
                {% if catalogitem.product.variant.item.freeDelivery %}
                {% endif %}
                {% if catalogitem.product.variant.item.closestFreeDelivery %}
                {% endif %}
                {% if catalogitem.product.variant.item.packageDimensions %}
                {% endif %}
                {% if catalogitem.product.variant.item.image %}
                {% endif %}
                {% if catalogitem.product.variant.item.price %}
                {% endif %}
                {% if catalogitem.product.variant.item.url %}
                {% endif %}
                {% for upsell in catalogitem.product.variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.product.variant.url }}
                {{ catalogitem.product.variant.url.absolute }}
                {{ catalogitem.product.variant.url.path }}
                {% if catalogitem.product.variant.legacyRel %}
                        {{ catalogitem.product.variant.legacyRel }}
                {% endif %}
                {% if catalogitem.product.variant.image %}
                        {{ catalogitem.product.variant.image.originalHeight }}
                        {{ catalogitem.product.variant.image.originalWidth }}
                        {{ catalogitem.product.variant.image.url }}
                        {% if catalogitem.product.variant.image.alt %}
                                {{ catalogitem.product.variant.image.alt }}
                        {% endif %}
                        {% if catalogitem.product.variant.image.text %}
                                {{ catalogitem.product.variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.warranty %}
                {{ catalogitem.product.warranty.months }}
        {% endif %}
        {% if catalogitem.product.contentGrid %}
                {{ catalogitem.product.contentGrid }}
        {% endif %}
{% endif %}

{% if catalogitem.unit %}
        {{ catalogitem.unit.name }}
{% endif %}

{% if catalogitem.upsell %}
        {{ catalogitem.upsell.id }}
        {{ catalogitem.upsell.name }}
        {% if catalogitem.upsell.inCart %} ... {% endif %}
        {{ catalogitem.upsell.category.id }}
        {{ catalogitem.upsell.category.productCount }}
        {{ catalogitem.upsell.category.productInStockCount }}
        {{ catalogitem.upsell.category.totalStockQuantity }}
        {{ catalogitem.upsell.category.headline }}
        {{ catalogitem.upsell.category.menuName }}
        {{ catalogitem.upsell.category.name }}
        {% if catalogitem.upsell.category.flagErotic %} ... {% endif %}
        {% if catalogitem.upsell.category.flagImportant %} ... {% endif %}
        {% if catalogitem.upsell.category.noFollow %} ... {% endif %}
        {% for category in catalogitem.upsell.category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.upsell.category.url }}
        {{ catalogitem.upsell.category.url.absolute }}
        {{ catalogitem.upsell.category.url.path }}
        {{ catalogitem.upsell.category.variantType.id }}
        {{ catalogitem.upsell.category.variantType.name }}
        {% for video in catalogitem.upsell.category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.upsell.category.pathNames }}
        {{ catalogitem.upsell.category.pathIds }}
        {{ catalogitem.upsell.category.templateAttribute }}
        {% if catalogitem.upsell.category.subHeadline %}
                {{ catalogitem.upsell.category.subHeadline }}
        {% endif %}
        {% if catalogitem.upsell.category.text %}
                {{ catalogitem.upsell.category.text }}
        {% endif %}
        {% if catalogitem.upsell.category.parent %}
                {{ catalogitem.upsell.category.parent.id }}
                {{ catalogitem.upsell.category.parent.productCount }}
                {{ catalogitem.upsell.category.parent.productInStockCount }}
                {{ catalogitem.upsell.category.parent.totalStockQuantity }}
                {{ catalogitem.upsell.category.parent.headline }}
                {{ catalogitem.upsell.category.parent.menuName }}
                {{ catalogitem.upsell.category.parent.name }}
                {% if catalogitem.upsell.category.parent.flagErotic %} ... {% endif %}
                {% if catalogitem.upsell.category.parent.flagImportant %} ... {% endif %}
                {% if catalogitem.upsell.category.parent.noFollow %} ... {% endif %}
                {% for category in catalogitem.upsell.category.parent.subcategories %}
                {% endfor %}
                {% for video in catalogitem.upsell.category.parent.videos %}
                {% endfor %}
                {{ catalogitem.upsell.category.parent.pathNames }}
                {{ catalogitem.upsell.category.parent.pathIds }}
                {{ catalogitem.upsell.category.parent.templateAttribute }}
                {% if catalogitem.upsell.category.parent.subHeadline %}
                        {{ catalogitem.upsell.category.parent.subHeadline }}
                {% endif %}
                {% if catalogitem.upsell.category.parent.text %}
                        {{ catalogitem.upsell.category.parent.text }}
                {% endif %}
                {% if catalogitem.upsell.category.parent.image %}
                {% endif %}
                {% if catalogitem.upsell.category.parent.contentGrid %}
                        {{ catalogitem.upsell.category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.category.image %}
                {{ catalogitem.upsell.category.image.originalHeight }}
                {{ catalogitem.upsell.category.image.originalWidth }}
                {{ catalogitem.upsell.category.image.url }}
                {% if catalogitem.upsell.category.image.alt %}
                        {{ catalogitem.upsell.category.image.alt }}
                {% endif %}
                {% if catalogitem.upsell.category.image.text %}
                        {{ catalogitem.upsell.category.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.category.contentGrid %}
                {{ catalogitem.upsell.category.contentGrid }}
        {% endif %}
        {{ catalogitem.upsell.price.vatRate }}
        {{ catalogitem.upsell.price.current.currency }}
        {{ catalogitem.upsell.price.current.formatted }}
        {{ catalogitem.upsell.price.current.value }}
        {% if catalogitem.upsell.price.current.perUnit %}
        {% endif %}
        {% if catalogitem.upsell.price.discountPercent %}
                {{ catalogitem.upsell.price.discountPercent }}
        {% endif %}
        {% if catalogitem.upsell.price.discountValidTo %}
                {{ catalogitem.upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogitem.upsell.price.beforeDiscount %}
                {{ catalogitem.upsell.price.beforeDiscount.currency }}
                {{ catalogitem.upsell.price.beforeDiscount.formatted }}
                {{ catalogitem.upsell.price.beforeDiscount.value }}
                {% if catalogitem.upsell.price.beforeDiscount.perUnit %}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.price.discount %}
                {{ catalogitem.upsell.price.discount.currency }}
                {{ catalogitem.upsell.price.discount.formatted }}
                {{ catalogitem.upsell.price.discount.value }}
                {% if catalogitem.upsell.price.discount.perUnit %}
                {% endif %}
        {% endif %}
        {{ catalogitem.upsell.product.id }}
        {{ catalogitem.upsell.product.name }}
        {{ catalogitem.upsell.product.trackingId }}
        {{ catalogitem.upsell.product.dateCreated|date('d. m. Y H:i') }}
        {% if catalogitem.upsell.product.active %} ... {% endif %}
        {% if catalogitem.upsell.product.compared %} ... {% endif %}
        {% if catalogitem.upsell.product.differentVariantPrices %} ... {% endif %}
        {% if catalogitem.upsell.product.flagNew %} ... {% endif %}
        {% if catalogitem.upsell.product.flagPromo %} ... {% endif %}
        {% if catalogitem.upsell.product.flagSecondHand %} ... {% endif %}
        {% if catalogitem.upsell.product.flagSellout %} ... {% endif %}
        {% if catalogitem.upsell.product.otherDiscountApplicable %} ... {% endif %}
        {% if catalogitem.upsell.product.soldSeparately %} ... {% endif %}
        {% for address in catalogitem.upsell.product.publicContacts %}
                {% if address.city %}
                        {{ address.city }}
                {% endif %}
                {% if address.company %}
                        {{ address.company }}
                {% endif %}
                {% if address.companyId %}
                        {{ address.companyId }}
                {% endif %}
                {% if address.email %}
                        {{ address.email }}
                {% endif %}
                {% if address.phone %}
                        {{ address.phone }}
                {% endif %}
                {% if address.region %}
                        {{ address.region }}
                {% endif %}
                {% if address.street %}
                        {{ address.street }}
                {% endif %}
                {% if address.vatId %}
                        {{ address.vatId }}
                {% endif %}
                {% if address.web %}
                        {{ address.web }}
                {% endif %}
                {% if address.zip %}
                        {{ address.zip }}
                {% endif %}
                {% if address.purpose %}
                {% endif %}
                {% if address.country %}
                {% endif %}
        {% endfor %}
        {% for attributeInstance in catalogitem.upsell.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in catalogitem.upsell.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.upsell.product.category.id }}
        {{ catalogitem.upsell.product.category.productCount }}
        {{ catalogitem.upsell.product.category.productInStockCount }}
        {{ catalogitem.upsell.product.category.totalStockQuantity }}
        {{ catalogitem.upsell.product.category.headline }}
        {{ catalogitem.upsell.product.category.menuName }}
        {{ catalogitem.upsell.product.category.name }}
        {% if catalogitem.upsell.product.category.flagErotic %} ... {% endif %}
        {% if catalogitem.upsell.product.category.flagImportant %} ... {% endif %}
        {% if catalogitem.upsell.product.category.noFollow %} ... {% endif %}
        {% for category in catalogitem.upsell.product.category.subcategories %}
        {% endfor %}
        {% for video in catalogitem.upsell.product.category.videos %}
        {% endfor %}
        {{ catalogitem.upsell.product.category.pathNames }}
        {{ catalogitem.upsell.product.category.pathIds }}
        {{ catalogitem.upsell.product.category.templateAttribute }}
        {% if catalogitem.upsell.product.category.subHeadline %}
                {{ catalogitem.upsell.product.category.subHeadline }}
        {% endif %}
        {% if catalogitem.upsell.product.category.text %}
                {{ catalogitem.upsell.product.category.text }}
        {% endif %}
        {% if catalogitem.upsell.product.category.parent %}
        {% endif %}
        {% if catalogitem.upsell.product.category.image %}
        {% endif %}
        {% if catalogitem.upsell.product.category.contentGrid %}
                {{ catalogitem.upsell.product.category.contentGrid }}
        {% endif %}
        {% for category in catalogitem.upsell.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in catalogitem.upsell.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in catalogitem.upsell.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.upsell.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.upsell.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.upsell.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.upsell.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.upsell.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.upsell.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.upsell.product.item.cartAmountRequiredMultiplier }}
        {{ catalogitem.upsell.product.item.id }}
        {{ catalogitem.upsell.product.item.loyaltyPointsAmount }}
        {{ catalogitem.upsell.product.item.name }}
        {{ catalogitem.upsell.product.item.trackingId }}
        {% if catalogitem.upsell.product.item.digital %} ... {% endif %}
        {% if catalogitem.upsell.product.item.sellable %} ... {% endif %}
        {% if catalogitem.upsell.product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in catalogitem.upsell.product.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in catalogitem.upsell.product.item.availableUpsells %}
        {% endfor %}
        {{ catalogitem.upsell.product.item.trackingIds }}
        {{ catalogitem.upsell.product.item.storageLocations }}
        {% if catalogitem.upsell.product.item.packageWeight %}
                {{ catalogitem.upsell.product.item.packageWeight }}
        {% endif %}
        {% if catalogitem.upsell.product.item.code %}
                {{ catalogitem.upsell.product.item.code }}
        {% endif %}
        {% if catalogitem.upsell.product.item.packageHeight %}
                {{ catalogitem.upsell.product.item.packageHeight }}
        {% endif %}
        {% if catalogitem.upsell.product.item.packageLength %}
                {{ catalogitem.upsell.product.item.packageLength }}
        {% endif %}
        {% if catalogitem.upsell.product.item.packageWidth %}
                {{ catalogitem.upsell.product.item.packageWidth }}
        {% endif %}
        {% if catalogitem.upsell.product.item.bundle %}
        {% endif %}
        {% if catalogitem.upsell.product.item.cheapestDelivery %}
        {% endif %}
        {% if catalogitem.upsell.product.item.freeDelivery %}
        {% endif %}
        {% if catalogitem.upsell.product.item.closestFreeDelivery %}
        {% endif %}
        {% if catalogitem.upsell.product.item.packageDimensions %}
        {% endif %}
        {% if catalogitem.upsell.product.item.image %}
        {% endif %}
        {% if catalogitem.upsell.product.item.price %}
        {% endif %}
        {% if catalogitem.upsell.product.item.url %}
        {% endif %}
        {% if catalogitem.upsell.product.item.variant %}
        {% endif %}
        {% for label in catalogitem.upsell.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productDesigner in catalogitem.upsell.product.configurators %}
                {{ productDesigner.name }}
                {% if productDesigner.result %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in catalogitem.upsell.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in catalogitem.upsell.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for address in product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productDesigner in product.configurators %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for upsell in product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.upsell.product.rating.count }}
        {% if catalogitem.upsell.product.rating.voted %} ... {% endif %}
        {% if catalogitem.upsell.product.rating.average %}
                {{ catalogitem.upsell.product.rating.average }}
        {% endif %}
        {% for upsell in catalogitem.upsell.product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.upsell.product.url }}
        {{ catalogitem.upsell.product.url.absolute }}
        {{ catalogitem.upsell.product.url.path }}
        {% for variantChoiceStep in catalogitem.upsell.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.upsell.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.upsell.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.upsell.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.upsell.product.variantType.id }}
        {{ catalogitem.upsell.product.variantType.name }}
        {% for video in catalogitem.upsell.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.upsell.product.trackingIds }}
        {% if catalogitem.upsell.product.currentSubName %}
                {{ catalogitem.upsell.product.currentSubName }}
        {% endif %}
        {% if catalogitem.upsell.product.nameSuffix %}
                {{ catalogitem.upsell.product.nameSuffix }}
        {% endif %}
        {% if catalogitem.upsell.product.nameSupplier %}
                {{ catalogitem.upsell.product.nameSupplier }}
        {% endif %}
        {% if catalogitem.upsell.product.text %}
                {{ catalogitem.upsell.product.text }}
        {% endif %}
        {% if catalogitem.upsell.product.attribute %}
                {{ catalogitem.upsell.product.attribute.name }}
                {{ catalogitem.upsell.product.attribute.valuesHtml }}
                {% for attributeValueInstance in catalogitem.upsell.product.attribute.values %}
                {% endfor %}
                {% if catalogitem.upsell.product.attribute.description %}
                        {{ catalogitem.upsell.product.attribute.description }}
                {% endif %}
                {% if catalogitem.upsell.product.attribute.group %}
                {% endif %}
                {% if catalogitem.upsell.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.product.brand %}
                {{ catalogitem.upsell.product.brand.id }}
                {{ catalogitem.upsell.product.brand.headline }}
                {{ catalogitem.upsell.product.brand.name }}
                {% if catalogitem.upsell.product.brand.flagImportant %} ... {% endif %}
                {% for address in catalogitem.upsell.product.brand.publicContacts %}
                {% endfor %}
                {% for category in catalogitem.upsell.product.brand.categories %}
                {% endfor %}
                {% if catalogitem.upsell.product.brand.code %}
                        {{ catalogitem.upsell.product.brand.code }}
                {% endif %}
                {% if catalogitem.upsell.product.brand.web %}
                        {{ catalogitem.upsell.product.brand.web }}
                {% endif %}
                {% if catalogitem.upsell.product.brand.text %}
                        {{ catalogitem.upsell.product.brand.text }}
                {% endif %}
                {% if catalogitem.upsell.product.brand.image %}
                {% endif %}
                {% if catalogitem.upsell.product.brand.seo %}
                {% endif %}
                {% if catalogitem.upsell.product.brand.contentGrid %}
                        {{ catalogitem.upsell.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.product.image %}
                {{ catalogitem.upsell.product.image.originalHeight }}
                {{ catalogitem.upsell.product.image.originalWidth }}
                {{ catalogitem.upsell.product.image.url }}
                {% if catalogitem.upsell.product.image.alt %}
                        {{ catalogitem.upsell.product.image.alt }}
                {% endif %}
                {% if catalogitem.upsell.product.image.text %}
                        {{ catalogitem.upsell.product.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.product.imageForEnumValueId %}
                {{ catalogitem.upsell.product.imageForEnumValueId.originalHeight }}
                {{ catalogitem.upsell.product.imageForEnumValueId.originalWidth }}
                {{ catalogitem.upsell.product.imageForEnumValueId.url }}
                {% if catalogitem.upsell.product.imageForEnumValueId.alt %}
                        {{ catalogitem.upsell.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if catalogitem.upsell.product.imageForEnumValueId.text %}
                        {{ catalogitem.upsell.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.product.successor %}
                {{ catalogitem.upsell.product.successor.id }}
                {{ catalogitem.upsell.product.successor.name }}
                {{ catalogitem.upsell.product.successor.trackingId }}
                {{ catalogitem.upsell.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if catalogitem.upsell.product.successor.active %} ... {% endif %}
                {% if catalogitem.upsell.product.successor.compared %} ... {% endif %}
                {% if catalogitem.upsell.product.successor.differentVariantPrices %} ... {% endif %}
                {% if catalogitem.upsell.product.successor.flagNew %} ... {% endif %}
                {% if catalogitem.upsell.product.successor.flagPromo %} ... {% endif %}
                {% if catalogitem.upsell.product.successor.flagSecondHand %} ... {% endif %}
                {% if catalogitem.upsell.product.successor.flagSellout %} ... {% endif %}
                {% if catalogitem.upsell.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if catalogitem.upsell.product.successor.soldSeparately %} ... {% endif %}
                {% for address in catalogitem.upsell.product.successor.publicContacts %}
                {% endfor %}
                {% for attributeInstance in catalogitem.upsell.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogitem.upsell.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogitem.upsell.product.successor.categories %}
                {% endfor %}
                {% for category in catalogitem.upsell.product.successor.otherCategories %}
                {% endfor %}
                {% for file in catalogitem.upsell.product.successor.files %}
                {% endfor %}
                {% for image in catalogitem.upsell.product.successor.images %}
                {% endfor %}
                {% for image in catalogitem.upsell.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogitem.upsell.product.successor.images360 %}
                {% endfor %}
                {% for image in catalogitem.upsell.product.successor.currentImages %}
                {% endfor %}
                {% for image in catalogitem.upsell.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogitem.upsell.product.successor.otherImages %}
                {% endfor %}
                {% for label in catalogitem.upsell.product.successor.labels %}
                {% endfor %}
                {% for productDesigner in catalogitem.upsell.product.successor.configurators %}
                {% endfor %}
                {% for productEnumValue in catalogitem.upsell.product.successor.enumValues %}
                {% endfor %}
                {% for product in catalogitem.upsell.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogitem.upsell.product.successor.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogitem.upsell.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogitem.upsell.product.successor.currentVariants %}
                {% endfor %}
                {% for variant in catalogitem.upsell.product.successor.variants %}
                {% endfor %}
                {% for variant in catalogitem.upsell.product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogitem.upsell.product.successor.videos %}
                {% endfor %}
                {{ catalogitem.upsell.product.successor.trackingIds }}
                {% if catalogitem.upsell.product.successor.currentSubName %}
                        {{ catalogitem.upsell.product.successor.currentSubName }}
                {% endif %}
                {% if catalogitem.upsell.product.successor.nameSuffix %}
                        {{ catalogitem.upsell.product.successor.nameSuffix }}
                {% endif %}
                {% if catalogitem.upsell.product.successor.nameSupplier %}
                        {{ catalogitem.upsell.product.successor.nameSupplier }}
                {% endif %}
                {% if catalogitem.upsell.product.successor.text %}
                        {{ catalogitem.upsell.product.successor.text }}
                {% endif %}
                {% if catalogitem.upsell.product.successor.attribute %}
                {% endif %}
                {% if catalogitem.upsell.product.successor.brand %}
                {% endif %}
                {% if catalogitem.upsell.product.successor.image %}
                {% endif %}
                {% if catalogitem.upsell.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if catalogitem.upsell.product.successor.seo %}
                {% endif %}
                {% if catalogitem.upsell.product.successor.supplier %}
                {% endif %}
                {% if catalogitem.upsell.product.successor.unit %}
                {% endif %}
                {% if catalogitem.upsell.product.successor.variant %}
                {% endif %}
                {% if catalogitem.upsell.product.successor.warranty %}
                {% endif %}
                {% if catalogitem.upsell.product.successor.contentGrid %}
                        {{ catalogitem.upsell.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.product.seo %}
                {% if catalogitem.upsell.product.seo.description %}
                        {{ catalogitem.upsell.product.seo.description }}
                {% endif %}
                {% if catalogitem.upsell.product.seo.keywords %}
                        {{ catalogitem.upsell.product.seo.keywords }}
                {% endif %}
                {% if catalogitem.upsell.product.seo.title %}
                        {{ catalogitem.upsell.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.product.supplier %}
                {{ catalogitem.upsell.product.supplier.id }}
                {{ catalogitem.upsell.product.supplier.name }}
                {% for address in catalogitem.upsell.product.supplier.publicContacts %}
                {% endfor %}
        {% endif %}
        {% if catalogitem.upsell.product.unit %}
                {{ catalogitem.upsell.product.unit.name }}
        {% endif %}
        {% if catalogitem.upsell.product.variant %}
                {{ catalogitem.upsell.product.variant.id }}
                {{ catalogitem.upsell.product.variant.name }}
                {{ catalogitem.upsell.product.variant.trackingId }}
                {% if catalogitem.upsell.product.variant.active %} ... {% endif %}
                {% if catalogitem.upsell.product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in catalogitem.upsell.product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in catalogitem.upsell.product.variant.enumValues %}
                {% endfor %}
                {% for image in catalogitem.upsell.product.variant.images %}
                {% endfor %}
                {% for upsell in catalogitem.upsell.product.variant.availableUpsells %}
                {% endfor %}
                {% if catalogitem.upsell.product.variant.legacyRel %}
                        {{ catalogitem.upsell.product.variant.legacyRel }}
                {% endif %}
                {% if catalogitem.upsell.product.variant.image %}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.product.warranty %}
                {{ catalogitem.upsell.product.warranty.months }}
        {% endif %}
        {% if catalogitem.upsell.product.contentGrid %}
                {{ catalogitem.upsell.product.contentGrid }}
        {% endif %}
        {{ catalogitem.upsell.group.id }}
        {{ catalogitem.upsell.group.requiredNoteMaximumLength }}
        {{ catalogitem.upsell.group.name }}
        {% if catalogitem.upsell.group.requiredNote %} ... {% endif %}
        {% if catalogitem.upsell.group.requiredUpload %} ... {% endif %}
        {% if catalogitem.upsell.group.singleSelection %} ... {% endif %}
        {% if catalogitem.upsell.group.text %}
                {{ catalogitem.upsell.group.text }}
        {% endif %}
        {% if catalogitem.upsell.group.uploadInput %}
                {{ catalogitem.upsell.group.uploadInput }}
        {% endif %}
        {% if catalogitem.upsell.code %}
                {{ catalogitem.upsell.code }}
        {% endif %}
        {% if catalogitem.upsell.vatRate %}
                {{ catalogitem.upsell.vatRate }}
        {% endif %}
        {% if catalogitem.upsell.image %}
                {{ catalogitem.upsell.image.originalHeight }}
                {{ catalogitem.upsell.image.originalWidth }}
                {{ catalogitem.upsell.image.url }}
                {% if catalogitem.upsell.image.alt %}
                        {{ catalogitem.upsell.image.alt }}
                {% endif %}
                {% if catalogitem.upsell.image.text %}
                        {{ catalogitem.upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.unit %}
                {{ catalogitem.upsell.unit.name }}
        {% endif %}
{% endif %}

{% if catalogitem.variant %}
        {{ catalogitem.variant.id }}
        {{ catalogitem.variant.name }}
        {{ catalogitem.variant.trackingId }}
        {% if catalogitem.variant.active %} ... {% endif %}
        {% if catalogitem.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in catalogitem.variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in catalogitem.variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {{ enumValue.enum.id }}
                {{ enumValue.enum.name }}
                {% for enumValue in enumValue.enum.values %}
                {% endfor %}
                {% if enumValue.enum.text %}
                        {{ enumValue.enum.text }}
                {% endif %}
                {% if enumValue.enum.meaning %}
                {% endif %}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                        {{ enumValue.image.originalHeight }}
                        {{ enumValue.image.originalWidth }}
                        {{ enumValue.image.url }}
                        {% if enumValue.image.alt %}
                                {{ enumValue.image.alt }}
                        {% endif %}
                        {% if enumValue.image.text %}
                                {{ enumValue.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.variant.item.cartAmountRequiredMultiplier }}
        {{ catalogitem.variant.item.id }}
        {{ catalogitem.variant.item.loyaltyPointsAmount }}
        {{ catalogitem.variant.item.name }}
        {{ catalogitem.variant.item.trackingId }}
        {% if catalogitem.variant.item.digital %} ... {% endif %}
        {% if catalogitem.variant.item.sellable %} ... {% endif %}
        {% if catalogitem.variant.item.service %} ... {% endif %}
        {{ catalogitem.variant.item.availability.availableAmount }}
        {{ catalogitem.variant.item.availability.availableAmountExpectedToStorageRoom }}
        {{ catalogitem.variant.item.availability.availableAmountInShowroom }}
        {{ catalogitem.variant.item.availability.availableAmountInStockroom }}
        {{ catalogitem.variant.item.availability.availableAmountInStorageCenter }}
        {{ catalogitem.variant.item.availability.availableAmountOnWayToStorageRoom }}
        {{ catalogitem.variant.item.availability.availableDemandsAmountFromSupplierToStorageRoom }}
        {{ catalogitem.variant.item.availability.hours }}
        {{ catalogitem.variant.item.availability.totalAmount }}
        {% if catalogitem.variant.item.availability.inShowroom %} ... {% endif %}
        {% if catalogitem.variant.item.availability.inStock %} ... {% endif %}
        {% if catalogitem.variant.item.availability.preorder %} ... {% endif %}
        {% if catalogitem.variant.item.availability.watchdogSupported %} ... {% endif %}
        {% for deliveryOption in catalogitem.variant.item.availability.deliveryOptions %}
        {% endfor %}
        {% for expectedAmount in catalogitem.variant.item.availability.availableAmountsExpectedToStorageRoom %}
        {% endfor %}
        {% for expectedAmount in catalogitem.variant.item.availability.availableAmountsOnWayToStorageRoom %}
        {% endfor %}
        {% for expectedSupplierAmount in catalogitem.variant.item.availability.availableDemandsFromSupplierToStorageRoom %}
        {% endfor %}
        {% if catalogitem.variant.item.availability.text %}
                {{ catalogitem.variant.item.availability.text }}
        {% endif %}
        {% if catalogitem.variant.item.availability.dateExpected %}
                {{ catalogitem.variant.item.availability.dateExpected|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogitem.variant.item.availability.deliveryOption %}
        {% endif %}
        {% for availableUpsellGroup in catalogitem.variant.item.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.variant.item.product.id }}
        {{ catalogitem.variant.item.product.name }}
        {{ catalogitem.variant.item.product.trackingId }}
        {{ catalogitem.variant.item.product.dateCreated|date('d. m. Y H:i') }}
        {% if catalogitem.variant.item.product.active %} ... {% endif %}
        {% if catalogitem.variant.item.product.compared %} ... {% endif %}
        {% if catalogitem.variant.item.product.differentVariantPrices %} ... {% endif %}
        {% if catalogitem.variant.item.product.flagNew %} ... {% endif %}
        {% if catalogitem.variant.item.product.flagPromo %} ... {% endif %}
        {% if catalogitem.variant.item.product.flagSecondHand %} ... {% endif %}
        {% if catalogitem.variant.item.product.flagSellout %} ... {% endif %}
        {% if catalogitem.variant.item.product.otherDiscountApplicable %} ... {% endif %}
        {% if catalogitem.variant.item.product.soldSeparately %} ... {% endif %}
        {% for address in catalogitem.variant.item.product.publicContacts %}
        {% endfor %}
        {% for attributeInstance in catalogitem.variant.item.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in catalogitem.variant.item.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in catalogitem.variant.item.product.categories %}
        {% endfor %}
        {% for category in catalogitem.variant.item.product.otherCategories %}
        {% endfor %}
        {% for file in catalogitem.variant.item.product.files %}
        {% endfor %}
        {% for image in catalogitem.variant.item.product.images %}
        {% endfor %}
        {% for image in catalogitem.variant.item.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in catalogitem.variant.item.product.images360 %}
        {% endfor %}
        {% for image in catalogitem.variant.item.product.currentImages %}
        {% endfor %}
        {% for image in catalogitem.variant.item.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in catalogitem.variant.item.product.otherImages %}
        {% endfor %}
        {% for label in catalogitem.variant.item.product.labels %}
        {% endfor %}
        {% for productDesigner in catalogitem.variant.item.product.configurators %}
        {% endfor %}
        {% for productEnumValue in catalogitem.variant.item.product.enumValues %}
        {% endfor %}
        {% for product in catalogitem.variant.item.product.packTemplateProducts %}
        {% endfor %}
        {% for upsell in catalogitem.variant.item.product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in catalogitem.variant.item.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in catalogitem.variant.item.product.currentVariants %}
        {% endfor %}
        {% for variant in catalogitem.variant.item.product.variants %}
        {% endfor %}
        {% for variant in catalogitem.variant.item.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in catalogitem.variant.item.product.videos %}
        {% endfor %}
        {{ catalogitem.variant.item.product.trackingIds }}
        {% if catalogitem.variant.item.product.currentSubName %}
                {{ catalogitem.variant.item.product.currentSubName }}
        {% endif %}
        {% if catalogitem.variant.item.product.nameSuffix %}
                {{ catalogitem.variant.item.product.nameSuffix }}
        {% endif %}
        {% if catalogitem.variant.item.product.nameSupplier %}
                {{ catalogitem.variant.item.product.nameSupplier }}
        {% endif %}
        {% if catalogitem.variant.item.product.text %}
                {{ catalogitem.variant.item.product.text }}
        {% endif %}
        {% if catalogitem.variant.item.product.attribute %}
        {% endif %}
        {% if catalogitem.variant.item.product.brand %}
        {% endif %}
        {% if catalogitem.variant.item.product.image %}
        {% endif %}
        {% if catalogitem.variant.item.product.imageForEnumValueId %}
        {% endif %}
        {% if catalogitem.variant.item.product.successor %}
        {% endif %}
        {% if catalogitem.variant.item.product.seo %}
        {% endif %}
        {% if catalogitem.variant.item.product.supplier %}
        {% endif %}
        {% if catalogitem.variant.item.product.unit %}
        {% endif %}
        {% if catalogitem.variant.item.product.warranty %}
        {% endif %}
        {% if catalogitem.variant.item.product.contentGrid %}
                {{ catalogitem.variant.item.product.contentGrid }}
        {% endif %}
        {% for upsell in catalogitem.variant.item.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.variant.item.trackingIds }}
        {{ catalogitem.variant.item.storageLocations }}
        {% if catalogitem.variant.item.packageWeight %}
                {{ catalogitem.variant.item.packageWeight }}
        {% endif %}
        {% if catalogitem.variant.item.code %}
                {{ catalogitem.variant.item.code }}
        {% endif %}
        {% if catalogitem.variant.item.packageHeight %}
                {{ catalogitem.variant.item.packageHeight }}
        {% endif %}
        {% if catalogitem.variant.item.packageLength %}
                {{ catalogitem.variant.item.packageLength }}
        {% endif %}
        {% if catalogitem.variant.item.packageWidth %}
                {{ catalogitem.variant.item.packageWidth }}
        {% endif %}
        {% if catalogitem.variant.item.bundle %}
                {% if catalogitem.variant.item.bundle.multiPack %} ... {% endif %}
                {% if catalogitem.variant.item.bundle.price %}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.item.cheapestDelivery %}
                {{ catalogitem.variant.item.cheapestDelivery.inputId }}
                {{ catalogitem.variant.item.cheapestDelivery.name }}
                {{ catalogitem.variant.item.cheapestDelivery.vatRate }}
                {% if catalogitem.variant.item.cheapestDelivery.branchRequired %} ... {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.currier %} ... {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.digital %} ... {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.free %} ... {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.pickup %} ... {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.selected %} ... {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.text %}
                        {{ catalogitem.variant.item.cheapestDelivery.text }}
                {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.branch %}
                {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.carrier %}
                {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.deliveryDate %}
                {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.packageType %}
                {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.image %}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.item.freeDelivery %}
                {{ catalogitem.variant.item.freeDelivery.name }}
                {{ catalogitem.variant.item.freeDelivery.vatRate }}
                {% if catalogitem.variant.item.freeDelivery.deliveryAddressRequired %} ... {% endif %}
                {% if catalogitem.variant.item.freeDelivery.id %}
                        {{ catalogitem.variant.item.freeDelivery.id }}
                {% endif %}
                {% if catalogitem.variant.item.freeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.item.closestFreeDelivery %}
                {{ catalogitem.variant.item.closestFreeDelivery.name }}
                {{ catalogitem.variant.item.closestFreeDelivery.vatRate }}
                {% if catalogitem.variant.item.closestFreeDelivery.deliveryAddressRequired %} ... {% endif %}
                {% if catalogitem.variant.item.closestFreeDelivery.id %}
                        {{ catalogitem.variant.item.closestFreeDelivery.id }}
                {% endif %}
                {% if catalogitem.variant.item.closestFreeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.item.packageDimensions %}
                {{ catalogitem.variant.item.packageDimensions }}
                {{ catalogitem.variant.item.packageDimensions.unit }}
                {{ catalogitem.variant.item.packageDimensions.height }}
                {{ catalogitem.variant.item.packageDimensions.length }}
                {{ catalogitem.variant.item.packageDimensions.width }}
        {% endif %}
        {% if catalogitem.variant.item.image %}
                {{ catalogitem.variant.item.image.originalHeight }}
                {{ catalogitem.variant.item.image.originalWidth }}
                {{ catalogitem.variant.item.image.url }}
                {% if catalogitem.variant.item.image.alt %}
                        {{ catalogitem.variant.item.image.alt }}
                {% endif %}
                {% if catalogitem.variant.item.image.text %}
                        {{ catalogitem.variant.item.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.item.price %}
                {{ catalogitem.variant.item.price.vatRate }}
                {% if catalogitem.variant.item.price.discountPercent %}
                        {{ catalogitem.variant.item.price.discountPercent }}
                {% endif %}
                {% if catalogitem.variant.item.price.discountValidTo %}
                        {{ catalogitem.variant.item.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogitem.variant.item.price.beforeDiscount %}
                {% endif %}
                {% if catalogitem.variant.item.price.discount %}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.item.url %}
                {{ catalogitem.variant.item.url }}
                {{ catalogitem.variant.item.url.absolute }}
                {{ catalogitem.variant.item.url.path }}
        {% endif %}
        {{ catalogitem.variant.product.id }}
        {{ catalogitem.variant.product.name }}
        {{ catalogitem.variant.product.trackingId }}
        {{ catalogitem.variant.product.dateCreated|date('d. m. Y H:i') }}
        {% if catalogitem.variant.product.active %} ... {% endif %}
        {% if catalogitem.variant.product.compared %} ... {% endif %}
        {% if catalogitem.variant.product.differentVariantPrices %} ... {% endif %}
        {% if catalogitem.variant.product.flagNew %} ... {% endif %}
        {% if catalogitem.variant.product.flagPromo %} ... {% endif %}
        {% if catalogitem.variant.product.flagSecondHand %} ... {% endif %}
        {% if catalogitem.variant.product.flagSellout %} ... {% endif %}
        {% if catalogitem.variant.product.otherDiscountApplicable %} ... {% endif %}
        {% if catalogitem.variant.product.soldSeparately %} ... {% endif %}
        {% for address in catalogitem.variant.product.publicContacts %}
                {% if address.city %}
                        {{ address.city }}
                {% endif %}
                {% if address.company %}
                        {{ address.company }}
                {% endif %}
                {% if address.companyId %}
                        {{ address.companyId }}
                {% endif %}
                {% if address.email %}
                        {{ address.email }}
                {% endif %}
                {% if address.phone %}
                        {{ address.phone }}
                {% endif %}
                {% if address.region %}
                        {{ address.region }}
                {% endif %}
                {% if address.street %}
                        {{ address.street }}
                {% endif %}
                {% if address.vatId %}
                        {{ address.vatId }}
                {% endif %}
                {% if address.web %}
                        {{ address.web }}
                {% endif %}
                {% if address.zip %}
                        {{ address.zip }}
                {% endif %}
                {% if address.purpose %}
                {% endif %}
                {% if address.country %}
                {% endif %}
        {% endfor %}
        {% for attributeInstance in catalogitem.variant.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in catalogitem.variant.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.variant.product.category.id }}
        {{ catalogitem.variant.product.category.productCount }}
        {{ catalogitem.variant.product.category.productInStockCount }}
        {{ catalogitem.variant.product.category.totalStockQuantity }}
        {{ catalogitem.variant.product.category.headline }}
        {{ catalogitem.variant.product.category.menuName }}
        {{ catalogitem.variant.product.category.name }}
        {% if catalogitem.variant.product.category.flagErotic %} ... {% endif %}
        {% if catalogitem.variant.product.category.flagImportant %} ... {% endif %}
        {% if catalogitem.variant.product.category.noFollow %} ... {% endif %}
        {% for category in catalogitem.variant.product.category.subcategories %}
        {% endfor %}
        {% for video in catalogitem.variant.product.category.videos %}
        {% endfor %}
        {{ catalogitem.variant.product.category.pathNames }}
        {{ catalogitem.variant.product.category.pathIds }}
        {{ catalogitem.variant.product.category.templateAttribute }}
        {% if catalogitem.variant.product.category.subHeadline %}
                {{ catalogitem.variant.product.category.subHeadline }}
        {% endif %}
        {% if catalogitem.variant.product.category.text %}
                {{ catalogitem.variant.product.category.text }}
        {% endif %}
        {% if catalogitem.variant.product.category.parent %}
        {% endif %}
        {% if catalogitem.variant.product.category.image %}
        {% endif %}
        {% if catalogitem.variant.product.category.contentGrid %}
                {{ catalogitem.variant.product.category.contentGrid }}
        {% endif %}
        {% for category in catalogitem.variant.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in catalogitem.variant.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathNames }}
                {{ category.pathIds }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in catalogitem.variant.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.variant.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.variant.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.variant.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.variant.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.variant.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.variant.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.variant.product.item.cartAmountRequiredMultiplier }}
        {{ catalogitem.variant.product.item.id }}
        {{ catalogitem.variant.product.item.loyaltyPointsAmount }}
        {{ catalogitem.variant.product.item.name }}
        {{ catalogitem.variant.product.item.trackingId }}
        {% if catalogitem.variant.product.item.digital %} ... {% endif %}
        {% if catalogitem.variant.product.item.sellable %} ... {% endif %}
        {% if catalogitem.variant.product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in catalogitem.variant.product.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in catalogitem.variant.product.item.availableUpsells %}
        {% endfor %}
        {{ catalogitem.variant.product.item.trackingIds }}
        {{ catalogitem.variant.product.item.storageLocations }}
        {% if catalogitem.variant.product.item.packageWeight %}
                {{ catalogitem.variant.product.item.packageWeight }}
        {% endif %}
        {% if catalogitem.variant.product.item.code %}
                {{ catalogitem.variant.product.item.code }}
        {% endif %}
        {% if catalogitem.variant.product.item.packageHeight %}
                {{ catalogitem.variant.product.item.packageHeight }}
        {% endif %}
        {% if catalogitem.variant.product.item.packageLength %}
                {{ catalogitem.variant.product.item.packageLength }}
        {% endif %}
        {% if catalogitem.variant.product.item.packageWidth %}
                {{ catalogitem.variant.product.item.packageWidth }}
        {% endif %}
        {% if catalogitem.variant.product.item.bundle %}
        {% endif %}
        {% if catalogitem.variant.product.item.cheapestDelivery %}
        {% endif %}
        {% if catalogitem.variant.product.item.freeDelivery %}
        {% endif %}
        {% if catalogitem.variant.product.item.closestFreeDelivery %}
        {% endif %}
        {% if catalogitem.variant.product.item.packageDimensions %}
        {% endif %}
        {% if catalogitem.variant.product.item.image %}
        {% endif %}
        {% if catalogitem.variant.product.item.price %}
        {% endif %}
        {% if catalogitem.variant.product.item.url %}
        {% endif %}
        {% for label in catalogitem.variant.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productDesigner in catalogitem.variant.product.configurators %}
                {{ productDesigner.name }}
                {% if productDesigner.result %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in catalogitem.variant.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in catalogitem.variant.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for address in product.publicContacts %}
                {% endfor %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productDesigner in product.configurators %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for upsell in product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.variant.product.rating.count }}
        {% if catalogitem.variant.product.rating.voted %} ... {% endif %}
        {% if catalogitem.variant.product.rating.average %}
                {{ catalogitem.variant.product.rating.average }}
        {% endif %}
        {% for upsell in catalogitem.variant.product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.variant.product.url }}
        {{ catalogitem.variant.product.url.absolute }}
        {{ catalogitem.variant.product.url.path }}
        {% for variantChoiceStep in catalogitem.variant.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.variant.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.variant.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.variant.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.variant.product.variantType.id }}
        {{ catalogitem.variant.product.variantType.name }}
        {% for video in catalogitem.variant.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.variant.product.trackingIds }}
        {% if catalogitem.variant.product.currentSubName %}
                {{ catalogitem.variant.product.currentSubName }}
        {% endif %}
        {% if catalogitem.variant.product.nameSuffix %}
                {{ catalogitem.variant.product.nameSuffix }}
        {% endif %}
        {% if catalogitem.variant.product.nameSupplier %}
                {{ catalogitem.variant.product.nameSupplier }}
        {% endif %}
        {% if catalogitem.variant.product.text %}
                {{ catalogitem.variant.product.text }}
        {% endif %}
        {% if catalogitem.variant.product.attribute %}
                {{ catalogitem.variant.product.attribute.name }}
                {{ catalogitem.variant.product.attribute.valuesHtml }}
                {% for attributeValueInstance in catalogitem.variant.product.attribute.values %}
                {% endfor %}
                {% if catalogitem.variant.product.attribute.description %}
                        {{ catalogitem.variant.product.attribute.description }}
                {% endif %}
                {% if catalogitem.variant.product.attribute.group %}
                {% endif %}
                {% if catalogitem.variant.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.product.brand %}
                {{ catalogitem.variant.product.brand.id }}
                {{ catalogitem.variant.product.brand.headline }}
                {{ catalogitem.variant.product.brand.name }}
                {% if catalogitem.variant.product.brand.flagImportant %} ... {% endif %}
                {% for address in catalogitem.variant.product.brand.publicContacts %}
                {% endfor %}
                {% for category in catalogitem.variant.product.brand.categories %}
                {% endfor %}
                {% if catalogitem.variant.product.brand.code %}
                        {{ catalogitem.variant.product.brand.code }}
                {% endif %}
                {% if catalogitem.variant.product.brand.web %}
                        {{ catalogitem.variant.product.brand.web }}
                {% endif %}
                {% if catalogitem.variant.product.brand.text %}
                        {{ catalogitem.variant.product.brand.text }}
                {% endif %}
                {% if catalogitem.variant.product.brand.image %}
                {% endif %}
                {% if catalogitem.variant.product.brand.seo %}
                {% endif %}
                {% if catalogitem.variant.product.brand.contentGrid %}
                        {{ catalogitem.variant.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.product.image %}
                {{ catalogitem.variant.product.image.originalHeight }}
                {{ catalogitem.variant.product.image.originalWidth }}
                {{ catalogitem.variant.product.image.url }}
                {% if catalogitem.variant.product.image.alt %}
                        {{ catalogitem.variant.product.image.alt }}
                {% endif %}
                {% if catalogitem.variant.product.image.text %}
                        {{ catalogitem.variant.product.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.product.imageForEnumValueId %}
                {{ catalogitem.variant.product.imageForEnumValueId.originalHeight }}
                {{ catalogitem.variant.product.imageForEnumValueId.originalWidth }}
                {{ catalogitem.variant.product.imageForEnumValueId.url }}
                {% if catalogitem.variant.product.imageForEnumValueId.alt %}
                        {{ catalogitem.variant.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if catalogitem.variant.product.imageForEnumValueId.text %}
                        {{ catalogitem.variant.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.product.successor %}
                {{ catalogitem.variant.product.successor.id }}
                {{ catalogitem.variant.product.successor.name }}
                {{ catalogitem.variant.product.successor.trackingId }}
                {{ catalogitem.variant.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if catalogitem.variant.product.successor.active %} ... {% endif %}
                {% if catalogitem.variant.product.successor.compared %} ... {% endif %}
                {% if catalogitem.variant.product.successor.differentVariantPrices %} ... {% endif %}
                {% if catalogitem.variant.product.successor.flagNew %} ... {% endif %}
                {% if catalogitem.variant.product.successor.flagPromo %} ... {% endif %}
                {% if catalogitem.variant.product.successor.flagSecondHand %} ... {% endif %}
                {% if catalogitem.variant.product.successor.flagSellout %} ... {% endif %}
                {% if catalogitem.variant.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if catalogitem.variant.product.successor.soldSeparately %} ... {% endif %}
                {% for address in catalogitem.variant.product.successor.publicContacts %}
                {% endfor %}
                {% for attributeInstance in catalogitem.variant.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogitem.variant.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogitem.variant.product.successor.categories %}
                {% endfor %}
                {% for category in catalogitem.variant.product.successor.otherCategories %}
                {% endfor %}
                {% for file in catalogitem.variant.product.successor.files %}
                {% endfor %}
                {% for image in catalogitem.variant.product.successor.images %}
                {% endfor %}
                {% for image in catalogitem.variant.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogitem.variant.product.successor.images360 %}
                {% endfor %}
                {% for image in catalogitem.variant.product.successor.currentImages %}
                {% endfor %}
                {% for image in catalogitem.variant.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogitem.variant.product.successor.otherImages %}
                {% endfor %}
                {% for label in catalogitem.variant.product.successor.labels %}
                {% endfor %}
                {% for productDesigner in catalogitem.variant.product.successor.configurators %}
                {% endfor %}
                {% for productEnumValue in catalogitem.variant.product.successor.enumValues %}
                {% endfor %}
                {% for product in catalogitem.variant.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogitem.variant.product.successor.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogitem