Typy objektů¶
v přípravě - není dostupné v šablonách
AccountingDocument¶
Název |
Typ |
Popis |
---|---|---|
code |
string |
Kód |
date |
datetime |
Datum vystavení |
totalPrice |
Celková cena |
|
pdfUrl |
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.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 }}
{% endif %}
{% if accountingdocument.totalPrice.discount %}
{{ accountingdocument.totalPrice.discount.currency }}
{{ accountingdocument.totalPrice.discount.formatted }}
{{ accountingdocument.totalPrice.discount.value }}
{% endif %}
{{ accountingdocument.pdfUrl }}
{{ accountingdocument.pdfUrl.absolute }}
{{ accountingdocument.pdfUrl.path }}
Actuality¶
Název |
Typ |
Popis |
---|---|---|
id |
int |
Id |
name |
string |
Název |
date |
datetime |
Datum |
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¶
Název |
Typ |
Popis |
---|---|---|
name |
Jméno |
|
city |
string | null |
Město |
company |
string | null |
Firma |
companyId |
string | null |
IČ |
string | null |
||
phone |
string | null |
Telefon |
region |
string | null |
Region (stát, okres, …) |
street |
string | null |
Ulice a čp. |
vatId |
string | null |
DIČ |
zip |
string | null |
PSČ |
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.zip %}
{{ address.zip }}
{% endif %}
{% if address.country %}
{{ address.country.code }}
{{ address.country.flagCircleUrl }}
{{ address.country.flagUrl }}
{{ address.country.name }}
{% if address.country.eU %} ... {% endif %}
{% endif %}
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¶
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¶
Název |
Typ |
Popis |
---|---|---|
delivery |
Dodací adrea |
|
invoice |
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.zip %}
{{ addresses.delivery.zip }}
{% 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.zip %}
{{ addresses.invoice.zip }}
{% 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
Název |
Typ |
Popis |
---|---|---|
id |
int |
Id |
string |
||
phone |
string |
Telefon |
position |
string |
Pozice |
name |
Jméno a příjmení |
|
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¶
Název |
Typ |
Popis |
---|---|---|
name |
string |
Název |
url |
URL |
Příklady:
{{ analyticsreport.name }}
{{ analyticsreport.url }}
{{ analyticsreport.url.absolute }}
{{ analyticsreport.url.path }}
Article¶
Název |
Typ |
Popis |
---|---|---|
id |
int |
Id |
name |
string |
Nazev |
datePublished |
datetime |
Datum publikování |
attributes |
Parametry a hodnoty |
|
author |
Autor |
|
files |
File[] |
Soubory (manuály, specifikace, …) |
images |
Image[] |
Obrázky |
topic |
Téma (zařazení) |
|
topics |
Topic[] |
Témata |
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 %}
{% 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 %}
{% 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 %}
{% 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 %}
{% 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 %}
{% 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 %}
{% 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¶
Název |
Typ |
Popis |
---|---|---|
id |
int |
ID |
name |
string |
Název |
values |
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¶
Název |
Typ |
Popis |
---|---|---|
id |
int |
ID |
Příklady:
{{ attributegroup.id }}
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 |
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
Název |
Typ |
Popis |
---|---|---|
id |
int |
Id |
name |
string |
Název |
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¶
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¶
Název |
Typ |
Popis |
---|---|---|
code |
string |
Kód |
Příklady:
{{ attributemeaning.code }}
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 |
Dostupná dodání s termínem |
|
availableAmountsExpectedToStorageRoom |
Volné kusy podle zdrojové skladu, které se budou převážet na zvolený sklad (seznam) |
|
availableAmountsOnWayToStorageRoom |
Volné kusy podle zdrojové skladu, které se převáží na zvolený sklad (seznam) |
|
availableDemandsFromSupplierToStorageRoom |
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.deliveryAddressRequired %} ... {% 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.zip %}
{{ expectedSupplierAmount.sourceStorageCenter.address.zip }}
{% 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.deliveryAddressRequired %} ... {% 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¶
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.pathIds }}
{{ category.pathNames }}
{{ 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.pathIds }}
{{ upsell.category.pathNames }}
{{ 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.pathIds }}
{{ upsell.category.parent.pathNames }}
{{ 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.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 }}
{% endif %}
{% if upsell.price.discount %}
{{ upsell.price.discount.currency }}
{{ upsell.price.discount.formatted }}
{{ upsell.price.discount.value }}
{% 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 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.pathIds }}
{{ upsell.product.category.pathNames }}
{{ 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.pathIds }}
{{ category.pathNames }}
{{ 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.pathIds }}
{{ category.pathNames }}
{{ 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.id }}
{{ 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.packageHeight %}
{{ upsell.product.item.packageHeight }}
{% endif %}
{% if upsell.product.item.packageLength %}
{{ upsell.product.item.packageLength }}
{% endif %}
{% if upsell.product.item.packageWeight %}
{{ upsell.product.item.packageWeight }}
{% endif %}
{% if upsell.product.item.packageWidth %}
{{ upsell.product.item.packageWidth }}
{% endif %}
{% if upsell.product.item.code %}
{{ upsell.product.item.code }}
{% 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 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 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 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.imageForEnumValueId %}
{% endif %}
{% if product.image %}
{% 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 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.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.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.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 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 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.imageForEnumValueId %}
{% endif %}
{% if upsell.product.successor.image %}
{% 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 }}
{% 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 %}
Brand¶
Název |
Typ |
Popis |
---|---|---|
id |
int |
ID |
headline |
string |
Nadpis |
name |
string |
Název |
flagImportant |
bool |
Důležitý |
categories |
Category[] |
Kategorie značky (hezká URL nebo klasický filtr) |
url |
URL značky |
|
categoryUrl |
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 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.pathIds }}
{{ category.pathNames }}
{{ 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.pathIds }}
{{ category.parent.pathNames }}
{{ 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.pathIds }}
{{ category.pathNames }}
{{ 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.pathIds }}
{{ category.pathNames }}
{{ 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.pathIds }}
{{ category.parent.pathNames }}
{{ 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¶
Název |
Typ |
Popis |
---|---|---|
brand |
Značka |
|
category |
Kategorie |
|
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 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.pathIds }}
{{ category.pathNames }}
{{ 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.pathIds }}
{{ category.pathNames }}
{{ 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.pathIds }}
{{ category.parent.pathNames }}
{{ 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.pathIds }}
{{ category.pathNames }}
{{ 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.pathIds }}
{{ category.parent.pathNames }}
{{ 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.pathIds }}
{{ brandcategory.category.pathNames }}
{{ 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.pathIds }}
{{ category.pathNames }}
{{ 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.pathIds }}
{{ brandcategory.category.parent.pathNames }}
{{ 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 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.pathIds }}
{{ category.pathNames }}
{{ 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.pathIds }}
{{ category.pathNames }}
{{ 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.pathIds }}
{{ brandcategory.parent.category.pathNames }}
{{ 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¶
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.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 }}
{% endif %}
{% if bundle.price.discount %}
{{ bundle.price.discount.currency }}
{{ bundle.price.discount.formatted }}
{{ bundle.price.discount.value }}
{% endif %}
{% endif %}
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 |
|
variantType |
Typ varianty |
|
videos |
Video[] |
Videa |
pathIds |
array |
Cesta ke kategorii (id) |
pathNames |
array |
Cesta ke kategorii (názvy) |
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.pathIds }}
{{ category.pathNames }}
{{ 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.pathIds }}
{{ category.parent.pathNames }}
{{ 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.pathIds }}
{{ category.pathNames }}
{{ 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.pathIds }}
{{ category.pathNames }}
{{ 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.pathIds }}
{{ category.parent.pathNames }}
{{ 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¶
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 |
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¶
Název |
Typ |
Popis |
---|---|---|
id |
int |
ID |
name |
string |
Název |
values |
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
Název |
Typ |
Popis |
---|---|---|
id |
int |
Id |
name |
string |
Název |
attribute |
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
CustomerRO::SORT_POINT_NEWEST, CustomerRO::SORT_POINT_OLDEST })“
„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.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.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 }}
{% endif %}
{% if accountingDocument.totalPrice.discount %}
{{ accountingDocument.totalPrice.discount.currency }}
{{ accountingDocument.totalPrice.discount.formatted }}
{{ accountingDocument.totalPrice.discount.value }}
{% 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.zip %}
{{ customer.address.delivery.zip }}
{% 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.zip %}
{{ customer.address.invoice.zip }}
{% 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.containsItem %} ... {% 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.zip %}
{{ order.address.delivery.zip }}
{% 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.zip %}
{{ order.address.invoice.zip }}
{% endif %}
{% if order.address.invoice.country %}
{% endif %}
{% for payment in order.payments %}
{{ payment.code }}
{{ 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.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.availablePaymentMethods %}
{{ payment.code }}
{{ 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.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.deliveryAddressRequired %} ... {% 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 }}
{{ order.delivery.payment.code }}
{{ 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.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.deliveryAddressRequired %} ... {% 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 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 orderItemError in catalogItem.errors %}
{% 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.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 %}
{{ 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 %}
{% 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.id }}
{{ 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.packageHeight %}
{{ catalogItem.item.packageHeight }}
{% endif %}
{% if catalogItem.item.packageLength %}
{{ catalogItem.item.packageLength }}
{% endif %}
{% if catalogItem.item.packageWeight %}
{{ catalogItem.item.packageWeight }}
{% endif %}
{% if catalogItem.item.packageWidth %}
{{ catalogItem.item.packageWidth }}
{% endif %}
{% if catalogItem.item.code %}
{{ catalogItem.item.code }}
{% 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 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 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.imageForEnumValueId %}
{% endif %}
{% if catalogItem.product.image %}
{% 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 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 orderItemError in catalogItem.errors %}
{% 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.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 %}
{{ 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 %}
{% 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.id }}
{{ 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.packageHeight %}
{{ catalogItem.item.packageHeight }}
{% endif %}
{% if catalogItem.item.packageLength %}
{{ catalogItem.item.packageLength }}
{% endif %}
{% if catalogItem.item.packageWeight %}
{{ catalogItem.item.packageWeight }}
{% endif %}
{% if catalogItem.item.packageWidth %}
{{ catalogItem.item.packageWidth }}
{% endif %}
{% if catalogItem.item.code %}
{{ catalogItem.item.code }}
{% 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 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 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.imageForEnumValueId %}
{% endif %}
{% if catalogItem.product.image %}
{% 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 }}
{% 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 }}
{{ order.price.unpaid.currency }}
{{ order.price.unpaid.formatted }}
{{ order.price.unpaid.value }}
{{ order.price.paid.currency }}
{{ order.price.paid.formatted }}
{{ order.price.paid.value }}
{{ order.status.id }}
{{ order.status.name }}
{% if order.status.subId %}
{{ order.status.subId }}
{% endif %}
{% 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.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 }}
{% endfor %}
{% 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 }}
{% 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.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.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.containsItem %} ... {% 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.payments %}
{% endfor %}
{% for payment in order.availablePaymentMethods %}
{% 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.vouchers %}
{% endfor %}
{% for giftVoucher in order.purchasedGiftVouchers %}
{% 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.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 }}
{{ order.closestFreeDelivery.payment.code }}
{{ 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.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.deliveryAddressRequired %} ... {% 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