############ Typy objektů ############ **v přípravě** - není dostupné v šablonách .. _class-accountingdocument: ================== AccountingDocument ================== .. csv-table:: Attributy objektu **AccountingDocument** :header: "Název", Typ, "Popis" "code", "string", "Kód" "date", "datetime", "Datum vystavení" "totalPrice", "`Price`_", "Celková cena" "pdfUrl", "`Url`_", "URL stažení PDF" Příklady: .. code-block:: html+twig {{ 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 }} .. _class-actuality: ========= Actuality ========= .. csv-table:: Attributy objektu **Actuality** :header: "Název", Typ, "Popis" "id", "int", "Id" "name", "string", "Název" "date", "datetime", "Datum" "url", "`Url`_", "URL aktuality nebo externí URL (má přednost)" "annotation", "string | null", "Anotace" "text", "string | null", "Text" "image", "`Image`_ | null", "Hlavní obrázek" Příklady: .. code-block:: html+twig {{ 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 %} .. _class-address: ======= Address ======= .. csv-table:: Attributy objektu **Address** :header: "Název", Typ, "Popis" "name", "`Address/Name`_", "Jméno" "city", "string | null", "Město" "company", "string | null", "Firma" "companyId", "string | null", "IČ" "email", "string | null", "Email" "phone", "string | null", "Telefon" "region", "string | null", "Region (stát, okres, ...)" "street", "string | null", "Ulice a čp." "vatId", "string | null", "DIČ" "zip", "string | null", "PSČ" "country", "`Address/Country`_ | null", "Země" Příklady: .. code-block:: html+twig {{ 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 %} .. _class-address-country: =============== Address/Country =============== .. csv-table:: Attributy objektu **Address/Country** :header: "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: .. code-block:: html+twig {{ country.code }} {{ country.flagCircleUrl }} {{ country.flagUrl }} {{ country.name }} {% if country.eU %} ... {% endif %} .. _class-address-name: ============ Address/Name ============ .. csv-table:: Attributy objektu **Address/Name** :header: "Název", Typ, "Popis" "first", "string | null", "Křestní" "last", "string | null", "Příjmení" Příklady: .. code-block:: html+twig {{ name }} {% if name.first %} {{ name.first }} {% endif %} {% if name.last %} {{ name.last }} {% endif %} .. _class-addresses: ========= Addresses ========= .. csv-table:: Attributy objektu **Addresses** :header: "Název", Typ, "Popis" "delivery", "`Address`_", "Dodací adrea" "invoice", "`Address`_", "Fakturační adresa" Příklady: .. code-block:: html+twig {{ 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 %} .. _class-admin: ===== Admin ===== Administrátor eshopu .. csv-table:: Attributy objektu **Admin** :header: "Název", Typ, "Popis" "id", "int", "Id" "email", "string", "Email" "phone", "string", "Telefon" "position", "string", "Pozice" "name", "`Address/Name`_", "Jméno a příjmení" "image", "`Image`_", "Obrázek" "text", "html | null", "Text" Příklady: .. code-block:: html+twig {{ 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 %} .. _class-analyticsreport: =============== AnalyticsReport =============== .. csv-table:: Attributy objektu **AnalyticsReport** :header: "Název", Typ, "Popis" "name", "string", "Název" "url", "`Url`_", "URL" Příklady: .. code-block:: html+twig {{ analyticsreport.name }} {{ analyticsreport.url }} {{ analyticsreport.url.absolute }} {{ analyticsreport.url.path }} .. _class-article: ======= Article ======= .. csv-table:: Attributy objektu **Article** :header: "Název", Typ, "Popis" "id", "int", "Id" "name", "string", "Nazev" "datePublished", "datetime", "Datum publikování" "attributes", "`Attribute/AttributeInstance`_\[\]", "Parametry a hodnoty" "author", "`Author`_", "Autor" "files", "`File`_\[\]", "Soubory (manuály, specifikace, ...)" "images", "`Image`_\[\]", "Obrázky" "topic", "`Topic`_", "Téma (zařazení)" "topics", "`Topic`_\[\]", "Témata" "url", "`Url`_", "URL článku" "videos", "`Video`_\[\]", "Videa" "text", "html | null", "Text" "attribute", "`Attribute/AttributeInstance`_ | null", "Atribut s hodnotami" "image", "`Image`_ | null", "Hlavní obrázek" "seo", "`Seo`_ | null", "SEO attributy" "contentGrid", "array | null", "Content grid" Příklady: .. code-block:: html+twig {{ 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 %} .. _class-attribute-attribute: =================== Attribute/Attribute =================== .. csv-table:: Attributy objektu **Attribute/Attribute** :header: "Název", Typ, "Popis" "id", "int", "ID" "name", "string", "Název" "values", "`Attribute/AttributeValue`_\[\]", "Hodnoty" "text", "string | null", "Popis" "meaning", "`AttributeMeaning`_ | null", "Význam" "image", "`Image`_ | null", "Obrázek" Příklady: .. code-block:: html+twig {{ 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 %} .. _class-attribute-attributegroup: ======================== Attribute/AttributeGroup ======================== .. csv-table:: Attributy objektu **Attribute/AttributeGroup** :header: "Název", Typ, "Popis" "id", "int", "ID" Příklady: .. code-block:: html+twig {{ attributegroup.id }} .. _class-attribute-attributeinstance: =========================== Attribute/AttributeInstance =========================== .. csv-table:: Attributy objektu **Attribute/AttributeInstance** :header: "Název", Typ, "Popis" "name", "string", "Název" "valuesHtml", "html", "Názvy hodnot včetně případného odkazu a title, oddělené čárkou" "values", "`Attribute/AttributeValueInstance`_\[\]", "Hodnoty" "description", "string | null", "Popis" "group", "`Attribute/AttributeGroup`_ | null", "Skupina parametrů" "image", "`Image`_ | null", "Obrázek" Příklady: .. code-block:: html+twig {{ 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 %} .. _class-attribute-attributevalue: ======================== Attribute/AttributeValue ======================== Hodnota parametru .. csv-table:: Attributy objektu **Attribute/AttributeValue** :header: "Název", Typ, "Popis" "id", "int", "Id" "name", "string", "Název" "attribute", "`Attribute/Attribute`_", "Parametr" "colorCode", "string | null", "Hex kód barvy" "text", "html | null", "Text" "image", "`Image`_ | null", "Obrázek" Příklady: .. code-block:: html+twig {{ 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 %} .. _class-attribute-attributevalueinstance: ================================ Attribute/AttributeValueInstance ================================ .. csv-table:: Attributy objektu **Attribute/AttributeValueInstance** :header: "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: .. code-block:: html+twig {{ 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 %} .. _class-attributemeaning: ================ AttributeMeaning ================ .. csv-table:: Attributy objektu **AttributeMeaning** :header: "Název", Typ, "Popis" "code", "string", "Kód" Příklady: .. code-block:: html+twig {{ attributemeaning.code }} .. _class-author: ====== Author ====== Autor článku .. csv-table:: Attributy objektu **Author** :header: "Název", Typ, "Popis" "id", "int", "Id" "name", "`Address/Name`_", "Jméno a příjmení" "image", "`Image`_", "Obrázek" "socialProfiles", "`SocialProfile`_\[\]", "Socialní sítě" "url", "`Url`_", "URL" "email", "string | null", "Email" "nickname", "string | null", "Přezívka" "phone", "string | null", "Telefon" "text", "html | null", "Text" Příklady: .. code-block:: html+twig {{ author.id }} {{ author.name }} {% if author.name.first %} {{ author.name.first }} {% endif %} {% if author.name.last %} {{ author.name.last }} {% endif %} {{ author.image.originalHeight }} {{ author.image.originalWidth }} {{ author.image.url }} {% if author.image.alt %} {{ author.image.alt }} {% endif %} {% if author.image.text %} {{ author.image.text }} {% endif %} {% for socialProfile in author.socialProfiles %} {{ socialProfile.type }} {{ socialProfile.url }} {% endfor %} {{ author.url }} {{ author.url.absolute }} {{ author.url.path }} {% if author.email %} {{ author.email }} {% endif %} {% if author.nickname %} {{ author.nickname }} {% endif %} {% if author.phone %} {{ author.phone }} {% endif %} {% if author.text %} {{ author.text }} {% endif %} .. _class-availability: ============ Availability ============ .. csv-table:: Attributy objektu **Availability** :header: "Název", Typ, "Popis" "availableAmount", "int", "Dostupné kusy" "availableAmountInShowroom", "int", "Dostupné vystavené kusy" "availableAmountInStockroom", "int", "Dostupné kusy na konkrétním skladu" "availableAmountInStorageCenter", "int", "Dostupné kusy v konkrétním středisku" "hours", "int", "Dostupnost v hodinách" "totalAmount", "int", "Celkové kusy (bez odečtení rezervace)" "inShowroom", "bool", "Je vystaveno?" "inStock", "bool", "Je skladem?" "preorder", "bool", "Jde o předobjednávku?" "watchdogSupported", "bool", "Je podporován hlídací pes?" "deliveryOptions", "`DeliveryOption`_\[\]", "Dostupná dodání s termínem" "text", "string | null", "Popis dostupnosti" "dateExpected", "datetime | null", "Datum očekávaného naskladnění" "deliveryOption", "`DeliveryOption`_ | null", "Nejrychlejší dodání" Příklady: .. code-block:: html+twig {{ availability.availableAmount }} {{ availability.availableAmountInShowroom }} {{ availability.availableAmountInStockroom }} {{ availability.availableAmountInStorageCenter }} {{ 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.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 %} {% 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.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 %} .. _class-availableupsellgroup: ==================== AvailableUpsellGroup ==================== .. csv-table:: Attributy objektu **AvailableUpsellGroup** :header: "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: .. code-block:: html+twig {{ 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 %} .. _class-banner: ====== Banner ====== Banner .. csv-table:: Attributy objektu **Banner** :header: "Název", Typ, "Popis" "id", "int", "Id" "validFrom", "datetime", "Platný od" "validTo", "datetime", "Platný do" "vector", "bool", "Vectorový obrázek" "section", "`BannerSection`_", "Sekce bannerů" "height", "int | null", "Výška (px)" "width", "int | null", "Šířka (px)" "alt", "string | null", "Popis" "backgroundColorCode", "string | null", "Hex kód barvy pozadí" "ctaClass", "string | null", "Třida akce (tlačítka)" "ctaText", "string | null", "Text akce (tlačítka)" "name", "string | null", "Název" "url", "string | null", "Url" "text", "html | null", "Text" "image", "`Image`_ | null", "Obrázek" "product", "`Product`_ | null", "Produkt" "urlTarget", "use App/Entity/BannerType | null", "Cíl otevření odkazu" Příklady: .. code-block:: html+twig {{ banner.id }} {{ banner.validFrom|date('d. m. Y H:i') }} {{ banner.validTo|date('d. m. Y H:i') }} {% if banner.vector %} ... {% endif %} {{ banner.section.id }} {% if banner.section.height %} {{ banner.section.height }} {% endif %} {% if banner.section.width %} {{ banner.section.width }} {% endif %} {% if banner.section.code %} {{ banner.section.code }} {% endif %} {% if banner.section.name %} {{ banner.section.name }} {% endif %} {% if banner.height %} {{ banner.height }} {% endif %} {% if banner.width %} {{ banner.width }} {% endif %} {% if banner.alt %} {{ banner.alt }} {% endif %} {% if banner.backgroundColorCode %} {{ banner.backgroundColorCode }} {% endif %} {% if banner.ctaClass %} {{ banner.ctaClass }} {% endif %} {% if banner.ctaText %} {{ banner.ctaText }} {% endif %} {% if banner.name %} {{ banner.name }} {% endif %} {% if banner.url %} {{ banner.url }} {% endif %} {% if banner.text %} {{ banner.text }} {% endif %} {% if banner.image %} {{ banner.image.originalHeight }} {{ banner.image.originalWidth }} {{ banner.image.url }} {% if banner.image.alt %} {{ banner.image.alt }} {% endif %} {% if banner.image.text %} {{ banner.image.text }} {% endif %} {% endif %} {% if banner.product %} {{ banner.product.id }} {{ banner.product.name }} {{ banner.product.trackingId }} {{ banner.product.dateCreated|date('d. m. Y H:i') }} {% if banner.product.active %} ... {% endif %} {% if banner.product.compared %} ... {% endif %} {% if banner.product.differentVariantPrices %} ... {% endif %} {% if banner.product.flagNew %} ... {% endif %} {% if banner.product.flagPromo %} ... {% endif %} {% if banner.product.flagSecondHand %} ... {% endif %} {% if banner.product.flagSellout %} ... {% endif %} {% if banner.product.otherDiscountApplicable %} ... {% endif %} {% if banner.product.soldSeparately %} ... {% endif %} {% for attributeInstance in banner.product.attributes %} {{ attributeInstance.name }} {{ attributeInstance.valuesHtml }} {% for attributeValueInstance in attributeInstance.values %} {{ attributeValueInstance.values }} {{ attributeValueInstance.nameHtml }} {% if attributeValueInstance.colorCode %} {{ attributeValueInstance.colorCode }} {% endif %} {% if attributeValueInstance.text %} {{ attributeValueInstance.text }} {% endif %} {% if attributeValueInstance.unit %} {{ attributeValueInstance.unit }} {% endif %} {% if attributeValueInstance.image %} {% endif %} {% if attributeValueInstance.name %} {{ attributeValueInstance.name }} {% endif %} {% endfor %} {% if attributeInstance.description %} {{ attributeInstance.description }} {% endif %} {% if attributeInstance.group %} {{ attributeInstance.group.id }} {% endif %} {% if attributeInstance.image %} {{ attributeInstance.image.originalHeight }} {{ attributeInstance.image.originalWidth }} {{ attributeInstance.image.url }} {% if attributeInstance.image.alt %} {{ attributeInstance.image.alt }} {% endif %} {% if attributeInstance.image.text %} {{ attributeInstance.image.text }} {% endif %} {% endif %} {% endfor %} {% for availableUpsellGroup in banner.product.availableUpsellGroups %} {{ availableUpsellGroup.id }} {{ availableUpsellGroup.name }} {% if availableUpsellGroup.singleSelection %} ... {% endif %} {% for upsell in availableUpsellGroup.upsells %} {{ upsell.id }} {{ upsell.name }} {% if upsell.inCart %} ... {% endif %} {% if upsell.code %} {{ upsell.code }} {% endif %} {% if upsell.vatRate %} {{ upsell.vatRate }} {% endif %} {% if upsell.image %} {% endif %} {% if upsell.unit %} {% endif %} {% endfor %} {% if availableUpsellGroup.code %} {{ availableUpsellGroup.code }} {% endif %} {% endfor %} {{ banner.product.category.id }} {{ banner.product.category.productCount }} {{ banner.product.category.productInStockCount }} {{ banner.product.category.totalStockQuantity }} {{ banner.product.category.headline }} {{ banner.product.category.menuName }} {{ banner.product.category.name }} {% if banner.product.category.flagErotic %} ... {% endif %} {% if banner.product.category.flagImportant %} ... {% endif %} {% if banner.product.category.noFollow %} ... {% endif %} {% for category in banner.product.category.subcategories %} {{ category.id }} {{ category.productCount }} {{ category.productInStockCount }} {{ category.totalStockQuantity }} {{ category.headline }} {{ category.menuName }} {{ category.name }} {% if category.flagErotic %} ... {% endif %} {% if category.flagImportant %} ... {% endif %} {% if category.noFollow %} ... {% endif %} {% for video in category.videos %} {% endfor %} {{ category.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 %} {{ banner.product.category.url }} {{ banner.product.category.url.absolute }} {{ banner.product.category.url.path }} {{ banner.product.category.variantType.id }} {{ banner.product.category.variantType.name }} {% for video in banner.product.category.videos %} {{ video.embeddedUrl }} {% if video.name %} {{ video.name }} {% endif %} {% if video.image %} {% endif %} {% endfor %} {{ banner.product.category.pathIds }} {{ banner.product.category.pathNames }} {{ banner.product.category.templateAttribute }} {% if banner.product.category.subHeadline %} {{ banner.product.category.subHeadline }} {% endif %} {% if banner.product.category.text %} {{ banner.product.category.text }} {% endif %} {% if banner.product.category.parent %} {{ banner.product.category.parent.id }} {{ banner.product.category.parent.productCount }} {{ banner.product.category.parent.productInStockCount }} {{ banner.product.category.parent.totalStockQuantity }} {{ banner.product.category.parent.headline }} {{ banner.product.category.parent.menuName }} {{ banner.product.category.parent.name }} {% if banner.product.category.parent.flagErotic %} ... {% endif %} {% if banner.product.category.parent.flagImportant %} ... {% endif %} {% if banner.product.category.parent.noFollow %} ... {% endif %} {% for category in banner.product.category.parent.subcategories %} {% endfor %} {% for video in banner.product.category.parent.videos %} {% endfor %} {{ banner.product.category.parent.pathIds }} {{ banner.product.category.parent.pathNames }} {{ banner.product.category.parent.templateAttribute }} {% if banner.product.category.parent.subHeadline %} {{ banner.product.category.parent.subHeadline }} {% endif %} {% if banner.product.category.parent.text %} {{ banner.product.category.parent.text }} {% endif %} {% if banner.product.category.parent.image %} {% endif %} {% if banner.product.category.parent.contentGrid %} {{ banner.product.category.parent.contentGrid }} {% endif %} {% endif %} {% if banner.product.category.image %} {{ banner.product.category.image.originalHeight }} {{ banner.product.category.image.originalWidth }} {{ banner.product.category.image.url }} {% if banner.product.category.image.alt %} {{ banner.product.category.image.alt }} {% endif %} {% if banner.product.category.image.text %} {{ banner.product.category.image.text }} {% endif %} {% endif %} {% if banner.product.category.contentGrid %} {{ banner.product.category.contentGrid }} {% endif %} {% for category in banner.product.categories %} {{ category.id }} {{ category.productCount }} {{ category.productInStockCount }} {{ category.totalStockQuantity }} {{ category.headline }} {{ category.menuName }} {{ category.name }} {% if category.flagErotic %} ... {% endif %} {% if category.flagImportant %} ... {% endif %} {% if category.noFollow %} ... {% endif %} {% for category in category.subcategories %} {{ category.id }} {{ category.productCount }} {{ category.productInStockCount }} {{ category.totalStockQuantity }} {{ category.headline }} {{ category.menuName }} {{ category.name }} {% if category.flagErotic %} ... {% endif %} {% if category.flagImportant %} ... {% endif %} {% if category.noFollow %} ... {% endif %} {% for video in category.videos %} {% endfor %} {{ category.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 %} {% for category in banner.product.otherCategories %} {{ category.id }} {{ category.productCount }} {{ category.productInStockCount }} {{ category.totalStockQuantity }} {{ category.headline }} {{ category.menuName }} {{ category.name }} {% if category.flagErotic %} ... {% endif %} {% if category.flagImportant %} ... {% endif %} {% if category.noFollow %} ... {% endif %} {% for category in category.subcategories %} {{ category.id }} {{ category.productCount }} {{ category.productInStockCount }} {{ category.totalStockQuantity }} {{ category.headline }} {{ category.menuName }} {{ category.name }} {% if category.flagErotic %} ... {% endif %} {% if category.flagImportant %} ... {% endif %} {% if category.noFollow %} ... {% endif %} {% for video in category.videos %} {% endfor %} {{ category.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 %} {% for file in banner.product.files %} {{ file.bytes }} {{ file.url }} {% if file.usage.archive %} ... {% endif %} {% if file.usage.graphic %} ... {% endif %} {% if file.usage.manual %} ... {% endif %} {% if file.usage.other %} ... {% endif %} {% if file.usage.sound %} ... {% endif %} {% if file.usage.specification %} ... {% endif %} {% if file.mime %} {{ file.mime }} {% endif %} {% if file.name %} {{ file.name }} {% endif %} {% endfor %} {% for image in banner.product.images %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in banner.product.imagesWithEnumValue %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in banner.product.images360 %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in banner.product.currentImages %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in banner.product.imagesWithoutEnumValue %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in banner.product.otherImages %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {{ banner.product.item.id }} {{ banner.product.item.name }} {{ banner.product.item.trackingId }} {% if banner.product.item.digital %} ... {% endif %} {% if banner.product.item.sellable %} ... {% endif %} {% if banner.product.item.service %} ... {% endif %} {{ banner.product.item.availability.availableAmount }} {{ banner.product.item.availability.availableAmountInShowroom }} {{ banner.product.item.availability.availableAmountInStockroom }} {{ banner.product.item.availability.availableAmountInStorageCenter }} {{ banner.product.item.availability.hours }} {{ banner.product.item.availability.totalAmount }} {% if banner.product.item.availability.inShowroom %} ... {% endif %} {% if banner.product.item.availability.inStock %} ... {% endif %} {% if banner.product.item.availability.preorder %} ... {% endif %} {% if banner.product.item.availability.watchdogSupported %} ... {% endif %} {% for deliveryOption in banner.product.item.availability.deliveryOptions %} {% endfor %} {% if banner.product.item.availability.text %} {{ banner.product.item.availability.text }} {% endif %} {% if banner.product.item.availability.dateExpected %} {{ banner.product.item.availability.dateExpected|date('d. m. Y H:i') }} {% endif %} {% if banner.product.item.availability.deliveryOption %} {% endif %} {% for availableUpsellGroup in banner.product.item.availableUpsellGroups %} {{ availableUpsellGroup.id }} {{ availableUpsellGroup.name }} {% if availableUpsellGroup.singleSelection %} ... {% endif %} {% for upsell in availableUpsellGroup.upsells %} {% endfor %} {% if availableUpsellGroup.code %} {{ availableUpsellGroup.code }} {% endif %} {% endfor %} {% for upsell in banner.product.item.availableUpsells %} {{ upsell.id }} {{ upsell.name }} {% if upsell.inCart %} ... {% endif %} {% if upsell.code %} {{ upsell.code }} {% endif %} {% if upsell.vatRate %} {{ upsell.vatRate }} {% endif %} {% if upsell.image %} {% endif %} {% if upsell.unit %} {% endif %} {% endfor %} {{ banner.product.item.trackingIds }} {{ banner.product.item.storageLocations }} {% if banner.product.item.packageHeight %} {{ banner.product.item.packageHeight }} {% endif %} {% if banner.product.item.packageLength %} {{ banner.product.item.packageLength }} {% endif %} {% if banner.product.item.packageWeight %} {{ banner.product.item.packageWeight }} {% endif %} {% if banner.product.item.packageWidth %} {{ banner.product.item.packageWidth }} {% endif %} {% if banner.product.item.code %} {{ banner.product.item.code }} {% endif %} {% if banner.product.item.bundle %} {% if banner.product.item.bundle.multiPack %} ... {% endif %} {% if banner.product.item.bundle.price %} {% endif %} {% endif %} {% if banner.product.item.cheapestDelivery %} {{ banner.product.item.cheapestDelivery.inputId }} {{ banner.product.item.cheapestDelivery.name }} {{ banner.product.item.cheapestDelivery.vatRate }} {% if banner.product.item.cheapestDelivery.branchRequired %} ... {% endif %} {% if banner.product.item.cheapestDelivery.currier %} ... {% endif %} {% if banner.product.item.cheapestDelivery.dateGuaranteed %} ... {% endif %} {% if banner.product.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %} {% if banner.product.item.cheapestDelivery.deliveryToAddress %} ... {% endif %} {% if banner.product.item.cheapestDelivery.free %} ... {% endif %} {% if banner.product.item.cheapestDelivery.pickup %} ... {% endif %} {% if banner.product.item.cheapestDelivery.selected %} ... {% endif %} {% if banner.product.item.cheapestDelivery.text %} {{ banner.product.item.cheapestDelivery.text }} {% endif %} {% if banner.product.item.cheapestDelivery.branch %} {% endif %} {% if banner.product.item.cheapestDelivery.carrier %} {% endif %} {% if banner.product.item.cheapestDelivery.deliveryDate %} {% endif %} {% if banner.product.item.cheapestDelivery.packageType %} {% endif %} {% if banner.product.item.cheapestDelivery.image %} {% endif %} {% endif %} {% if banner.product.item.freeDelivery %} {{ banner.product.item.freeDelivery.name }} {{ banner.product.item.freeDelivery.vatRate }} {% if banner.product.item.freeDelivery.id %} {{ banner.product.item.freeDelivery.id }} {% endif %} {% if banner.product.item.freeDelivery.freeLimit %} {% endif %} {% endif %} {% if banner.product.item.closestFreeDelivery %} {{ banner.product.item.closestFreeDelivery.name }} {{ banner.product.item.closestFreeDelivery.vatRate }} {% if banner.product.item.closestFreeDelivery.id %} {{ banner.product.item.closestFreeDelivery.id }} {% endif %} {% if banner.product.item.closestFreeDelivery.freeLimit %} {% endif %} {% endif %} {% if banner.product.item.packageDimensions %} {{ banner.product.item.packageDimensions }} {{ banner.product.item.packageDimensions.height }} {{ banner.product.item.packageDimensions.length }} {{ banner.product.item.packageDimensions.width }} {{ banner.product.item.packageDimensions.unit }} {% endif %} {% if banner.product.item.image %} {{ banner.product.item.image.originalHeight }} {{ banner.product.item.image.originalWidth }} {{ banner.product.item.image.url }} {% if banner.product.item.image.alt %} {{ banner.product.item.image.alt }} {% endif %} {% if banner.product.item.image.text %} {{ banner.product.item.image.text }} {% endif %} {% endif %} {% if banner.product.item.price %} {{ banner.product.item.price.vatRate }} {% if banner.product.item.price.discountPercent %} {{ banner.product.item.price.discountPercent }} {% endif %} {% if banner.product.item.price.discountValidTo %} {{ banner.product.item.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if banner.product.item.price.beforeDiscount %} {% endif %} {% if banner.product.item.price.discount %} {% endif %} {% endif %} {% if banner.product.item.url %} {{ banner.product.item.url }} {{ banner.product.item.url.absolute }} {{ banner.product.item.url.path }} {% endif %} {% if banner.product.item.variant %} {{ banner.product.item.variant.id }} {{ banner.product.item.variant.name }} {{ banner.product.item.variant.trackingId }} {% if banner.product.item.variant.active %} ... {% endif %} {% if banner.product.item.variant.selected %} ... {% endif %} {% for availableUpsellGroup in banner.product.item.variant.availableUpsellGroups %} {% endfor %} {% for enumValue in banner.product.item.variant.enumValues %} {% endfor %} {% for image in banner.product.item.variant.images %} {% endfor %} {% for upsell in banner.product.item.variant.availableUpsells %} {% endfor %} {% if banner.product.item.variant.legacyRel %} {{ banner.product.item.variant.legacyRel }} {% endif %} {% if banner.product.item.variant.image %} {% endif %} {% endif %} {% for label in banner.product.labels %} {{ label.id }} {{ label.name }} {% if label.code %} {{ label.code }} {% endif %} {% if label.colorCode %} {{ label.colorCode }} {% endif %} {% if label.image %} {{ label.image.originalHeight }} {{ label.image.originalWidth }} {{ label.image.url }} {% if label.image.alt %} {{ label.image.alt }} {% endif %} {% if label.image.text %} {{ label.image.text }} {% endif %} {% endif %} {% endfor %} {% for productEnumValue in banner.product.enumValues %} {{ productEnumValue.id }} {{ productEnumValue.name }} {% if productEnumValue.selected %} ... {% endif %} {{ productEnumValue.enum.id }} {{ productEnumValue.enum.name }} {% for enumValue in productEnumValue.enum.values %} {% endfor %} {% if productEnumValue.enum.text %} {{ productEnumValue.enum.text }} {% endif %} {% if productEnumValue.enum.meaning %} {% endif %} {{ productEnumValue.url }} {{ productEnumValue.url.absolute }} {{ productEnumValue.url.path }} {% for variant in productEnumValue.variants %} {{ variant.id }} {{ variant.name }} {{ variant.trackingId }} {% if variant.active %} ... {% endif %} {% if variant.selected %} ... {% endif %} {% for availableUpsellGroup in variant.availableUpsellGroups %} {% endfor %} {% for image in variant.images %} {% endfor %} {% for upsell in variant.availableUpsells %} {% endfor %} {% if variant.legacyRel %} {{ variant.legacyRel }} {% endif %} {% if variant.image %} {% endif %} {% endfor %} {% if productEnumValue.text %} {{ productEnumValue.text }} {% endif %} {% if productEnumValue.image %} {{ productEnumValue.image.originalHeight }} {{ productEnumValue.image.originalWidth }} {{ productEnumValue.image.url }} {% if productEnumValue.image.alt %} {{ productEnumValue.image.alt }} {% endif %} {% if productEnumValue.image.text %} {{ productEnumValue.image.text }} {% endif %} {% endif %} {% if productEnumValue.variantImage %} {{ productEnumValue.variantImage.originalHeight }} {{ productEnumValue.variantImage.originalWidth }} {{ productEnumValue.variantImage.url }} {% if productEnumValue.variantImage.alt %} {{ productEnumValue.variantImage.alt }} {% endif %} {% if productEnumValue.variantImage.text %} {{ productEnumValue.variantImage.text }} {% endif %} {% endif %} {% endfor %} {% for product in banner.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 %} {{ attributeInstance.name }} {{ attributeInstance.valuesHtml }} {% for attributeValueInstance in attributeInstance.values %} {% endfor %} {% if attributeInstance.description %} {{ attributeInstance.description }} {% endif %} {% if attributeInstance.group %} {% endif %} {% if attributeInstance.image %} {% endif %} {% endfor %} {% for availableUpsellGroup in product.availableUpsellGroups %} {{ availableUpsellGroup.id }} {{ availableUpsellGroup.name }} {% if availableUpsellGroup.singleSelection %} ... {% endif %} {% for upsell in availableUpsellGroup.upsells %} {% endfor %} {% if availableUpsellGroup.code %} {{ availableUpsellGroup.code }} {% endif %} {% endfor %} {{ product.category.id }} {{ product.category.productCount }} {{ product.category.productInStockCount }} {{ product.category.totalStockQuantity }} {{ product.category.headline }} {{ product.category.menuName }} {{ product.category.name }} {% if product.category.flagErotic %} ... {% endif %} {% if product.category.flagImportant %} ... {% endif %} {% if product.category.noFollow %} ... {% endif %} {% for category in product.category.subcategories %} {% endfor %} {% for video in product.category.videos %} {% endfor %} {{ product.category.pathIds }} {{ product.category.pathNames }} {{ product.category.templateAttribute }} {% if product.category.subHeadline %} {{ product.category.subHeadline }} {% endif %} {% if product.category.text %} {{ product.category.text }} {% endif %} {% if product.category.parent %} {% endif %} {% if product.category.image %} {% endif %} {% if product.category.contentGrid %} {{ product.category.contentGrid }} {% endif %} {% for category in product.categories %} {{ category.id }} {{ category.productCount }} {{ category.productInStockCount }} {{ category.totalStockQuantity }} {{ category.headline }} {{ category.menuName }} {{ category.name }} {% if category.flagErotic %} ... {% endif %} {% if category.flagImportant %} ... {% endif %} {% if category.noFollow %} ... {% endif %} {% for category in category.subcategories %} {% endfor %} {% for video in category.videos %} {% endfor %} {{ category.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 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 product.files %} {{ file.bytes }} {{ file.url }} {% if file.mime %} {{ file.mime }} {% endif %} {% if file.name %} {{ file.name }} {% endif %} {% endfor %} {% for image in product.images %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in product.imagesWithEnumValue %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in product.images360 %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in product.currentImages %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in product.imagesWithoutEnumValue %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in product.otherImages %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {{ product.item.id }} {{ product.item.name }} {{ product.item.trackingId }} {% if product.item.digital %} ... {% endif %} {% if product.item.sellable %} ... {% endif %} {% if product.item.service %} ... {% endif %} {% for availableUpsellGroup in product.item.availableUpsellGroups %} {% endfor %} {% for upsell in product.item.availableUpsells %} {% endfor %} {{ product.item.trackingIds }} {{ product.item.storageLocations }} {% if product.item.packageHeight %} {{ product.item.packageHeight }} {% endif %} {% if product.item.packageLength %} {{ product.item.packageLength }} {% endif %} {% if product.item.packageWeight %} {{ product.item.packageWeight }} {% endif %} {% if product.item.packageWidth %} {{ product.item.packageWidth }} {% endif %} {% if product.item.code %} {{ product.item.code }} {% endif %} {% if product.item.bundle %} {% endif %} {% if product.item.cheapestDelivery %} {% endif %} {% if product.item.freeDelivery %} {% endif %} {% if product.item.closestFreeDelivery %} {% endif %} {% if product.item.packageDimensions %} {% endif %} {% if product.item.image %} {% endif %} {% if product.item.price %} {% endif %} {% if product.item.url %} {% endif %} {% if product.item.variant %} {% endif %} {% for label in product.labels %} {{ label.id }} {{ label.name }} {% if label.code %} {{ label.code }} {% endif %} {% if label.colorCode %} {{ label.colorCode }} {% endif %} {% if label.image %} {% endif %} {% endfor %} {% for productEnumValue in product.enumValues %} {{ productEnumValue.id }} {{ productEnumValue.name }} {% if productEnumValue.selected %} ... {% endif %} {% for variant in productEnumValue.variants %} {% endfor %} {% if productEnumValue.text %} {{ productEnumValue.text }} {% endif %} {% if productEnumValue.image %} {% endif %} {% if productEnumValue.variantImage %} {% endif %} {% endfor %} {{ product.rating.count }} {% if product.rating.voted %} ... {% endif %} {% if product.rating.average %} {{ product.rating.average }} {% endif %} {% for upsell in product.availableUpsells %} {{ upsell.id }} {{ upsell.name }} {% if upsell.inCart %} ... {% endif %} {% if upsell.code %} {{ upsell.code }} {% endif %} {% if upsell.vatRate %} {{ upsell.vatRate }} {% endif %} {% if upsell.image %} {% endif %} {% if upsell.unit %} {% endif %} {% endfor %} {{ product.url }} {{ product.url.absolute }} {{ product.url.path }} {% for variantChoiceStep in product.variantChoiceSteps %} {{ variantChoiceStep.headline }} {{ variantChoiceStep.inputName }} {{ variantChoiceStep.mode }} {% if variantChoiceStep.final %} ... {% endif %} {% for variantChoice in variantChoiceStep.choices %} {% endfor %} {% if variantChoiceStep.description %} {{ variantChoiceStep.description }} {% endif %} {% if variantChoiceStep.infoDescription %} {{ variantChoiceStep.infoDescription }} {% endif %} {% if variantChoiceStep.messageEmpty %} {{ variantChoiceStep.messageEmpty }} {% endif %} {% if variantChoiceStep.placeholder %} {{ variantChoiceStep.placeholder }} {% endif %} {% if variantChoiceStep.icon %} {% endif %} {% if variantChoiceStep.infoIcon %} {% endif %} {% if variantChoiceStep.info %} {% endif %} {% if variantChoiceStep.selectedChoice %} {% endif %} {% endfor %} {% for variant in product.currentVariants %} {{ variant.id }} {{ variant.name }} {{ variant.trackingId }} {% if variant.active %} ... {% endif %} {% if variant.selected %} ... {% endif %} {% for availableUpsellGroup in variant.availableUpsellGroups %} {% endfor %} {% for enumValue in variant.enumValues %} {% endfor %} {% for image in variant.images %} {% endfor %} {% for upsell in variant.availableUpsells %} {% endfor %} {% if variant.legacyRel %} {{ variant.legacyRel }} {% endif %} {% if variant.image %} {% endif %} {% endfor %} {% for variant in product.variants %} {{ variant.id }} {{ variant.name }} {{ variant.trackingId }} {% if variant.active %} ... {% endif %} {% if variant.selected %} ... {% endif %} {% for availableUpsellGroup in variant.availableUpsellGroups %} {% endfor %} {% for enumValue in variant.enumValues %} {% endfor %} {% for image in variant.images %} {% endfor %} {% for upsell in variant.availableUpsells %} {% endfor %} {% if variant.legacyRel %} {{ variant.legacyRel }} {% endif %} {% if variant.image %} {% endif %} {% endfor %} {% for variant in product.variantsWithEnumValueIds %} {{ variant.id }} {{ variant.name }} {{ variant.trackingId }} {% if variant.active %} ... {% endif %} {% if variant.selected %} ... {% endif %} {% for availableUpsellGroup in variant.availableUpsellGroups %} {% endfor %} {% for enumValue in variant.enumValues %} {% endfor %} {% for image in variant.images %} {% endfor %} {% for upsell in variant.availableUpsells %} {% endfor %} {% if variant.legacyRel %} {{ variant.legacyRel }} {% endif %} {% if variant.image %} {% endif %} {% endfor %} {{ product.variantType.id }} {{ product.variantType.name }} {% for video in product.videos %} {{ video.embeddedUrl }} {% if video.name %} {{ video.name }} {% endif %} {% if video.image %} {% endif %} {% endfor %} {{ product.trackingIds }} {% if product.currentSubName %} {{ product.currentSubName }} {% endif %} {% if product.nameSuffix %} {{ product.nameSuffix }} {% endif %} {% if product.nameSupplier %} {{ product.nameSupplier }} {% endif %} {% if product.text %} {{ product.text }} {% endif %} {% if product.attribute %} {{ product.attribute.name }} {{ product.attribute.valuesHtml }} {% for attributeValueInstance in product.attribute.values %} {% endfor %} {% if product.attribute.description %} {{ product.attribute.description }} {% endif %} {% if product.attribute.group %} {% endif %} {% if product.attribute.image %} {% endif %} {% endif %} {% if product.brand %} {{ product.brand.id }} {{ product.brand.headline }} {{ product.brand.name }} {% if product.brand.flagImportant %} ... {% endif %} {% for category in product.brand.categories %} {% endfor %} {% if product.brand.code %} {{ product.brand.code }} {% endif %} {% if product.brand.web %} {{ product.brand.web }} {% endif %} {% if product.brand.text %} {{ product.brand.text }} {% endif %} {% if product.brand.image %} {% endif %} {% if product.brand.seo %} {% endif %} {% if product.brand.contentGrid %} {{ product.brand.contentGrid }} {% endif %} {% endif %} {% if product.imageForEnumValueId %} {{ product.imageForEnumValueId.originalHeight }} {{ product.imageForEnumValueId.originalWidth }} {{ product.imageForEnumValueId.url }} {% if product.imageForEnumValueId.alt %} {{ product.imageForEnumValueId.alt }} {% endif %} {% if product.imageForEnumValueId.text %} {{ product.imageForEnumValueId.text }} {% endif %} {% endif %} {% if product.image %} {{ product.image.originalHeight }} {{ product.image.originalWidth }} {{ product.image.url }} {% if product.image.alt %} {{ product.image.alt }} {% endif %} {% if product.image.text %} {{ product.image.text }} {% endif %} {% endif %} {% if product.successor %} {{ product.successor.id }} {{ product.successor.name }} {{ product.successor.trackingId }} {{ product.successor.dateCreated|date('d. m. Y H:i') }} {% if product.successor.active %} ... {% endif %} {% if product.successor.compared %} ... {% endif %} {% if product.successor.differentVariantPrices %} ... {% endif %} {% if product.successor.flagNew %} ... {% endif %} {% if product.successor.flagPromo %} ... {% endif %} {% if product.successor.flagSecondHand %} ... {% endif %} {% if product.successor.flagSellout %} ... {% endif %} {% if product.successor.otherDiscountApplicable %} ... {% endif %} {% if product.successor.soldSeparately %} ... {% endif %} {% for attributeInstance in product.successor.attributes %} {% endfor %} {% for availableUpsellGroup in product.successor.availableUpsellGroups %} {% endfor %} {% for category in product.successor.categories %} {% endfor %} {% for category in product.successor.otherCategories %} {% endfor %} {% for file in product.successor.files %} {% endfor %} {% for image in product.successor.images %} {% endfor %} {% for image in product.successor.imagesWithEnumValue %} {% endfor %} {% for image in product.successor.images360 %} {% endfor %} {% for image in product.successor.currentImages %} {% endfor %} {% for image in product.successor.imagesWithoutEnumValue %} {% endfor %} {% for image in product.successor.otherImages %} {% endfor %} {% for label in product.successor.labels %} {% endfor %} {% for productEnumValue in product.successor.enumValues %} {% endfor %} {% for upsell in product.successor.availableUpsells %} {% endfor %} {% for variantChoiceStep in product.successor.variantChoiceSteps %} {% endfor %} {% for variant in product.successor.currentVariants %} {% endfor %} {% for variant in product.successor.variants %} {% endfor %} {% for variant in product.successor.variantsWithEnumValueIds %} {% endfor %} {% for video in product.successor.videos %} {% endfor %} {{ product.successor.trackingIds }} {% if product.successor.currentSubName %} {{ product.successor.currentSubName }} {% endif %} {% if product.successor.nameSuffix %} {{ product.successor.nameSuffix }} {% endif %} {% if product.successor.nameSupplier %} {{ product.successor.nameSupplier }} {% endif %} {% if product.successor.text %} {{ product.successor.text }} {% endif %} {% if product.successor.attribute %} {% endif %} {% if product.successor.brand %} {% endif %} {% if product.successor.imageForEnumValueId %} {% endif %} {% if product.successor.image %} {% endif %} {% if product.successor.seo %} {% endif %} {% if product.successor.supplier %} {% endif %} {% if product.successor.unit %} {% endif %} {% if product.successor.variant %} {% endif %} {% if product.successor.warranty %} {% endif %} {% if product.successor.contentGrid %} {{ product.successor.contentGrid }} {% endif %} {% endif %} {% if product.seo %} {% if product.seo.description %} {{ product.seo.description }} {% endif %} {% if product.seo.keywords %} {{ product.seo.keywords }} {% endif %} {% if product.seo.title %} {{ product.seo.title }} {% endif %} {% endif %} {% if product.supplier %} {{ product.supplier.id }} {{ product.supplier.name }} {% endif %} {% if product.unit %} {{ product.unit.name }} {% endif %} {% if product.variant %} {{ product.variant.id }} {{ product.variant.name }} {{ product.variant.trackingId }} {% if product.variant.active %} ... {% endif %} {% if product.variant.selected %} ... {% endif %} {% for availableUpsellGroup in product.variant.availableUpsellGroups %} {% endfor %} {% for enumValue in product.variant.enumValues %} {% endfor %} {% for image in product.variant.images %} {% endfor %} {% for upsell in product.variant.availableUpsells %} {% endfor %} {% if product.variant.legacyRel %} {{ product.variant.legacyRel }} {% endif %} {% if product.variant.image %} {% endif %} {% endif %} {% if product.warranty %} {{ product.warranty.months }} {% endif %} {% if product.contentGrid %} {{ product.contentGrid }} {% endif %} {% endfor %} {{ banner.product.rating.count }} {% if banner.product.rating.voted %} ... {% endif %} {% if banner.product.rating.average %} {{ banner.product.rating.average }} {% endif %} {% for upsell in banner.product.availableUpsells %} {{ upsell.id }} {{ upsell.name }} {% if upsell.inCart %} ... {% endif %} {{ upsell.category.id }} {{ upsell.category.productCount }} {{ upsell.category.productInStockCount }} {{ upsell.category.totalStockQuantity }} {{ upsell.category.headline }} {{ upsell.category.menuName }} {{ upsell.category.name }} {% if upsell.category.flagErotic %} ... {% endif %} {% if upsell.category.flagImportant %} ... {% endif %} {% if upsell.category.noFollow %} ... {% endif %} {% for category in upsell.category.subcategories %} {% endfor %} {% for video in upsell.category.videos %} {% endfor %} {{ upsell.category.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 %} {% endif %} {% if upsell.category.image %} {% endif %} {% if upsell.category.contentGrid %} {{ upsell.category.contentGrid }} {% endif %} {{ upsell.price.vatRate }} {% if upsell.price.discountPercent %} {{ upsell.price.discountPercent }} {% endif %} {% if upsell.price.discountValidTo %} {{ upsell.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if upsell.price.beforeDiscount %} {% endif %} {% if upsell.price.discount %} {% endif %} {{ upsell.group.id }} {{ upsell.group.requiredNoteMaximumLength }} {{ upsell.group.name }} {% if upsell.group.requiredNote %} ... {% endif %} {% if upsell.group.requiredUpload %} ... {% endif %} {% if upsell.group.singleSelection %} ... {% endif %} {% if upsell.group.text %} {{ upsell.group.text }} {% endif %} {% if upsell.group.uploadInput %} {{ upsell.group.uploadInput }} {% endif %} {% if upsell.code %} {{ upsell.code }} {% endif %} {% if upsell.vatRate %} {{ upsell.vatRate }} {% endif %} {% if upsell.image %} {{ upsell.image.originalHeight }} {{ upsell.image.originalWidth }} {{ upsell.image.url }} {% if upsell.image.alt %} {{ upsell.image.alt }} {% endif %} {% if upsell.image.text %} {{ upsell.image.text }} {% endif %} {% endif %} {% if upsell.unit %} {{ upsell.unit.name }} {% endif %} {% endfor %} {{ banner.product.url }} {{ banner.product.url.absolute }} {{ banner.product.url.path }} {% for variantChoiceStep in banner.product.variantChoiceSteps %} {{ variantChoiceStep.headline }} {{ variantChoiceStep.inputName }} {{ variantChoiceStep.mode }} {% if variantChoiceStep.final %} ... {% endif %} {% for variantChoice in variantChoiceStep.choices %} {{ variantChoice.inputValue }} {{ variantChoice.name }} {% if variantChoice.selected %} ... {% endif %} {% if variantChoice.color %} {{ variantChoice.color }} {% endif %} {% if variantChoice.description %} {{ variantChoice.description }} {% endif %} {% if variantChoice.availability %} {% endif %} {% if variantChoice.bundle %} {% endif %} {% if variantChoice.icon %} {% endif %} {% if variantChoice.image %} {% endif %} {% if variantChoice.price %} {% endif %} {% endfor %} {% if variantChoiceStep.description %} {{ variantChoiceStep.description }} {% endif %} {% if variantChoiceStep.infoDescription %} {{ variantChoiceStep.infoDescription }} {% endif %} {% if variantChoiceStep.messageEmpty %} {{ variantChoiceStep.messageEmpty }} {% endif %} {% if variantChoiceStep.placeholder %} {{ variantChoiceStep.placeholder }} {% endif %} {% if variantChoiceStep.icon %} {{ variantChoiceStep.icon.originalHeight }} {{ variantChoiceStep.icon.originalWidth }} {{ variantChoiceStep.icon.url }} {% if variantChoiceStep.icon.alt %} {{ variantChoiceStep.icon.alt }} {% endif %} {% if variantChoiceStep.icon.text %} {{ variantChoiceStep.icon.text }} {% endif %} {% endif %} {% if variantChoiceStep.infoIcon %} {{ variantChoiceStep.infoIcon.originalHeight }} {{ variantChoiceStep.infoIcon.originalWidth }} {{ variantChoiceStep.infoIcon.url }} {% if variantChoiceStep.infoIcon.alt %} {{ variantChoiceStep.infoIcon.alt }} {% endif %} {% if variantChoiceStep.infoIcon.text %} {{ variantChoiceStep.infoIcon.text }} {% endif %} {% endif %} {% if variantChoiceStep.info %} {{ variantChoiceStep.info.id }} {{ variantChoiceStep.info.name }} {% for file in variantChoiceStep.info.files %} {% endfor %} {% for image in variantChoiceStep.info.images %} {% endfor %} {% for textPage in variantChoiceStep.info.subPages %} {% endfor %} {% for video in variantChoiceStep.info.videos %} {% endfor %} {% if variantChoiceStep.info.code %} {{ variantChoiceStep.info.code }} {% endif %} {% if variantChoiceStep.info.text %} {{ variantChoiceStep.info.text }} {% endif %} {% if variantChoiceStep.info.image %} {% endif %} {% if variantChoiceStep.info.contentGrid %} {{ variantChoiceStep.info.contentGrid }} {% endif %} {% endif %} {% if variantChoiceStep.selectedChoice %} {{ variantChoiceStep.selectedChoice.inputValue }} {{ variantChoiceStep.selectedChoice.name }} {% if variantChoiceStep.selectedChoice.selected %} ... {% endif %} {% if variantChoiceStep.selectedChoice.color %} {{ variantChoiceStep.selectedChoice.color }} {% endif %} {% if variantChoiceStep.selectedChoice.description %} {{ variantChoiceStep.selectedChoice.description }} {% endif %} {% if variantChoiceStep.selectedChoice.availability %} {% endif %} {% if variantChoiceStep.selectedChoice.bundle %} {% endif %} {% if variantChoiceStep.selectedChoice.icon %} {% endif %} {% if variantChoiceStep.selectedChoice.image %} {% endif %} {% if variantChoiceStep.selectedChoice.price %} {% endif %} {% endif %} {% endfor %} {% for variant in banner.product.currentVariants %} {{ variant.id }} {{ variant.name }} {{ variant.trackingId }} {% if variant.active %} ... {% endif %} {% if variant.selected %} ... {% endif %} {% for availableUpsellGroup in variant.availableUpsellGroups %} {{ availableUpsellGroup.id }} {{ availableUpsellGroup.name }} {% if availableUpsellGroup.singleSelection %} ... {% endif %} {% for upsell in availableUpsellGroup.upsells %} {% endfor %} {% if availableUpsellGroup.code %} {{ availableUpsellGroup.code }} {% endif %} {% endfor %} {% for enumValue in variant.enumValues %} {{ enumValue.id }} {{ enumValue.name }} {% if enumValue.text %} {{ enumValue.text }} {% endif %} {% if enumValue.image %} {% endif %} {% endfor %} {% for image in variant.images %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {{ variant.item.id }} {{ variant.item.name }} {{ variant.item.trackingId }} {% if variant.item.digital %} ... {% endif %} {% if variant.item.sellable %} ... {% endif %} {% if variant.item.service %} ... {% endif %} {% for availableUpsellGroup in variant.item.availableUpsellGroups %} {% endfor %} {% for upsell in variant.item.availableUpsells %} {% endfor %} {{ variant.item.trackingIds }} {{ variant.item.storageLocations }} {% if variant.item.packageHeight %} {{ variant.item.packageHeight }} {% endif %} {% if variant.item.packageLength %} {{ variant.item.packageLength }} {% endif %} {% if variant.item.packageWeight %} {{ variant.item.packageWeight }} {% endif %} {% if variant.item.packageWidth %} {{ variant.item.packageWidth }} {% endif %} {% if variant.item.code %} {{ variant.item.code }} {% endif %} {% if variant.item.bundle %} {% endif %} {% if variant.item.cheapestDelivery %} {% endif %} {% if variant.item.freeDelivery %} {% endif %} {% if variant.item.closestFreeDelivery %} {% endif %} {% if variant.item.packageDimensions %} {% endif %} {% if variant.item.image %} {% endif %} {% if variant.item.price %} {% endif %} {% if variant.item.url %} {% endif %} {% if variant.item.variant %} {% endif %} {% for upsell in variant.availableUpsells %} {{ upsell.id }} {{ upsell.name }} {% if upsell.inCart %} ... {% endif %} {% if upsell.code %} {{ upsell.code }} {% endif %} {% if upsell.vatRate %} {{ upsell.vatRate }} {% endif %} {% if upsell.image %} {% endif %} {% if upsell.unit %} {% endif %} {% endfor %} {{ variant.url }} {{ variant.url.absolute }} {{ variant.url.path }} {% if variant.legacyRel %} {{ variant.legacyRel }} {% endif %} {% if variant.image %} {{ variant.image.originalHeight }} {{ variant.image.originalWidth }} {{ variant.image.url }} {% if variant.image.alt %} {{ variant.image.alt }} {% endif %} {% if variant.image.text %} {{ variant.image.text }} {% endif %} {% endif %} {% endfor %} {% for variant in banner.product.variants %} {{ variant.id }} {{ variant.name }} {{ variant.trackingId }} {% if variant.active %} ... {% endif %} {% if variant.selected %} ... {% endif %} {% for availableUpsellGroup in variant.availableUpsellGroups %} {{ availableUpsellGroup.id }} {{ availableUpsellGroup.name }} {% if availableUpsellGroup.singleSelection %} ... {% endif %} {% for upsell in availableUpsellGroup.upsells %} {% endfor %} {% if availableUpsellGroup.code %} {{ availableUpsellGroup.code }} {% endif %} {% endfor %} {% for enumValue in variant.enumValues %} {{ enumValue.id }} {{ enumValue.name }} {% if enumValue.text %} {{ enumValue.text }} {% endif %} {% if enumValue.image %} {% endif %} {% endfor %} {% for image in variant.images %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {{ variant.item.id }} {{ variant.item.name }} {{ variant.item.trackingId }} {% if variant.item.digital %} ... {% endif %} {% if variant.item.sellable %} ... {% endif %} {% if variant.item.service %} ... {% endif %} {% for availableUpsellGroup in variant.item.availableUpsellGroups %} {% endfor %} {% for upsell in variant.item.availableUpsells %} {% endfor %} {{ variant.item.trackingIds }} {{ variant.item.storageLocations }} {% if variant.item.packageHeight %} {{ variant.item.packageHeight }} {% endif %} {% if variant.item.packageLength %} {{ variant.item.packageLength }} {% endif %} {% if variant.item.packageWeight %} {{ variant.item.packageWeight }} {% endif %} {% if variant.item.packageWidth %} {{ variant.item.packageWidth }} {% endif %} {% if variant.item.code %} {{ variant.item.code }} {% endif %} {% if variant.item.bundle %} {% endif %} {% if variant.item.cheapestDelivery %} {% endif %} {% if variant.item.freeDelivery %} {% endif %} {% if variant.item.closestFreeDelivery %} {% endif %} {% if variant.item.packageDimensions %} {% endif %} {% if variant.item.image %} {% endif %} {% if variant.item.price %} {% endif %} {% if variant.item.url %} {% endif %} {% if variant.item.variant %} {% endif %} {% for upsell in variant.availableUpsells %} {{ upsell.id }} {{ upsell.name }} {% if upsell.inCart %} ... {% endif %} {% if upsell.code %} {{ upsell.code }} {% endif %} {% if upsell.vatRate %} {{ upsell.vatRate }} {% endif %} {% if upsell.image %} {% endif %} {% if upsell.unit %} {% endif %} {% endfor %} {{ variant.url }} {{ variant.url.absolute }} {{ variant.url.path }} {% if variant.legacyRel %} {{ variant.legacyRel }} {% endif %} {% if variant.image %} {{ variant.image.originalHeight }} {{ variant.image.originalWidth }} {{ variant.image.url }} {% if variant.image.alt %} {{ variant.image.alt }} {% endif %} {% if variant.image.text %} {{ variant.image.text }} {% endif %} {% endif %} {% endfor %} {% for variant in banner.product.variantsWithEnumValueIds %} {{ variant.id }} {{ variant.name }} {{ variant.trackingId }} {% if variant.active %} ... {% endif %} {% if variant.selected %} ... {% endif %} {% for availableUpsellGroup in variant.availableUpsellGroups %} {{ availableUpsellGroup.id }} {{ availableUpsellGroup.name }} {% if availableUpsellGroup.singleSelection %} ... {% endif %} {% for upsell in availableUpsellGroup.upsells %} {% endfor %} {% if availableUpsellGroup.code %} {{ availableUpsellGroup.code }} {% endif %} {% endfor %} {% for enumValue in variant.enumValues %} {{ enumValue.id }} {{ enumValue.name }} {% if enumValue.text %} {{ enumValue.text }} {% endif %} {% if enumValue.image %} {% endif %} {% endfor %} {% for image in variant.images %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {{ variant.item.id }} {{ variant.item.name }} {{ variant.item.trackingId }} {% if variant.item.digital %} ... {% endif %} {% if variant.item.sellable %} ... {% endif %} {% if variant.item.service %} ... {% endif %} {% for availableUpsellGroup in variant.item.availableUpsellGroups %} {% endfor %} {% for upsell in variant.item.availableUpsells %} {% endfor %} {{ variant.item.trackingIds }} {{ variant.item.storageLocations }} {% if variant.item.packageHeight %} {{ variant.item.packageHeight }} {% endif %} {% if variant.item.packageLength %} {{ variant.item.packageLength }} {% endif %} {% if variant.item.packageWeight %} {{ variant.item.packageWeight }} {% endif %} {% if variant.item.packageWidth %} {{ variant.item.packageWidth }} {% endif %} {% if variant.item.code %} {{ variant.item.code }} {% endif %} {% if variant.item.bundle %} {% endif %} {% if variant.item.cheapestDelivery %} {% endif %} {% if variant.item.freeDelivery %} {% endif %} {% if variant.item.closestFreeDelivery %} {% endif %} {% if variant.item.packageDimensions %} {% endif %} {% if variant.item.image %} {% endif %} {% if variant.item.price %} {% endif %} {% if variant.item.url %} {% endif %} {% if variant.item.variant %} {% endif %} {% for upsell in variant.availableUpsells %} {{ upsell.id }} {{ upsell.name }} {% if upsell.inCart %} ... {% endif %} {% if upsell.code %} {{ upsell.code }} {% endif %} {% if upsell.vatRate %} {{ upsell.vatRate }} {% endif %} {% if upsell.image %} {% endif %} {% if upsell.unit %} {% endif %} {% endfor %} {{ variant.url }} {{ variant.url.absolute }} {{ variant.url.path }} {% if variant.legacyRel %} {{ variant.legacyRel }} {% endif %} {% if variant.image %} {{ variant.image.originalHeight }} {{ variant.image.originalWidth }} {{ variant.image.url }} {% if variant.image.alt %} {{ variant.image.alt }} {% endif %} {% if variant.image.text %} {{ variant.image.text }} {% endif %} {% endif %} {% endfor %} {{ banner.product.variantType.id }} {{ banner.product.variantType.name }} {% for video in banner.product.videos %} {{ video.embeddedUrl }} {% if video.name %} {{ video.name }} {% endif %} {% if video.image %} {{ video.image.originalHeight }} {{ video.image.originalWidth }} {{ video.image.url }} {% if video.image.alt %} {{ video.image.alt }} {% endif %} {% if video.image.text %} {{ video.image.text }} {% endif %} {% endif %} {% endfor %} {{ banner.product.trackingIds }} {% if banner.product.currentSubName %} {{ banner.product.currentSubName }} {% endif %} {% if banner.product.nameSuffix %} {{ banner.product.nameSuffix }} {% endif %} {% if banner.product.nameSupplier %} {{ banner.product.nameSupplier }} {% endif %} {% if banner.product.text %} {{ banner.product.text }} {% endif %} {% if banner.product.attribute %} {{ banner.product.attribute.name }} {{ banner.product.attribute.valuesHtml }} {% for attributeValueInstance in banner.product.attribute.values %} {{ attributeValueInstance.values }} {{ attributeValueInstance.nameHtml }} {% if attributeValueInstance.colorCode %} {{ attributeValueInstance.colorCode }} {% endif %} {% if attributeValueInstance.text %} {{ attributeValueInstance.text }} {% endif %} {% if attributeValueInstance.unit %} {{ attributeValueInstance.unit }} {% endif %} {% if attributeValueInstance.image %} {% endif %} {% if attributeValueInstance.name %} {{ attributeValueInstance.name }} {% endif %} {% endfor %} {% if banner.product.attribute.description %} {{ banner.product.attribute.description }} {% endif %} {% if banner.product.attribute.group %} {{ banner.product.attribute.group.id }} {% endif %} {% if banner.product.attribute.image %} {{ banner.product.attribute.image.originalHeight }} {{ banner.product.attribute.image.originalWidth }} {{ banner.product.attribute.image.url }} {% if banner.product.attribute.image.alt %} {{ banner.product.attribute.image.alt }} {% endif %} {% if banner.product.attribute.image.text %} {{ banner.product.attribute.image.text }} {% endif %} {% endif %} {% endif %} {% if banner.product.brand %} {{ banner.product.brand.id }} {{ banner.product.brand.headline }} {{ banner.product.brand.name }} {% if banner.product.brand.flagImportant %} ... {% endif %} {% for category in banner.product.brand.categories %} {{ category.id }} {{ category.productCount }} {{ category.productInStockCount }} {{ category.totalStockQuantity }} {{ category.headline }} {{ category.menuName }} {{ category.name }} {% if category.flagErotic %} ... {% endif %} {% if category.flagImportant %} ... {% endif %} {% if category.noFollow %} ... {% endif %} {% for category in category.subcategories %} {% endfor %} {% for video in category.videos %} {% endfor %} {{ category.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 %} {{ banner.product.brand.url }} {{ banner.product.brand.url.absolute }} {{ banner.product.brand.url.path }} {{ banner.product.brand.categoryUrl }} {{ banner.product.brand.categoryUrl.absolute }} {{ banner.product.brand.categoryUrl.path }} {% if banner.product.brand.code %} {{ banner.product.brand.code }} {% endif %} {% if banner.product.brand.web %} {{ banner.product.brand.web }} {% endif %} {% if banner.product.brand.text %} {{ banner.product.brand.text }} {% endif %} {% if banner.product.brand.image %} {{ banner.product.brand.image.originalHeight }} {{ banner.product.brand.image.originalWidth }} {{ banner.product.brand.image.url }} {% if banner.product.brand.image.alt %} {{ banner.product.brand.image.alt }} {% endif %} {% if banner.product.brand.image.text %} {{ banner.product.brand.image.text }} {% endif %} {% endif %} {% if banner.product.brand.seo %} {% if banner.product.brand.seo.description %} {{ banner.product.brand.seo.description }} {% endif %} {% if banner.product.brand.seo.keywords %} {{ banner.product.brand.seo.keywords }} {% endif %} {% if banner.product.brand.seo.title %} {{ banner.product.brand.seo.title }} {% endif %} {% endif %} {% if banner.product.brand.contentGrid %} {{ banner.product.brand.contentGrid }} {% endif %} {% endif %} {% if banner.product.imageForEnumValueId %} {{ banner.product.imageForEnumValueId.originalHeight }} {{ banner.product.imageForEnumValueId.originalWidth }} {{ banner.product.imageForEnumValueId.url }} {% if banner.product.imageForEnumValueId.alt %} {{ banner.product.imageForEnumValueId.alt }} {% endif %} {% if banner.product.imageForEnumValueId.text %} {{ banner.product.imageForEnumValueId.text }} {% endif %} {% endif %} {% if banner.product.image %} {{ banner.product.image.originalHeight }} {{ banner.product.image.originalWidth }} {{ banner.product.image.url }} {% if banner.product.image.alt %} {{ banner.product.image.alt }} {% endif %} {% if banner.product.image.text %} {{ banner.product.image.text }} {% endif %} {% endif %} {% if banner.product.successor %} {{ banner.product.successor.id }} {{ banner.product.successor.name }} {{ banner.product.successor.trackingId }} {{ banner.product.successor.dateCreated|date('d. m. Y H:i') }} {% if banner.product.successor.active %} ... {% endif %} {% if banner.product.successor.compared %} ... {% endif %} {% if banner.product.successor.differentVariantPrices %} ... {% endif %} {% if banner.product.successor.flagNew %} ... {% endif %} {% if banner.product.successor.flagPromo %} ... {% endif %} {% if banner.product.successor.flagSecondHand %} ... {% endif %} {% if banner.product.successor.flagSellout %} ... {% endif %} {% if banner.product.successor.otherDiscountApplicable %} ... {% endif %} {% if banner.product.successor.soldSeparately %} ... {% endif %} {% for attributeInstance in banner.product.successor.attributes %} {{ attributeInstance.name }} {{ attributeInstance.valuesHtml }} {% for attributeValueInstance in attributeInstance.values %} {% endfor %} {% if attributeInstance.description %} {{ attributeInstance.description }} {% endif %} {% if attributeInstance.group %} {% endif %} {% if attributeInstance.image %} {% endif %} {% endfor %} {% for availableUpsellGroup in banner.product.successor.availableUpsellGroups %} {{ availableUpsellGroup.id }} {{ availableUpsellGroup.name }} {% if availableUpsellGroup.singleSelection %} ... {% endif %} {% for upsell in availableUpsellGroup.upsells %} {% endfor %} {% if availableUpsellGroup.code %} {{ availableUpsellGroup.code }} {% endif %} {% endfor %} {{ banner.product.successor.category.id }} {{ banner.product.successor.category.productCount }} {{ banner.product.successor.category.productInStockCount }} {{ banner.product.successor.category.totalStockQuantity }} {{ banner.product.successor.category.headline }} {{ banner.product.successor.category.menuName }} {{ banner.product.successor.category.name }} {% if banner.product.successor.category.flagErotic %} ... {% endif %} {% if banner.product.successor.category.flagImportant %} ... {% endif %} {% if banner.product.successor.category.noFollow %} ... {% endif %} {% for category in banner.product.successor.category.subcategories %} {% endfor %} {% for video in banner.product.successor.category.videos %} {% endfor %} {{ banner.product.successor.category.pathIds }} {{ banner.product.successor.category.pathNames }} {{ banner.product.successor.category.templateAttribute }} {% if banner.product.successor.category.subHeadline %} {{ banner.product.successor.category.subHeadline }} {% endif %} {% if banner.product.successor.category.text %} {{ banner.product.successor.category.text }} {% endif %} {% if banner.product.successor.category.parent %} {% endif %} {% if banner.product.successor.category.image %} {% endif %} {% if banner.product.successor.category.contentGrid %} {{ banner.product.successor.category.contentGrid }} {% endif %} {% for category in banner.product.successor.categories %} {{ category.id }} {{ category.productCount }} {{ category.productInStockCount }} {{ category.totalStockQuantity }} {{ category.headline }} {{ category.menuName }} {{ category.name }} {% if category.flagErotic %} ... {% endif %} {% if category.flagImportant %} ... {% endif %} {% if category.noFollow %} ... {% endif %} {% for category in category.subcategories %} {% endfor %} {% for video in category.videos %} {% endfor %} {{ category.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 banner.product.successor.otherCategories %} {{ category.id }} {{ category.productCount }} {{ category.productInStockCount }} {{ category.totalStockQuantity }} {{ category.headline }} {{ category.menuName }} {{ category.name }} {% if category.flagErotic %} ... {% endif %} {% if category.flagImportant %} ... {% endif %} {% if category.noFollow %} ... {% endif %} {% for category in category.subcategories %} {% endfor %} {% for video in category.videos %} {% endfor %} {{ category.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 banner.product.successor.files %} {{ file.bytes }} {{ file.url }} {% if file.mime %} {{ file.mime }} {% endif %} {% if file.name %} {{ file.name }} {% endif %} {% endfor %} {% for image in banner.product.successor.images %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in banner.product.successor.imagesWithEnumValue %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in banner.product.successor.images360 %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in banner.product.successor.currentImages %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in banner.product.successor.imagesWithoutEnumValue %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in banner.product.successor.otherImages %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {{ banner.product.successor.item.id }} {{ banner.product.successor.item.name }} {{ banner.product.successor.item.trackingId }} {% if banner.product.successor.item.digital %} ... {% endif %} {% if banner.product.successor.item.sellable %} ... {% endif %} {% if banner.product.successor.item.service %} ... {% endif %} {% for availableUpsellGroup in banner.product.successor.item.availableUpsellGroups %} {% endfor %} {% for upsell in banner.product.successor.item.availableUpsells %} {% endfor %} {{ banner.product.successor.item.trackingIds }} {{ banner.product.successor.item.storageLocations }} {% if banner.product.successor.item.packageHeight %} {{ banner.product.successor.item.packageHeight }} {% endif %} {% if banner.product.successor.item.packageLength %} {{ banner.product.successor.item.packageLength }} {% endif %} {% if banner.product.successor.item.packageWeight %} {{ banner.product.successor.item.packageWeight }} {% endif %} {% if banner.product.successor.item.packageWidth %} {{ banner.product.successor.item.packageWidth }} {% endif %} {% if banner.product.successor.item.code %} {{ banner.product.successor.item.code }} {% endif %} {% if banner.product.successor.item.bundle %} {% endif %} {% if banner.product.successor.item.cheapestDelivery %} {% endif %} {% if banner.product.successor.item.freeDelivery %} {% endif %} {% if banner.product.successor.item.closestFreeDelivery %} {% endif %} {% if banner.product.successor.item.packageDimensions %} {% endif %} {% if banner.product.successor.item.image %} {% endif %} {% if banner.product.successor.item.price %} {% endif %} {% if banner.product.successor.item.url %} {% endif %} {% if banner.product.successor.item.variant %} {% endif %} {% for label in banner.product.successor.labels %} {{ label.id }} {{ label.name }} {% if label.code %} {{ label.code }} {% endif %} {% if label.colorCode %} {{ label.colorCode }} {% endif %} {% if label.image %} {% endif %} {% endfor %} {% for productEnumValue in banner.product.successor.enumValues %} {{ productEnumValue.id }} {{ productEnumValue.name }} {% if productEnumValue.selected %} ... {% endif %} {% for variant in productEnumValue.variants %} {% endfor %} {% if productEnumValue.text %} {{ productEnumValue.text }} {% endif %} {% if productEnumValue.image %} {% endif %} {% if productEnumValue.variantImage %} {% endif %} {% endfor %} {% for product in banner.product.successor.packTemplateProducts %} {{ product.id }} {{ product.name }} {{ product.trackingId }} {{ product.dateCreated|date('d. m. Y H:i') }} {% if product.active %} ... {% endif %} {% if product.compared %} ... {% endif %} {% if product.differentVariantPrices %} ... {% endif %} {% if product.flagNew %} ... {% endif %} {% if product.flagPromo %} ... {% endif %} {% if product.flagSecondHand %} ... {% endif %} {% if product.flagSellout %} ... {% endif %} {% if product.otherDiscountApplicable %} ... {% endif %} {% if product.soldSeparately %} ... {% endif %} {% for 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.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 %} {{ banner.product.successor.rating.count }} {% if banner.product.successor.rating.voted %} ... {% endif %} {% if banner.product.successor.rating.average %} {{ banner.product.successor.rating.average }} {% endif %} {% for upsell in banner.product.successor.availableUpsells %} {{ upsell.id }} {{ upsell.name }} {% if upsell.inCart %} ... {% endif %} {% if upsell.code %} {{ upsell.code }} {% endif %} {% if upsell.vatRate %} {{ upsell.vatRate }} {% endif %} {% if upsell.image %} {% endif %} {% if upsell.unit %} {% endif %} {% endfor %} {{ banner.product.successor.url }} {{ banner.product.successor.url.absolute }} {{ banner.product.successor.url.path }} {% for variantChoiceStep in banner.product.successor.variantChoiceSteps %} {{ variantChoiceStep.headline }} {{ variantChoiceStep.inputName }} {{ variantChoiceStep.mode }} {% if variantChoiceStep.final %} ... {% endif %} {% for variantChoice in variantChoiceStep.choices %} {% endfor %} {% if variantChoiceStep.description %} {{ variantChoiceStep.description }} {% endif %} {% if variantChoiceStep.infoDescription %} {{ variantChoiceStep.infoDescription }} {% endif %} {% if variantChoiceStep.messageEmpty %} {{ variantChoiceStep.messageEmpty }} {% endif %} {% if variantChoiceStep.placeholder %} {{ variantChoiceStep.placeholder }} {% endif %} {% if variantChoiceStep.icon %} {% endif %} {% if variantChoiceStep.infoIcon %} {% endif %} {% if variantChoiceStep.info %} {% endif %} {% if variantChoiceStep.selectedChoice %} {% endif %} {% endfor %} {% for variant in banner.product.successor.currentVariants %} {{ variant.id }} {{ variant.name }} {{ variant.trackingId }} {% if variant.active %} ... {% endif %} {% if variant.selected %} ... {% endif %} {% for availableUpsellGroup in variant.availableUpsellGroups %} {% endfor %} {% for enumValue in variant.enumValues %} {% endfor %} {% for image in variant.images %} {% endfor %} {% for upsell in variant.availableUpsells %} {% endfor %} {% if variant.legacyRel %} {{ variant.legacyRel }} {% endif %} {% if variant.image %} {% endif %} {% endfor %} {% for variant in banner.product.successor.variants %} {{ variant.id }} {{ variant.name }} {{ variant.trackingId }} {% if variant.active %} ... {% endif %} {% if variant.selected %} ... {% endif %} {% for availableUpsellGroup in variant.availableUpsellGroups %} {% endfor %} {% for enumValue in variant.enumValues %} {% endfor %} {% for image in variant.images %} {% endfor %} {% for upsell in variant.availableUpsells %} {% endfor %} {% if variant.legacyRel %} {{ variant.legacyRel }} {% endif %} {% if variant.image %} {% endif %} {% endfor %} {% for variant in banner.product.successor.variantsWithEnumValueIds %} {{ variant.id }} {{ variant.name }} {{ variant.trackingId }} {% if variant.active %} ... {% endif %} {% if variant.selected %} ... {% endif %} {% for availableUpsellGroup in variant.availableUpsellGroups %} {% endfor %} {% for enumValue in variant.enumValues %} {% endfor %} {% for image in variant.images %} {% endfor %} {% for upsell in variant.availableUpsells %} {% endfor %} {% if variant.legacyRel %} {{ variant.legacyRel }} {% endif %} {% if variant.image %} {% endif %} {% endfor %} {{ banner.product.successor.variantType.id }} {{ banner.product.successor.variantType.name }} {% for video in banner.product.successor.videos %} {{ video.embeddedUrl }} {% if video.name %} {{ video.name }} {% endif %} {% if video.image %} {% endif %} {% endfor %} {{ banner.product.successor.trackingIds }} {% if banner.product.successor.currentSubName %} {{ banner.product.successor.currentSubName }} {% endif %} {% if banner.product.successor.nameSuffix %} {{ banner.product.successor.nameSuffix }} {% endif %} {% if banner.product.successor.nameSupplier %} {{ banner.product.successor.nameSupplier }} {% endif %} {% if banner.product.successor.text %} {{ banner.product.successor.text }} {% endif %} {% if banner.product.successor.attribute %} {{ banner.product.successor.attribute.name }} {{ banner.product.successor.attribute.valuesHtml }} {% for attributeValueInstance in banner.product.successor.attribute.values %} {% endfor %} {% if banner.product.successor.attribute.description %} {{ banner.product.successor.attribute.description }} {% endif %} {% if banner.product.successor.attribute.group %} {% endif %} {% if banner.product.successor.attribute.image %} {% endif %} {% endif %} {% if banner.product.successor.brand %} {{ banner.product.successor.brand.id }} {{ banner.product.successor.brand.headline }} {{ banner.product.successor.brand.name }} {% if banner.product.successor.brand.flagImportant %} ... {% endif %} {% for category in banner.product.successor.brand.categories %} {% endfor %} {% if banner.product.successor.brand.code %} {{ banner.product.successor.brand.code }} {% endif %} {% if banner.product.successor.brand.web %} {{ banner.product.successor.brand.web }} {% endif %} {% if banner.product.successor.brand.text %} {{ banner.product.successor.brand.text }} {% endif %} {% if banner.product.successor.brand.image %} {% endif %} {% if banner.product.successor.brand.seo %} {% endif %} {% if banner.product.successor.brand.contentGrid %} {{ banner.product.successor.brand.contentGrid }} {% endif %} {% endif %} {% if banner.product.successor.imageForEnumValueId %} {{ banner.product.successor.imageForEnumValueId.originalHeight }} {{ banner.product.successor.imageForEnumValueId.originalWidth }} {{ banner.product.successor.imageForEnumValueId.url }} {% if banner.product.successor.imageForEnumValueId.alt %} {{ banner.product.successor.imageForEnumValueId.alt }} {% endif %} {% if banner.product.successor.imageForEnumValueId.text %} {{ banner.product.successor.imageForEnumValueId.text }} {% endif %} {% endif %} {% if banner.product.successor.image %} {{ banner.product.successor.image.originalHeight }} {{ banner.product.successor.image.originalWidth }} {{ banner.product.successor.image.url }} {% if banner.product.successor.image.alt %} {{ banner.product.successor.image.alt }} {% endif %} {% if banner.product.successor.image.text %} {{ banner.product.successor.image.text }} {% endif %} {% endif %} {% if banner.product.successor.seo %} {% if banner.product.successor.seo.description %} {{ banner.product.successor.seo.description }} {% endif %} {% if banner.product.successor.seo.keywords %} {{ banner.product.successor.seo.keywords }} {% endif %} {% if banner.product.successor.seo.title %} {{ banner.product.successor.seo.title }} {% endif %} {% endif %} {% if banner.product.successor.supplier %} {{ banner.product.successor.supplier.id }} {{ banner.product.successor.supplier.name }} {% endif %} {% if banner.product.successor.unit %} {{ banner.product.successor.unit.name }} {% endif %} {% if banner.product.successor.variant %} {{ banner.product.successor.variant.id }} {{ banner.product.successor.variant.name }} {{ banner.product.successor.variant.trackingId }} {% if banner.product.successor.variant.active %} ... {% endif %} {% if banner.product.successor.variant.selected %} ... {% endif %} {% for availableUpsellGroup in banner.product.successor.variant.availableUpsellGroups %} {% endfor %} {% for enumValue in banner.product.successor.variant.enumValues %} {% endfor %} {% for image in banner.product.successor.variant.images %} {% endfor %} {% for upsell in banner.product.successor.variant.availableUpsells %} {% endfor %} {% if banner.product.successor.variant.legacyRel %} {{ banner.product.successor.variant.legacyRel }} {% endif %} {% if banner.product.successor.variant.image %} {% endif %} {% endif %} {% if banner.product.successor.warranty %} {{ banner.product.successor.warranty.months }} {% endif %} {% if banner.product.successor.contentGrid %} {{ banner.product.successor.contentGrid }} {% endif %} {% endif %} {% if banner.product.seo %} {% if banner.product.seo.description %} {{ banner.product.seo.description }} {% endif %} {% if banner.product.seo.keywords %} {{ banner.product.seo.keywords }} {% endif %} {% if banner.product.seo.title %} {{ banner.product.seo.title }} {% endif %} {% endif %} {% if banner.product.supplier %} {{ banner.product.supplier.id }} {{ banner.product.supplier.name }} {% endif %} {% if banner.product.unit %} {{ banner.product.unit.name }} {% endif %} {% if banner.product.variant %} {{ banner.product.variant.id }} {{ banner.product.variant.name }} {{ banner.product.variant.trackingId }} {% if banner.product.variant.active %} ... {% endif %} {% if banner.product.variant.selected %} ... {% endif %} {% for availableUpsellGroup in banner.product.variant.availableUpsellGroups %} {{ availableUpsellGroup.id }} {{ availableUpsellGroup.name }} {% if availableUpsellGroup.singleSelection %} ... {% endif %} {% for upsell in availableUpsellGroup.upsells %} {% endfor %} {% if availableUpsellGroup.code %} {{ availableUpsellGroup.code }} {% endif %} {% endfor %} {% for enumValue in banner.product.variant.enumValues %} {{ enumValue.id }} {{ enumValue.name }} {% if enumValue.text %} {{ enumValue.text }} {% endif %} {% if enumValue.image %} {% endif %} {% endfor %} {% for image in banner.product.variant.images %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {{ banner.product.variant.item.id }} {{ banner.product.variant.item.name }} {{ banner.product.variant.item.trackingId }} {% if banner.product.variant.item.digital %} ... {% endif %} {% if banner.product.variant.item.sellable %} ... {% endif %} {% if banner.product.variant.item.service %} ... {% endif %} {% for availableUpsellGroup in banner.product.variant.item.availableUpsellGroups %} {% endfor %} {% for upsell in banner.product.variant.item.availableUpsells %} {% endfor %} {{ banner.product.variant.item.trackingIds }} {{ banner.product.variant.item.storageLocations }} {% if banner.product.variant.item.packageHeight %} {{ banner.product.variant.item.packageHeight }} {% endif %} {% if banner.product.variant.item.packageLength %} {{ banner.product.variant.item.packageLength }} {% endif %} {% if banner.product.variant.item.packageWeight %} {{ banner.product.variant.item.packageWeight }} {% endif %} {% if banner.product.variant.item.packageWidth %} {{ banner.product.variant.item.packageWidth }} {% endif %} {% if banner.product.variant.item.code %} {{ banner.product.variant.item.code }} {% endif %} {% if banner.product.variant.item.bundle %} {% endif %} {% if banner.product.variant.item.cheapestDelivery %} {% endif %} {% if banner.product.variant.item.freeDelivery %} {% endif %} {% if banner.product.variant.item.closestFreeDelivery %} {% endif %} {% if banner.product.variant.item.packageDimensions %} {% endif %} {% if banner.product.variant.item.image %} {% endif %} {% if banner.product.variant.item.price %} {% endif %} {% if banner.product.variant.item.url %} {% endif %} {% for upsell in banner.product.variant.availableUpsells %} {{ upsell.id }} {{ upsell.name }} {% if upsell.inCart %} ... {% endif %} {% if upsell.code %} {{ upsell.code }} {% endif %} {% if upsell.vatRate %} {{ upsell.vatRate }} {% endif %} {% if upsell.image %} {% endif %} {% if upsell.unit %} {% endif %} {% endfor %} {{ banner.product.variant.url }} {{ banner.product.variant.url.absolute }} {{ banner.product.variant.url.path }} {% if banner.product.variant.legacyRel %} {{ banner.product.variant.legacyRel }} {% endif %} {% if banner.product.variant.image %} {{ banner.product.variant.image.originalHeight }} {{ banner.product.variant.image.originalWidth }} {{ banner.product.variant.image.url }} {% if banner.product.variant.image.alt %} {{ banner.product.variant.image.alt }} {% endif %} {% if banner.product.variant.image.text %} {{ banner.product.variant.image.text }} {% endif %} {% endif %} {% endif %} {% if banner.product.warranty %} {{ banner.product.warranty.months }} {% endif %} {% if banner.product.contentGrid %} {{ banner.product.contentGrid }} {% endif %} {% endif %} {% if banner.urlTarget %} {{ banner.urlTarget }} {% endif %} .. _class-bannersection: ============= BannerSection ============= Sekce bannerů .. csv-table:: Attributy objektu **BannerSection** :header: "Název", Typ, "Popis" "id", "int", "Id" "height", "int | null", "Výška (px)" "width", "int | null", "Šířka (px)" "code", "string | null", "Kód sekce" "name", "string | null", "Název" Příklady: .. code-block:: html+twig {{ bannersection.id }} {% if bannersection.height %} {{ bannersection.height }} {% endif %} {% if bannersection.width %} {{ bannersection.width }} {% endif %} {% if bannersection.code %} {{ bannersection.code }} {% endif %} {% if bannersection.name %} {{ bannersection.name }} {% endif %} .. _class-brand: ===== Brand ===== .. csv-table:: Attributy objektu **Brand** :header: "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`_", "URL značky" "categoryUrl", "`Url`_", "URL kategorie značky" "code", "string | null", "Kód" "web", "string | null", "Web značky" "text", "html | null", "Text" "image", "`Image`_ | null", "Obrázek" "seo", "`Seo`_ | null", "SEO attributy" "contentGrid", "array | null", "Content grid" Příklady: .. code-block:: html+twig {{ 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 %} .. _class-brandcategory: ============= BrandCategory ============= .. csv-table:: Attributy objektu **BrandCategory** :header: "Název", Typ, "Popis" "brand", "`Brand`_", "Značka" "category", "`Category`_", "Kategorie" "url", "`Url`_", "URL" "parent", "`BrandCategory`_ | null", "Nadřazená kategorie" Příklady: .. code-block:: html+twig {{ 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 %} .. _class-breadcrumb: ========== Breadcrumb ========== .. csv-table:: Attributy objektu **Breadcrumb** :header: "Název", Typ, "Popis" "label", "string", "Popisek" "url", "`Url`_ | null", "URL (poslední drobeček nemá URL)" Příklady: .. code-block:: html+twig {{ breadcrumb.label }} {% if breadcrumb.url %} {{ breadcrumb.url }} {{ breadcrumb.url.absolute }} {{ breadcrumb.url.path }} {% endif %} .. _class-bundle: ====== Bundle ====== .. csv-table:: Attributy objektu **Bundle** :header: "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: .. code-block:: html+twig {% 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 %} .. _class-category: ======== Category ======== .. csv-table:: Attributy objektu **Category** :header: "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 " "subcategories", "`Category`_\[\]", "Podkategorie" "url", "`Url`_", "URL" "variantType", "`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: .. code-block:: html+twig {{ 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 %} .. _class-comment: ======= Comment ======= .. csv-table:: Attributy objektu **Comment** :header: "Název", Typ, "Popis" "depth", "int", "Hloubka zanoření" "id", "int", "Id" "date", "datetime", "Datum" "important", "bool", "Důležitý?" "replies", "`Comment`_\[\]", "Odpovědi na příspěvek" "rating", "int | null", "Hodnocení (1 až 5)" "authorName", "string | null", "Jméno autora" "email", "string | null", "Email autora" "phone", "string | null", "Telefon autora" "title", "string | null", "Titulek" "text", "html | null", "Text příspěvku" "admin", "`Admin`_ | null", "Správce eshopu" Příklady: .. code-block:: html+twig {{ 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 %} .. _class-compatibility-compatibilityattribute: ==================================== Compatibility/CompatibilityAttribute ==================================== .. csv-table:: Attributy objektu **Compatibility/CompatibilityAttribute** :header: "Název", Typ, "Popis" "id", "int", "ID" "name", "string", "Název" "values", "`Compatibility/CompatibilityAttributeValue`_\[\]", "Hodnoty" Příklady: .. code-block:: html+twig {{ compatibilityattribute.id }} {{ compatibilityattribute.name }} {% for compatibilityAttributeValue in compatibilityattribute.values %} {{ compatibilityAttributeValue.id }} {{ compatibilityAttributeValue.name }} {{ compatibilityAttributeValue.attribute.id }} {{ compatibilityAttributeValue.attribute.name }} {% endfor %} .. _class-compatibility-compatibilityattributevalue: ========================================= Compatibility/CompatibilityAttributeValue ========================================= Hodnota parametru .. csv-table:: Attributy objektu **Compatibility/CompatibilityAttributeValue** :header: "Název", Typ, "Popis" "id", "int", "Id" "name", "string", "Název" "attribute", "`Compatibility/CompatibilityAttribute`_", "Parametr" Příklady: .. code-block:: html+twig {{ compatibilityattributevalue.id }} {{ compatibilityattributevalue.name }} {{ compatibilityattributevalue.attribute.id }} {{ compatibilityattributevalue.attribute.name }} {% for compatibilityAttributeValue in compatibilityattributevalue.attribute.values %} {{ compatibilityAttributeValue.id }} {{ compatibilityAttributeValue.name }} {% endfor %} .. _class-customer: ======== Customer ======== Registrovaný zákazník .. csv-table:: Attributy objektu **Customer** :header: "Název", Typ, "Popis" "id", "int", "Id" "userPointsAvailable", "int", "Aktuální počet bodů věrnostního programu" "userPointsExpiringOn", "int", "Počet bodů expirujících v určité datum" "userPointsTotal", "int", "Celkový počet získáných bodů věrnostního programu" "name", "string", "Jméno zákazníka" "dateCreated", "datetime", "Datum registrace" "productOnWishlist", "bool", "Je produkt na wishlistu?" "wholesale", "bool", "Velkoobchodník" "receipts", "`AccountingDocument`_\[\]", "Účtenky" "address", "`Addresses`_", "Adresy" "analyticReports", "`AnalyticsReport`_\[\]", "Reporty analytiky" "orders", "`Order`_\[\]", "Objednávky zákazníka" "childOrders", "`Order`_\[\]", "Objednávky podřazených zákazníků" "userPointChanges", "`UserPointChange`_\[\]", "Historie bodů věrnostního programu CustomerRO::SORT_POINT_NEWEST, CustomerRO::SORT_POINT_OLDEST })" "alternativeAddresses", "array", "Alternativní adresy zákazníka" "loyaltyCard", "string | null", "Kód věrnostní karty" Příklady: .. code-block:: html+twig {{ 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.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.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 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 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.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.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.url %} {{ order.shop.url }} {% endif %} {% if order.shop.country %} {{ order.shop.country.code }} {{ order.shop.country.flagCircleUrl }} {{ order.shop.country.flagUrl }} {{ order.shop.country.name }} {% if order.shop.country.eU %} ... {% endif %} {% endif %} {% if order.shop.image %} {{ order.shop.image.originalHeight }} {{ order.shop.image.originalWidth }} {{ order.shop.image.url }} {% if order.shop.image.alt %} {{ order.shop.image.alt }} {% endif %} {% if order.shop.image.text %} {{ order.shop.image.text }} {% endif %} {% endif %} {{ order.url }} {{ order.url.absolute }} {{ order.url.path }} {% for giftVoucher in order.purchasedGiftVouchers %} {{ giftVoucher.code }} {{ giftVoucher.name }} {{ giftVoucher.validFrom|date('d. m. Y H:i') }} {{ giftVoucher.validTo|date('d. m. Y H:i') }} {{ giftVoucher.value.currency }} {{ giftVoucher.value.formatted }} {% endfor %} {% for giftVoucher in order.vouchers %} {{ giftVoucher.code }} {{ giftVoucher.name }} {{ giftVoucher.validFrom|date('d. m. Y H:i') }} {{ giftVoucher.validTo|date('d. m. Y H:i') }} {{ giftVoucher.value.currency }} {{ giftVoucher.value.formatted }} {% 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.erotic %} ... {% endif %} {% if order.externalReviewAllowed %} ... {% endif %} {% if order.paid %} ... {% endif %} {% if order.useLoyaltyPoints %} ... {% endif %} {% if order.useLoyaltyPointsManually %} ... {% endif %} {% for accountingDocument in order.accountingDocuments %} {% endfor %} {% for payment in order.availablePaymentMethods %} {% endfor %} {% for payment in order.payments %} {% endfor %} {% for transport in order.availableTransportMethods %} {% endfor %} {% for catalogItem in order.catalogItems %} {% endfor %} {% for catalogItem in order.items %} {% endfor %} {% for discountItem in order.discountItems %} {% endfor %} {% for giftVoucher in order.purchasedGiftVouchers %} {% endfor %} {% for giftVoucher in order.vouchers %} {% endfor %} {% if order.code %} {{ order.code }} {% endif %} {% if order.note %} {{ order.note }} {% endif %} {% if order.date %} {{ order.date|date('d. m. Y H:i') }} {% endif %} {% if order.dateInStatus %} {{ order.dateInStatus|date('d. m. Y H:i') }} {% endif %} {% if order.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 %} {% 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.free %} ... {% endif %} {% if order.closestFreeDelivery.transport.pickup %} ... {% endif %} {% if order.closestFreeDelivery.transport.selected %} ... {% endif %} {% if order.closestFreeDelivery.transport.text %} {{ order.closestFreeDelivery.transport.text }} {% endif %} {% if order.closestFreeDelivery.transport.branch %} {% endif %} {% if order.closestFreeDelivery.transport.carrier %} {% endif %} {% if order.closestFreeDelivery.transport.deliveryDate %} {% endif %} {% if order.closestFreeDelivery.transport.packageType %} {% endif %} {% if order.closestFreeDelivery.transport.image %} {% endif %} {{ order.closestFreeDelivery.price.vatRate }} {% if order.closestFreeDelivery.price.discountPercent %} {{ order.closestFreeDelivery.price.discountPercent }} {% endif %} {% if order.closestFreeDelivery.price.discountValidTo %} {{ order.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if order.closestFreeDelivery.price.beforeDiscount %} {% endif %} {% if order.closestFreeDelivery.price.discount %} {% endif %} {% if order.closestFreeDelivery.id %} {{ order.closestFreeDelivery.id }} {% endif %} {% if order.closestFreeDelivery.freeLimit %} {{ order.closestFreeDelivery.freeLimit.percent }} {% endif %} {% endif %} {% if order.parentOrder %} {{ order.parentOrder.amountOfItem }} {{ order.parentOrder.catalogItemCount }} {{ order.parentOrder.catalogItemTotalAmount }} {{ order.parentOrder.id }} {{ order.parentOrder.loyaltyPoints }} {{ order.parentOrder.usableLoyaltyPoints }} {{ order.parentOrder.language }} {{ order.parentOrder.vs }} {% if order.parentOrder.containsItem %} ... {% endif %} {% if order.parentOrder.erotic %} ... {% endif %} {% if order.parentOrder.externalReviewAllowed %} ... {% endif %} {% if order.parentOrder.paid %} ... {% endif %} {% if order.parentOrder.useLoyaltyPoints %} ... {% endif %} {% if order.parentOrder.useLoyaltyPointsManually %} ... {% endif %} {% for accountingDocument in order.parentOrder.accountingDocuments %} {{ accountingDocument.code }} {{ accountingDocument.date|date('d. m. Y H:i') }} {% endfor %} {% for payment in order.parentOrder.availablePaymentMethods %} {{ payment.code }} {{ payment.inputId }} {{ payment.name }} {{ payment.url }} {{ payment.vatRate }} {% if payment.free %} ... {% endif %} {% if payment.inAdvance %} ... {% endif %} {% if payment.selected %} ... {% endif %} {% if payment.vs %} {{ payment.vs }} {% endif %} {% if payment.qRCodeHTML %} {{ payment.qRCodeHTML }} {% endif %} {% if payment.text %} {{ payment.text }} {% endif %} {% if payment.bankAccount %} {% endif %} {% if payment.image %} {% endif %} {% endfor %} {% for payment in order.parentOrder.payments %} {{ payment.code }} {{ payment.inputId }} {{ payment.name }} {{ payment.url }} {{ payment.vatRate }} {% if payment.free %} ... {% endif %} {% if payment.inAdvance %} ... {% endif %} {% if payment.selected %} ... {% endif %} {% if payment.vs %} {{ payment.vs }} {% endif %} {% if payment.qRCodeHTML %} {{ payment.qRCodeHTML }} {% endif %} {% if payment.text %} {{ payment.text }} {% endif %} {% if payment.bankAccount %} {% endif %} {% if payment.image %} {% endif %} {% endfor %} {% for transport in order.parentOrder.availableTransportMethods %} {{ transport.inputId }} {{ transport.name }} {{ transport.vatRate }} {% if transport.branchRequired %} ... {% endif %} {% if transport.currier %} ... {% endif %} {% if transport.dateGuaranteed %} ... {% endif %} {% if transport.deliveryAddressRequired %} ... {% endif %} {% if transport.deliveryToAddress %} ... {% endif %} {% if transport.free %} ... {% endif %} {% if transport.pickup %} ... {% endif %} {% if transport.selected %} ... {% endif %} {% if transport.text %} {{ transport.text }} {% endif %} {% if transport.branch %} {% endif %} {% if transport.carrier %} {% endif %} {% if transport.deliveryDate %} {% endif %} {% if transport.packageType %} {% endif %} {% if transport.image %} {% endif %} {% endfor %} {{ order.parentOrder.delivery.name }} {{ order.parentOrder.delivery.vatRate }} {% if order.parentOrder.delivery.id %} {{ order.parentOrder.delivery.id }} {% endif %} {% if order.parentOrder.delivery.freeLimit %} {% endif %} {% for catalogItem in order.parentOrder.catalogItems %} {{ catalogItem.amount }} {{ catalogItem.id }} {{ catalogItem.name }} {{ catalogItem.productName }} {{ catalogItem.trackingId }} {{ catalogItem.vatRate }} {% if catalogItem.amountChangeAllowed %} ... {% endif %} {% if catalogItem.catalogItem %} ... {% endif %} {% if catalogItem.deleteAllowed %} ... {% endif %} {% if catalogItem.discountItem %} ... {% endif %} {% if catalogItem.gift %} ... {% endif %} {% for availableUpsellGroup in catalogItem.availableUpsellGroups %} {% endfor %} {% for catalogItem in catalogItem.children %} {% 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 catalogItem in order.parentOrder.items %} {{ catalogItem.amount }} {{ catalogItem.id }} {{ catalogItem.name }} {{ catalogItem.productName }} {{ catalogItem.trackingId }} {{ catalogItem.vatRate }} {% if catalogItem.amountChangeAllowed %} ... {% endif %} {% if catalogItem.catalogItem %} ... {% endif %} {% if catalogItem.deleteAllowed %} ... {% endif %} {% if catalogItem.discountItem %} ... {% endif %} {% if catalogItem.gift %} ... {% endif %} {% for availableUpsellGroup in catalogItem.availableUpsellGroups %} {% endfor %} {% for catalogItem in catalogItem.children %} {% 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 discountItem in order.parentOrder.discountItems %} {{ discountItem.amount }} {{ discountItem.id }} {{ discountItem.name }} {{ discountItem.vatRate }} {% if discountItem.amountChangeAllowed %} ... {% endif %} {% if discountItem.catalogItem %} ... {% endif %} {% if discountItem.deleteAllowed %} ... {% endif %} {% if discountItem.discountItem %} ... {% endif %} {% for discountItem in discountItem.children %} {% endfor %} {% if discountItem.note %} {{ discountItem.note }} {% endif %} {% if discountItem.trackingId %} {{ discountItem.trackingId }} {% endif %} {% if discountItem.percent %} {{ discountItem.percent }} {% endif %} {% if discountItem.discountCode %} {% endif %} {% if discountItem.voucher %} {% endif %} {% if discountItem.price %} {% endif %} {% if discountItem.priceTotal %} {% endif %} {% if discountItem.unit %} {% endif %} {% endfor %} {{ order.parentOrder.status.id }} {{ order.parentOrder.status.name }} {% if order.parentOrder.status.subId %} {{ order.parentOrder.status.subId }} {% endif %} {% for socialProfile in order.parentOrder.shop.socialProfiles %} {% endfor %} {% if order.parentOrder.shop.email %} {{ order.parentOrder.shop.email }} {% endif %} {% if order.parentOrder.shop.language %} {{ order.parentOrder.shop.language }} {% endif %} {% if order.parentOrder.shop.name %} {{ order.parentOrder.shop.name }} {% endif %} {% if order.parentOrder.shop.phone %} {{ order.parentOrder.shop.phone }} {% endif %} {% if order.parentOrder.shop.url %} {{ order.parentOrder.shop.url }} {% endif %} {% if order.parentOrder.shop.country %} {% endif %} {% if order.parentOrder.shop.image %} {% endif %} {{ order.parentOrder.url }} {{ order.parentOrder.url.absolute }} {{ order.parentOrder.url.path }} {% for giftVoucher in order.parentOrder.purchasedGiftVouchers %} {{ giftVoucher.code }} {{ giftVoucher.name }} {{ giftVoucher.validFrom|date('d. m. Y H:i') }} {{ giftVoucher.validTo|date('d. m. Y H:i') }} {% endfor %} {% for giftVoucher in order.parentOrder.vouchers %} {{ giftVoucher.code }} {{ giftVoucher.name }} {{ giftVoucher.validFrom|date('d. m. Y H:i') }} {{ giftVoucher.validTo|date('d. m. Y H:i') }} {% endfor %} {% if order.parentOrder.code %} {{ order.parentOrder.code }} {% endif %} {% if order.parentOrder.note %} {{ order.parentOrder.note }} {% endif %} {% if order.parentOrder.date %} {{ order.parentOrder.date|date('d. m. Y H:i') }} {% endif %} {% if order.parentOrder.dateInStatus %} {{ order.parentOrder.dateInStatus|date('d. m. Y H:i') }} {% endif %} {% if order.parentOrder.customer %} {{ order.parentOrder.customer.id }} {{ order.parentOrder.customer.userPointsAvailable }} {{ order.parentOrder.customer.userPointsExpiringOn }} {{ order.parentOrder.customer.userPointsTotal }} {{ order.parentOrder.customer.name }} {{ order.parentOrder.customer.dateCreated|date('d. m. Y H:i') }} {% if order.parentOrder.customer.productOnWishlist %} ... {% endif %} {% if order.parentOrder.customer.wholesale %} ... {% endif %} {% for accountingDocument in order.parentOrder.customer.receipts %} {% endfor %} {% for analyticsReport in order.parentOrder.customer.analyticReports %} {% endfor %} {% for order in order.parentOrder.customer.childOrders %} {% endfor %} {% for userPointChange in order.parentOrder.customer.userPointChanges %} {% endfor %} {{ order.parentOrder.customer.alternativeAddresses }} {% if order.parentOrder.customer.loyaltyCard %} {{ order.parentOrder.customer.loyaltyCard }} {% endif %} {% endif %} {% if order.parentOrder.closestFreeDelivery %} {{ order.parentOrder.closestFreeDelivery.name }} {{ order.parentOrder.closestFreeDelivery.vatRate }} {% if order.parentOrder.closestFreeDelivery.id %} {{ order.parentOrder.closestFreeDelivery.id }} {% endif %} {% if order.parentOrder.closestFreeDelivery.freeLimit %} {% endif %} {% endif %} {% if order.parentOrder.package %} {{ order.parentOrder.package.trackingUrl }} {{ order.parentOrder.package.date|date('d. m. Y H:i') }} {% if order.parentOrder.package.code %} {{ order.parentOrder.package.code }} {% endif %} {% endif %} {% endif %} {% if order.package %} {{ order.package.trackingUrl }} {{ order.package.date|date('d. m. Y H:i') }} {% if order.package.status.delivered %} ... {% endif %} {% if order.package.status.deposited %} ... {% endif %} {% if order.package.status.inTransit %} ... {% endif %} {% if order.package.status.returned %} ... {% endif %} {% if order.package.code %} {{ order.package.code }} {% endif %} {% endif %} {% endfor %} {% for order in customer.childOrders %} {{ order.amountOfItem }} {{ order.catalogItemCount }} {{ order.catalogItemTotalAmount }} {{ order.id }} {{ order.loyaltyPoints }} {{ order.usableLoyaltyPoints }} {{ order.language }} {{ order.vs }} {% if order.containsItem %} ... {% 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.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 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 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.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.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.url %} {{ order.shop.url }} {% endif %} {% if order.shop.country %} {{ order.shop.country.code }} {{ order.shop.country.flagCircleUrl }} {{ order.shop.country.flagUrl }} {{ order.shop.country.name }} {% if order.shop.country.eU %} ... {% endif %} {% endif %} {% if order.shop.image %} {{ order.shop.image.originalHeight }} {{ order.shop.image.originalWidth }} {{ order.shop.image.url }} {% if order.shop.image.alt %} {{ order.shop.image.alt }} {% endif %} {% if order.shop.image.text %} {{ order.shop.image.text }} {% endif %} {% endif %} {{ order.url }} {{ order.url.absolute }} {{ order.url.path }} {% for giftVoucher in order.purchasedGiftVouchers %} {{ giftVoucher.code }} {{ giftVoucher.name }} {{ giftVoucher.validFrom|date('d. m. Y H:i') }} {{ giftVoucher.validTo|date('d. m. Y H:i') }} {{ giftVoucher.value.currency }} {{ giftVoucher.value.formatted }} {% endfor %} {% for giftVoucher in order.vouchers %} {{ giftVoucher.code }} {{ giftVoucher.name }} {{ giftVoucher.validFrom|date('d. m. Y H:i') }} {{ giftVoucher.validTo|date('d. m. Y H:i') }} {{ giftVoucher.value.currency }} {{ giftVoucher.value.formatted }} {% 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.orders %} {{ order.amountOfItem }} {{ order.catalogItemCount }} {{ order.catalogItemTotalAmount }} {{ order.id }} {{ order.loyaltyPoints }} {{ order.usableLoyaltyPoints }} {{ order.language }} {{ order.vs }} {% if order.containsItem %} ... {% endif %} {% if order.erotic %} ... {% endif %} {% if order.externalReviewAllowed %} ... {% endif %} {% if order.paid %} ... {% endif %} {% if order.useLoyaltyPoints %} ... {% endif %} {% if order.useLoyaltyPointsManually %} ... {% endif %} {% for accountingDocument in order.accountingDocuments %} {% endfor %} {% for payment in order.availablePaymentMethods %} {% endfor %} {% for payment in order.payments %} {% endfor %} {% for transport in order.availableTransportMethods %} {% endfor %} {% for catalogItem in order.catalogItems %} {% endfor %} {% for catalogItem in order.items %} {% endfor %} {% for discountItem in order.discountItems %} {% endfor %} {% for giftVoucher in order.purchasedGiftVouchers %} {% endfor %} {% for giftVoucher in order.vouchers %} {% endfor %} {% if order.code %} {{ order.code }} {% endif %} {% if order.note %} {{ order.note }} {% endif %} {% if order.date %} {{ order.date|date('d. m. Y H:i') }} {% endif %} {% if order.dateInStatus %} {{ order.dateInStatus|date('d. m. Y H:i') }} {% endif %} {% if order.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 %} {% 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.free %} ... {% endif %} {% if order.closestFreeDelivery.transport.pickup %} ... {% endif %} {% if order.closestFreeDelivery.transport.selected %} ... {% endif %} {% if order.closestFreeDelivery.transport.text %} {{ order.closestFreeDelivery.transport.text }} {% endif %} {% if order.closestFreeDelivery.transport.branch %} {% endif %} {% if order.closestFreeDelivery.transport.carrier %} {% endif %} {% if order.closestFreeDelivery.transport.deliveryDate %} {% endif %} {% if order.closestFreeDelivery.transport.packageType %} {% endif %} {% if order.closestFreeDelivery.transport.image %} {% endif %} {{ order.closestFreeDelivery.price.vatRate }} {% if order.closestFreeDelivery.price.discountPercent %} {{ order.closestFreeDelivery.price.discountPercent }} {% endif %} {% if order.closestFreeDelivery.price.discountValidTo %} {{ order.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if order.closestFreeDelivery.price.beforeDiscount %} {% endif %} {% if order.closestFreeDelivery.price.discount %} {% endif %} {% if order.closestFreeDelivery.id %} {{ order.closestFreeDelivery.id }} {% endif %} {% if order.closestFreeDelivery.freeLimit %} {{ order.closestFreeDelivery.freeLimit.percent }} {% endif %} {% endif %} {% if order.parentOrder %} {{ order.parentOrder.amountOfItem }} {{ order.parentOrder.catalogItemCount }} {{ order.parentOrder.catalogItemTotalAmount }} {{ order.parentOrder.id }} {{ order.parentOrder.loyaltyPoints }} {{ order.parentOrder.usableLoyaltyPoints }} {{ order.parentOrder.language }} {{ order.parentOrder.vs }} {% if order.parentOrder.containsItem %} ... {% endif %} {% if order.parentOrder.erotic %} ... {% endif %} {% if order.parentOrder.externalReviewAllowed %} ... {% endif %} {% if order.parentOrder.paid %} ... {% endif %} {% if order.parentOrder.useLoyaltyPoints %} ... {% endif %} {% if order.parentOrder.useLoyaltyPointsManually %} ... {% endif %} {% for accountingDocument in order.parentOrder.accountingDocuments %} {{ accountingDocument.code }} {{ accountingDocument.date|date('d. m. Y H:i') }} {% endfor %} {% for payment in order.parentOrder.availablePaymentMethods %} {{ payment.code }} {{ payment.inputId }} {{ payment.name }} {{ payment.url }} {{ payment.vatRate }} {% if payment.free %} ... {% endif %} {% if payment.inAdvance %} ... {% endif %} {% if payment.selected %} ... {% endif %} {% if payment.vs %} {{ payment.vs }} {% endif %} {% if payment.qRCodeHTML %} {{ payment.qRCodeHTML }} {% endif %} {% if payment.text %} {{ payment.text }} {% endif %} {% if payment.bankAccount %} {% endif %} {% if payment.image %} {% endif %} {% endfor %} {% for payment in order.parentOrder.payments %} {{ payment.code }} {{ payment.inputId }} {{ payment.name }} {{ payment.url }} {{ payment.vatRate }} {% if payment.free %} ... {% endif %} {% if payment.inAdvance %} ... {% endif %} {% if payment.selected %} ... {% endif %} {% if payment.vs %} {{ payment.vs }} {% endif %} {% if payment.qRCodeHTML %} {{ payment.qRCodeHTML }} {% endif %} {% if payment.text %} {{ payment.text }} {% endif %} {% if payment.bankAccount %} {% endif %} {% if payment.image %} {% endif %} {% endfor %} {% for transport in order.parentOrder.availableTransportMethods %} {{ transport.inputId }} {{ transport.name }} {{ transport.vatRate }} {% if transport.branchRequired %} ... {% endif %} {% if transport.currier %} ... {% endif %} {% if transport.dateGuaranteed %} ... {% endif %} {% if transport.deliveryAddressRequired %} ... {% endif %} {% if transport.deliveryToAddress %} ... {% endif %} {% if transport.free %} ... {% endif %} {% if transport.pickup %} ... {% endif %} {% if transport.selected %} ... {% endif %} {% if transport.text %} {{ transport.text }} {% endif %} {% if transport.branch %} {% endif %} {% if transport.carrier %} {% endif %} {% if transport.deliveryDate %} {% endif %} {% if transport.packageType %} {% endif %} {% if transport.image %} {% endif %} {% endfor %} {{ order.parentOrder.delivery.name }} {{ order.parentOrder.delivery.vatRate }} {% if order.parentOrder.delivery.id %} {{ order.parentOrder.delivery.id }} {% endif %} {% if order.parentOrder.delivery.freeLimit %} {% endif %} {% for catalogItem in order.parentOrder.catalogItems %} {{ catalogItem.amount }} {{ catalogItem.id }} {{ catalogItem.name }} {{ catalogItem.productName }} {{ catalogItem.trackingId }} {{ catalogItem.vatRate }} {% if catalogItem.amountChangeAllowed %} ... {% endif %} {% if catalogItem.catalogItem %} ... {% endif %} {% if catalogItem.deleteAllowed %} ... {% endif %} {% if catalogItem.discountItem %} ... {% endif %} {% if catalogItem.gift %} ... {% endif %} {% for availableUpsellGroup in catalogItem.availableUpsellGroups %} {% endfor %} {% for catalogItem in catalogItem.children %} {% 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 catalogItem in order.parentOrder.items %} {{ catalogItem.amount }} {{ catalogItem.id }} {{ catalogItem.name }} {{ catalogItem.productName }} {{ catalogItem.trackingId }} {{ catalogItem.vatRate }} {% if catalogItem.amountChangeAllowed %} ... {% endif %} {% if catalogItem.catalogItem %} ... {% endif %} {% if catalogItem.deleteAllowed %} ... {% endif %} {% if catalogItem.discountItem %} ... {% endif %} {% if catalogItem.gift %} ... {% endif %} {% for availableUpsellGroup in catalogItem.availableUpsellGroups %} {% endfor %} {% for catalogItem in catalogItem.children %} {% 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 discountItem in order.parentOrder.discountItems %} {{ discountItem.amount }} {{ discountItem.id }} {{ discountItem.name }} {{ discountItem.vatRate }} {% if discountItem.amountChangeAllowed %} ... {% endif %} {% if discountItem.catalogItem %} ... {% endif %} {% if discountItem.deleteAllowed %} ... {% endif %} {% if discountItem.discountItem %} ... {% endif %} {% for discountItem in discountItem.children %} {% endfor %} {% if discountItem.note %} {{ discountItem.note }} {% endif %} {% if discountItem.trackingId %} {{ discountItem.trackingId }} {% endif %} {% if discountItem.percent %} {{ discountItem.percent }} {% endif %} {% if discountItem.discountCode %} {% endif %} {% if discountItem.voucher %} {% endif %} {% if discountItem.price %} {% endif %} {% if discountItem.priceTotal %} {% endif %} {% if discountItem.unit %} {% endif %} {% endfor %} {{ order.parentOrder.status.id }} {{ order.parentOrder.status.name }} {% if order.parentOrder.status.subId %} {{ order.parentOrder.status.subId }} {% endif %} {% for socialProfile in order.parentOrder.shop.socialProfiles %} {% endfor %} {% if order.parentOrder.shop.email %} {{ order.parentOrder.shop.email }} {% endif %} {% if order.parentOrder.shop.language %} {{ order.parentOrder.shop.language }} {% endif %} {% if order.parentOrder.shop.name %} {{ order.parentOrder.shop.name }} {% endif %} {% if order.parentOrder.shop.phone %} {{ order.parentOrder.shop.phone }} {% endif %} {% if order.parentOrder.shop.url %} {{ order.parentOrder.shop.url }} {% endif %} {% if order.parentOrder.shop.country %} {% endif %} {% if order.parentOrder.shop.image %} {% endif %} {{ order.parentOrder.url }} {{ order.parentOrder.url.absolute }} {{ order.parentOrder.url.path }} {% for giftVoucher in order.parentOrder.purchasedGiftVouchers %} {{ giftVoucher.code }} {{ giftVoucher.name }} {{ giftVoucher.validFrom|date('d. m. Y H:i') }} {{ giftVoucher.validTo|date('d. m. Y H:i') }} {% endfor %} {% for giftVoucher in order.parentOrder.vouchers %} {{ giftVoucher.code }} {{ giftVoucher.name }} {{ giftVoucher.validFrom|date('d. m. Y H:i') }} {{ giftVoucher.validTo|date('d. m. Y H:i') }} {% endfor %} {% if order.parentOrder.code %} {{ order.parentOrder.code }} {% endif %} {% if order.parentOrder.note %} {{ order.parentOrder.note }} {% endif %} {% if order.parentOrder.date %} {{ order.parentOrder.date|date('d. m. Y H:i') }} {% endif %} {% if order.parentOrder.dateInStatus %} {{ order.parentOrder.dateInStatus|date('d. m. Y H:i') }} {% endif %} {% if order.parentOrder.customer %} {{ order.parentOrder.customer.id }} {{ order.parentOrder.customer.userPointsAvailable }} {{ order.parentOrder.customer.userPointsExpiringOn }} {{ order.parentOrder.customer.userPointsTotal }} {{ order.parentOrder.customer.name }} {{ order.parentOrder.customer.dateCreated|date('d. m. Y H:i') }} {% if order.parentOrder.customer.productOnWishlist %} ... {% endif %} {% if order.parentOrder.customer.wholesale %} ... {% endif %} {% for accountingDocument in order.parentOrder.customer.receipts %} {% endfor %} {% for analyticsReport in order.parentOrder.customer.analyticReports %} {% endfor %} {% for order in order.parentOrder.customer.orders %} {% endfor %} {% for userPointChange in order.parentOrder.customer.userPointChanges %} {% endfor %} {{ order.parentOrder.customer.alternativeAddresses }} {% if order.parentOrder.customer.loyaltyCard %} {{ order.parentOrder.customer.loyaltyCard }} {% endif %} {% endif %} {% if order.parentOrder.closestFreeDelivery %} {{ order.parentOrder.closestFreeDelivery.name }} {{ order.parentOrder.closestFreeDelivery.vatRate }} {% if order.parentOrder.closestFreeDelivery.id %} {{ order.parentOrder.closestFreeDelivery.id }} {% endif %} {% if order.parentOrder.closestFreeDelivery.freeLimit %} {% endif %} {% endif %} {% if order.parentOrder.package %} {{ order.parentOrder.package.trackingUrl }} {{ order.parentOrder.package.date|date('d. m. Y H:i') }} {% if order.parentOrder.package.code %} {{ order.parentOrder.package.code }} {% endif %} {% endif %} {% endif %} {% if order.package %} {{ order.package.trackingUrl }} {{ order.package.date|date('d. m. Y H:i') }} {% if order.package.status.delivered %} ... {% endif %} {% if order.package.status.deposited %} ... {% endif %} {% if order.package.status.inTransit %} ... {% endif %} {% if order.package.status.returned %} ... {% endif %} {% if order.package.code %} {{ order.package.code }} {% endif %} {% endif %} {% endfor %} {% for userPointChange in customer.userPointChanges %} {{ userPointChange.amount }} {{ userPointChange.text }} {{ userPointChange.date|date('d. m. Y H:i') }} {% if userPointChange.dateExpire %} {{ userPointChange.dateExpire|date('d. m. Y H:i') }} {% endif %} {% endfor %} {{ customer.alternativeAddresses }} {% if customer.loyaltyCard %} {{ customer.loyaltyCard }} {% endif %} .. _class-dayblock: ======== DayBlock ======== .. csv-table:: Attributy objektu **DayBlock** :header: "Název", Typ, "Popis" "dayName", "string", "Název dne v týdnu" "dayNameShort", "string", "Zkrácený název dne v týdnu" "date", "datetime", "Datum" "timeBlocks", "`TimeBlock`_\[\] | null", "Časy otevření" Příklady: .. code-block:: html+twig {{ dayblock.dayName }} {{ dayblock.dayNameShort }} {{ dayblock.date|date('d. m. Y H:i') }} {% for timeBlock in dayblock.timeBlocks %} {{ timeBlock.timeBlocks }} {{ timeBlock.end }} {{ timeBlock.separator }} {{ timeBlock.start }} {% endfor %} .. _class-delivery: ======== Delivery ======== .. csv-table:: Attributy objektu **Delivery** :header: "Název", Typ, "Popis" "name", "string", "Název" "vatRate", "float", "Sazba DPH" "payment", "`Delivery/Payment`_", "Způsob platby" "transport", "`Delivery/Transport`_", "Způsob dodání" "price", "`Price`_", "Cena" "id", "int | null", "ID" "freeLimit", "`Order/FreeLimit`_ | null", "Hranice dodání zdarma" Příklady: .. code-block:: html+twig {{ delivery.name }} {{ delivery.vatRate }} {{ delivery.payment.code }} {{ delivery.payment.inputId }} {{ delivery.payment.name }} {{ delivery.payment.url }} {{ delivery.payment.vatRate }} {% if delivery.payment.free %} ... {% endif %} {% if delivery.payment.inAdvance %} ... {% endif %} {% if delivery.payment.selected %} ... {% endif %} {{ delivery.payment.price.vatRate }} {{ delivery.payment.price.current.currency }} {{ delivery.payment.price.current.formatted }} {{ delivery.payment.price.current.value }} {% if delivery.payment.price.discountPercent %} {{ delivery.payment.price.discountPercent }} {% endif %} {% if delivery.payment.price.discountValidTo %} {{ delivery.payment.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if delivery.payment.price.beforeDiscount %} {{ delivery.payment.price.beforeDiscount.currency }} {{ delivery.payment.price.beforeDiscount.formatted }} {{ delivery.payment.price.beforeDiscount.value }} {% endif %} {% if delivery.payment.price.discount %} {{ delivery.payment.price.discount.currency }} {{ delivery.payment.price.discount.formatted }} {{ delivery.payment.price.discount.value }} {% endif %} {% if delivery.payment.vs %} {{ delivery.payment.vs }} {% endif %} {% if delivery.payment.qRCodeHTML %} {{ delivery.payment.qRCodeHTML }} {% endif %} {% if delivery.payment.text %} {{ delivery.payment.text }} {% endif %} {% if delivery.payment.bankAccount %} {{ delivery.payment.bankAccount }} {{ delivery.payment.bankAccount.currency }} {% if delivery.payment.bankAccount.bic %} {{ delivery.payment.bankAccount.bic }} {% endif %} {% if delivery.payment.bankAccount.iban %} {{ delivery.payment.bankAccount.iban }} {% endif %} {% if delivery.payment.bankAccount.local %} {{ delivery.payment.bankAccount.local }} {% endif %} {% endif %} {% if delivery.payment.image %} {{ delivery.payment.image.originalHeight }} {{ delivery.payment.image.originalWidth }} {{ delivery.payment.image.url }} {% if delivery.payment.image.alt %} {{ delivery.payment.image.alt }} {% endif %} {% if delivery.payment.image.text %} {{ delivery.payment.image.text }} {% endif %} {% endif %} {{ delivery.transport.inputId }} {{ delivery.transport.name }} {{ delivery.transport.vatRate }} {% if delivery.transport.branchRequired %} ... {% endif %} {% if delivery.transport.currier %} ... {% endif %} {% if delivery.transport.dateGuaranteed %} ... {% endif %} {% if delivery.transport.deliveryAddressRequired %} ... {% endif %} {% if delivery.transport.deliveryToAddress %} ... {% endif %} {% if delivery.transport.free %} ... {% endif %} {% if delivery.transport.pickup %} ... {% endif %} {% if delivery.transport.selected %} ... {% endif %} {{ delivery.transport.price.vatRate }} {{ delivery.transport.price.current.currency }} {{ delivery.transport.price.current.formatted }} {{ delivery.transport.price.current.value }} {% if delivery.transport.price.discountPercent %} {{ delivery.transport.price.discountPercent }} {% endif %} {% if delivery.transport.price.discountValidTo %} {{ delivery.transport.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if delivery.transport.price.beforeDiscount %} {{ delivery.transport.price.beforeDiscount.currency }} {{ delivery.transport.price.beforeDiscount.formatted }} {{ delivery.transport.price.beforeDiscount.value }} {% endif %} {% if delivery.transport.price.discount %} {{ delivery.transport.price.discount.currency }} {{ delivery.transport.price.discount.formatted }} {{ delivery.transport.price.discount.value }} {% endif %} {% if delivery.transport.text %} {{ delivery.transport.text }} {% endif %} {% if delivery.transport.branch %} {{ delivery.transport.branch.code }} {{ delivery.transport.branch.name }} {{ delivery.transport.branch.address }} {% if delivery.transport.branch.address.city %} {{ delivery.transport.branch.address.city }} {% endif %} {% if delivery.transport.branch.address.company %} {{ delivery.transport.branch.address.company }} {% endif %} {% if delivery.transport.branch.address.street %} {{ delivery.transport.branch.address.street }} {% endif %} {% if delivery.transport.branch.address.country %} {% endif %} {% endif %} {% if delivery.transport.carrier %} {{ delivery.transport.carrier.code }} {{ delivery.transport.carrier.name }} {% endif %} {% if delivery.transport.deliveryDate %} {{ delivery.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }} {{ delivery.transport.deliveryDate.dateSent|date('d. m. Y H:i') }} {{ delivery.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }} {% if delivery.transport.deliveryDate.timeDelivered %} {{ delivery.transport.deliveryDate.timeDelivered }} {% endif %} {% endif %} {% if delivery.transport.packageType %} {{ delivery.transport.packageType.code }} {% endif %} {% if delivery.transport.image %} {{ delivery.transport.image.originalHeight }} {{ delivery.transport.image.originalWidth }} {{ delivery.transport.image.url }} {% if delivery.transport.image.alt %} {{ delivery.transport.image.alt }} {% endif %} {% if delivery.transport.image.text %} {{ delivery.transport.image.text }} {% endif %} {% endif %} {{ delivery.price.vatRate }} {{ delivery.price.current.currency }} {{ delivery.price.current.formatted }} {{ delivery.price.current.value }} {% if delivery.price.discountPercent %} {{ delivery.price.discountPercent }} {% endif %} {% if delivery.price.discountValidTo %} {{ delivery.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if delivery.price.beforeDiscount %} {{ delivery.price.beforeDiscount.currency }} {{ delivery.price.beforeDiscount.formatted }} {{ delivery.price.beforeDiscount.value }} {% endif %} {% if delivery.price.discount %} {{ delivery.price.discount.currency }} {{ delivery.price.discount.formatted }} {{ delivery.price.discount.value }} {% endif %} {% if delivery.id %} {{ delivery.id }} {% endif %} {% if delivery.freeLimit %} {{ delivery.freeLimit.percent }} {{ delivery.freeLimit.total.currency }} {{ delivery.freeLimit.total.formatted }} {{ delivery.freeLimit.total.value }} {{ delivery.freeLimit.remains.currency }} {{ delivery.freeLimit.remains.formatted }} {{ delivery.freeLimit.remains.value }} {% endif %} .. _class-delivery-bankaccount: ==================== Delivery/BankAccount ==================== .. csv-table:: Attributy objektu **Delivery/BankAccount** :header: "Název", Typ, "Popis", "Příklad výstupu" "currency", "string", "Měna", "" "bic", "string | null", "BIC", "" "iban", "string | null", "IBAN", "" "local", "string | null", "Místní formát", "*123456789/2010*" Příklady: .. code-block:: html+twig {{ bankaccount }} {{ bankaccount.currency }} {% if bankaccount.bic %} {{ bankaccount.bic }} {% endif %} {% if bankaccount.iban %} {{ bankaccount.iban }} {% endif %} {% if bankaccount.local %} {{ bankaccount.local }} {% endif %} .. _class-delivery-branch: =============== Delivery/Branch =============== .. csv-table:: Attributy objektu **Delivery/Branch** :header: "Název", Typ, "Popis" "code", "string", "Kód" "name", "string", "Název" "address", "`Delivery/Branch/Address`_", "Adresa" Příklady: .. code-block:: html+twig {{ branch.code }} {{ branch.name }} {{ branch.address }} {% if branch.address.city %} {{ branch.address.city }} {% endif %} {% if branch.address.company %} {{ branch.address.company }} {% endif %} {% if branch.address.street %} {{ branch.address.street }} {% endif %} {% if branch.address.country %} {{ branch.address.country.code }} {{ branch.address.country.flagCircleUrl }} {{ branch.address.country.flagUrl }} {{ branch.address.country.name }} {% if branch.address.country.eU %} ... {% endif %} {% endif %} .. _class-delivery-branch-address: ======================= Delivery/Branch/Address ======================= .. csv-table:: Attributy objektu **Delivery/Branch/Address** :header: "Název", Typ, "Popis" "city", "string | null", "Město" "company", "string | null", "Název firmy" "street", "string | null", "Ulice a č.p." "country", "`Address/Country`_ | null", "Země" Příklady: .. code-block:: html+twig {{ address }} {% if address.city %} {{ address.city }} {% endif %} {% if address.company %} {{ address.company }} {% endif %} {% if address.street %} {{ address.street }} {% endif %} {% if address.country %} {{ address.country.code }} {{ address.country.flagCircleUrl }} {{ address.country.flagUrl }} {{ address.country.name }} {% if address.country.eU %} ... {% endif %} {% endif %} .. _class-delivery-carrier: ================ Delivery/Carrier ================ .. csv-table:: Attributy objektu **Delivery/Carrier** :header: "Název", Typ, "Popis" "code", "string", "Kód" "name", "string", "Název" Příklady: .. code-block:: html+twig {{ carrier.code }} {{ carrier.name }} .. _class-delivery-deliverydate: ===================== Delivery/DeliveryDate ===================== .. csv-table:: Attributy objektu **Delivery/DeliveryDate** :header: "Název", Typ, "Popis" "dateDelivered", "datetime", "Datum dodání k zákazníkovi" "dateSent", "datetime", "Datum odeslání zásilky" "orderDeadline", "datetime", "Datum a čas do kdy je nutné objednat pro splnění termínů" "timeDelivered", "string | null", "Čas doručení zákazníkovi (např. ""08:00-12:00"")" Příklady: .. code-block:: html+twig {{ deliverydate.dateDelivered|date('d. m. Y H:i') }} {{ deliverydate.dateSent|date('d. m. Y H:i') }} {{ deliverydate.orderDeadline|date('d. m. Y H:i') }} {% if deliverydate.timeDelivered %} {{ deliverydate.timeDelivered }} {% endif %} .. _class-delivery-packagetype: ==================== Delivery/PackageType ==================== .. csv-table:: Attributy objektu **Delivery/PackageType** :header: "Název", Typ, "Popis" "code", "string", "Kód" Příklady: .. code-block:: html+twig {{ packagetype.code }} .. _class-delivery-payment: ================ Delivery/Payment ================ .. csv-table:: Attributy objektu **Delivery/Payment** :header: "Název", Typ, "Popis", "Příklad výstupu" "code", "string", "Kód", "*P123*" "inputId", "string", "Id pro svázání inputu s label", "" "name", "string", "Název", "*Bankovní převod*" "url", "string", "URL pro platbu", "" "vatRate", "float", "Sazba DPH", "*21*" "free", "bool", "Je zdarma?", "" "inAdvance", "bool", "Je vyžadována platba předem?", "" "selected", "bool", "Je vybrána?", "" "price", "`Price`_", "Cena", "" "vs", "string | null", "Variabilní symbol", "*2160001*" "qRCodeHTML", "html | null", "HTML kód obrázku s QR kódem pro platbu převodem", "" "text", "html | null", "Text", "" "bankAccount", "`Delivery/BankAccount`_ | null", "Bankovní účet", "*111111111/2010*" "image", "`Image`_ | null", "Obrázek", "" Příklady: .. code-block:: html+twig {{ 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 }} {{ payment.price.current.currency }} {{ payment.price.current.formatted }} {{ payment.price.current.value }} {% if payment.price.discountPercent %} {{ payment.price.discountPercent }} {% endif %} {% if payment.price.discountValidTo %} {{ payment.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if payment.price.beforeDiscount %} {{ payment.price.beforeDiscount.currency }} {{ payment.price.beforeDiscount.formatted }} {{ payment.price.beforeDiscount.value }} {% endif %} {% if payment.price.discount %} {{ payment.price.discount.currency }} {{ payment.price.discount.formatted }} {{ payment.price.discount.value }} {% 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 %} .. _class-delivery-transport: ================== Delivery/Transport ================== .. csv-table:: Attributy objektu **Delivery/Transport** :header: "Název", Typ, "Popis" "inputId", "string", "Id pro svázání inputu s label" "name", "string", "Název" "vatRate", "float", "Sazba DPH" "branchRequired", "bool", "Je vyžadování pobočka?" "currier", "bool", "Je osobním kurýrem?" "dateGuaranteed", "bool", "Je datum doručení jisté?" "deliveryAddressRequired", "bool", "Je v košíku povinná adresa?" "deliveryToAddress", "bool", "Je doprava doručením na (domovní) adresu?" "free", "bool", "Je zdarma?" "pickup", "bool", "Je osobním odběrem?" "selected", "bool", "Je vybráno?" "price", "`Price`_", "Cena" "text", "html | null", "Text" "branch", "`Delivery/Branch`_ | null", "Pobočka" "carrier", "`Delivery/Carrier`_ | null", "Přepravce" "deliveryDate", "`Delivery/DeliveryDate`_ | null", "Předpokládaný datum doručení" "packageType", "`Delivery/PackageType`_ | null", "Typ balíku" "image", "`Image`_ | null", "Obrázek" Příklady: .. code-block:: html+twig {{ 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.free %} ... {% endif %} {% if transport.pickup %} ... {% endif %} {% if transport.selected %} ... {% endif %} {{ transport.price.vatRate }} {{ transport.price.current.currency }} {{ transport.price.current.formatted }} {{ transport.price.current.value }} {% if transport.price.discountPercent %} {{ transport.price.discountPercent }} {% endif %} {% if transport.price.discountValidTo %} {{ transport.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if transport.price.beforeDiscount %} {{ transport.price.beforeDiscount.currency }} {{ transport.price.beforeDiscount.formatted }} {{ transport.price.beforeDiscount.value }} {% endif %} {% if transport.price.discount %} {{ transport.price.discount.currency }} {{ transport.price.discount.formatted }} {{ transport.price.discount.value }} {% endif %} {% if transport.text %} {{ transport.text }} {% endif %} {% if transport.branch %} {{ transport.branch.code }} {{ transport.branch.name }} {{ transport.branch.address }} {% if transport.branch.address.city %} {{ transport.branch.address.city }} {% endif %} {% if transport.branch.address.company %} {{ transport.branch.address.company }} {% endif %} {% if transport.branch.address.street %} {{ transport.branch.address.street }} {% endif %} {% if transport.branch.address.country %} {{ transport.branch.address.country.code }} {{ transport.branch.address.country.flagCircleUrl }} {{ transport.branch.address.country.flagUrl }} {{ transport.branch.address.country.name }} {% if transport.branch.address.country.eU %} ... {% endif %} {% endif %} {% endif %} {% if transport.carrier %} {{ transport.carrier.code }} {{ transport.carrier.name }} {% endif %} {% if transport.deliveryDate %} {{ transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }} {{ transport.deliveryDate.dateSent|date('d. m. Y H:i') }} {{ transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }} {% if transport.deliveryDate.timeDelivered %} {{ transport.deliveryDate.timeDelivered }} {% endif %} {% endif %} {% if transport.packageType %} {{ transport.packageType.code }} {% endif %} {% if transport.image %} {{ transport.image.originalHeight }} {{ transport.image.originalWidth }} {{ transport.image.url }} {% if transport.image.alt %} {{ transport.image.alt }} {% endif %} {% if transport.image.text %} {{ transport.image.text }} {% endif %} {% endif %} .. _class-deliveryoption: ============== DeliveryOption ============== .. csv-table:: Attributy objektu **DeliveryOption** :header: "Název", Typ, "Popis" "dateDelivered", "datetime", "Datum dodání k zákazníkovi" "dateSent", "datetime", "Datum odeslání zásilky" "orderDeadline", "datetime", "Datum a čas do kdy je nutné objednat pro splnění termínů" "transport", "`Delivery/Transport`_", "Přepravce" "timeDelivered", "string | null", "Čas doručení zákazníkovi (např. ""08:00-12:00"")" Příklady: .. code-block:: html+twig {{ 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.free %} ... {% endif %} {% if deliveryoption.transport.pickup %} ... {% endif %} {% if deliveryoption.transport.selected %} ... {% endif %} {{ deliveryoption.transport.price.vatRate }} {{ deliveryoption.transport.price.current.currency }} {{ deliveryoption.transport.price.current.formatted }} {{ deliveryoption.transport.price.current.value }} {% if deliveryoption.transport.price.discountPercent %} {{ deliveryoption.transport.price.discountPercent }} {% endif %} {% if deliveryoption.transport.price.discountValidTo %} {{ deliveryoption.transport.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if deliveryoption.transport.price.beforeDiscount %} {{ deliveryoption.transport.price.beforeDiscount.currency }} {{ deliveryoption.transport.price.beforeDiscount.formatted }} {{ deliveryoption.transport.price.beforeDiscount.value }} {% endif %} {% if deliveryoption.transport.price.discount %} {{ deliveryoption.transport.price.discount.currency }} {{ deliveryoption.transport.price.discount.formatted }} {{ deliveryoption.transport.price.discount.value }} {% endif %} {% if deliveryoption.transport.text %} {{ deliveryoption.transport.text }} {% endif %} {% if deliveryoption.transport.branch %} {{ deliveryoption.transport.branch.code }} {{ deliveryoption.transport.branch.name }} {{ deliveryoption.transport.branch.address }} {% if deliveryoption.transport.branch.address.city %} {{ deliveryoption.transport.branch.address.city }} {% endif %} {% if deliveryoption.transport.branch.address.company %} {{ deliveryoption.transport.branch.address.company }} {% endif %} {% if deliveryoption.transport.branch.address.street %} {{ deliveryoption.transport.branch.address.street }} {% endif %} {% if deliveryoption.transport.branch.address.country %} {% endif %} {% endif %} {% if deliveryoption.transport.carrier %} {{ deliveryoption.transport.carrier.code }} {{ deliveryoption.transport.carrier.name }} {% endif %} {% if deliveryoption.transport.deliveryDate %} {{ deliveryoption.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }} {{ deliveryoption.transport.deliveryDate.dateSent|date('d. m. Y H:i') }} {{ deliveryoption.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }} {% if deliveryoption.transport.deliveryDate.timeDelivered %} {{ deliveryoption.transport.deliveryDate.timeDelivered }} {% endif %} {% endif %} {% if deliveryoption.transport.packageType %} {{ deliveryoption.transport.packageType.code }} {% endif %} {% if deliveryoption.transport.image %} {{ deliveryoption.transport.image.originalHeight }} {{ deliveryoption.transport.image.originalWidth }} {{ deliveryoption.transport.image.url }} {% if deliveryoption.transport.image.alt %} {{ deliveryoption.transport.image.alt }} {% endif %} {% if deliveryoption.transport.image.text %} {{ deliveryoption.transport.image.text }} {% endif %} {% endif %} {% if deliveryoption.timeDelivered %} {{ deliveryoption.timeDelivered }} {% endif %} .. _class-dimensions: ========== Dimensions ========== .. csv-table:: Attributy objektu **Dimensions** :header: "Název", Typ, "Popis" "height", "int", "Výška" "length", "int", "Hloubka" "width", "int", "Šířka" "unit", "string", "Jendotka" Příklady: .. code-block:: html+twig {{ dimensions }} {{ dimensions.height }} {{ dimensions.length }} {{ dimensions.width }} {{ dimensions.unit }} .. _class-dynamiccategory: =============== DynamicCategory =============== .. csv-table:: Attributy objektu **DynamicCategory** :header: "Název", Typ, "Popis" "id", "int", "Id" "name", "string", "Název" "dynamic", "bool", "Dynamická kategorie? (vždy true))" "url", "`Url`_", "URL značky" "text", "html | null", "Text" "image", "`Image`_ | null", "Obrázek" "seo", "`Seo`_ | null", "SEO attributy" Příklady: .. code-block:: html+twig {{ dynamiccategory.id }} {{ dynamiccategory.name }} {% if dynamiccategory.dynamic %} ... {% endif %} {{ dynamiccategory.url }} {{ dynamiccategory.url.absolute }} {{ dynamiccategory.url.path }} {% if dynamiccategory.text %} {{ dynamiccategory.text }} {% endif %} {% if dynamiccategory.image %} {{ dynamiccategory.image.originalHeight }} {{ dynamiccategory.image.originalWidth }} {{ dynamiccategory.image.url }} {% if dynamiccategory.image.alt %} {{ dynamiccategory.image.alt }} {% endif %} {% if dynamiccategory.image.text %} {{ dynamiccategory.image.text }} {% endif %} {% endif %} {% if dynamiccategory.seo %} {% if dynamiccategory.seo.description %} {{ dynamiccategory.seo.description }} {% endif %} {% if dynamiccategory.seo.keywords %} {{ dynamiccategory.seo.keywords }} {% endif %} {% if dynamiccategory.seo.title %} {{ dynamiccategory.seo.title }} {% endif %} {% endif %} .. _class-emptyorder: ========== EmptyOrder ========== .. csv-table:: Attributy objektu **EmptyOrder** :header: "Název", Typ, "Popis" "catalogItemTotalAmount", "int", "Celkový počet kusů v objednávce" "price", "`Order/Price`_", "Celkové ceny" "closestFreeDelivery", "`Delivery`_ | null", "Nejbližší dostupná doprava zdarma" Příklady: .. code-block:: html+twig {{ emptyorder.catalogItemTotalAmount }} {{ emptyorder.price.total.currency }} {{ emptyorder.price.total.formatted }} {{ emptyorder.price.total.value }} {{ emptyorder.price.unpaid.currency }} {{ emptyorder.price.unpaid.formatted }} {{ emptyorder.price.unpaid.value }} {{ emptyorder.price.paid.currency }} {{ emptyorder.price.paid.formatted }} {{ emptyorder.price.paid.value }} {% if emptyorder.closestFreeDelivery %} {{ emptyorder.closestFreeDelivery.name }} {{ emptyorder.closestFreeDelivery.vatRate }} {{ emptyorder.closestFreeDelivery.payment.code }} {{ emptyorder.closestFreeDelivery.payment.inputId }} {{ emptyorder.closestFreeDelivery.payment.name }} {{ emptyorder.closestFreeDelivery.payment.url }} {{ emptyorder.closestFreeDelivery.payment.vatRate }} {% if emptyorder.closestFreeDelivery.payment.free %} ... {% endif %} {% if emptyorder.closestFreeDelivery.payment.inAdvance %} ... {% endif %} {% if emptyorder.closestFreeDelivery.payment.selected %} ... {% endif %} {{ emptyorder.closestFreeDelivery.payment.price.vatRate }} {% if emptyorder.closestFreeDelivery.payment.price.discountPercent %} {{ emptyorder.closestFreeDelivery.payment.price.discountPercent }} {% endif %} {% if emptyorder.closestFreeDelivery.payment.price.discountValidTo %} {{ emptyorder.closestFreeDelivery.payment.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if emptyorder.closestFreeDelivery.payment.price.beforeDiscount %} {% endif %} {% if emptyorder.closestFreeDelivery.payment.price.discount %} {% endif %} {% if emptyorder.closestFreeDelivery.payment.vs %} {{ emptyorder.closestFreeDelivery.payment.vs }} {% endif %} {% if emptyorder.closestFreeDelivery.payment.qRCodeHTML %} {{ emptyorder.closestFreeDelivery.payment.qRCodeHTML }} {% endif %} {% if emptyorder.closestFreeDelivery.payment.text %} {{ emptyorder.closestFreeDelivery.payment.text }} {% endif %} {% if emptyorder.closestFreeDelivery.payment.bankAccount %} {{ emptyorder.closestFreeDelivery.payment.bankAccount }} {{ emptyorder.closestFreeDelivery.payment.bankAccount.currency }} {% if emptyorder.closestFreeDelivery.payment.bankAccount.bic %} {{ emptyorder.closestFreeDelivery.payment.bankAccount.bic }} {% endif %} {% if emptyorder.closestFreeDelivery.payment.bankAccount.iban %} {{ emptyorder.closestFreeDelivery.payment.bankAccount.iban }} {% endif %} {% if emptyorder.closestFreeDelivery.payment.bankAccount.local %} {{ emptyorder.closestFreeDelivery.payment.bankAccount.local }} {% endif %} {% endif %} {% if emptyorder.closestFreeDelivery.payment.image %} {{ emptyorder.closestFreeDelivery.payment.image.originalHeight }} {{ emptyorder.closestFreeDelivery.payment.image.originalWidth }} {{ emptyorder.closestFreeDelivery.payment.image.url }} {% if emptyorder.closestFreeDelivery.payment.image.alt %} {{ emptyorder.closestFreeDelivery.payment.image.alt }} {% endif %} {% if emptyorder.closestFreeDelivery.payment.image.text %} {{ emptyorder.closestFreeDelivery.payment.image.text }} {% endif %} {% endif %} {{ emptyorder.closestFreeDelivery.transport.inputId }} {{ emptyorder.closestFreeDelivery.transport.name }} {{ emptyorder.closestFreeDelivery.transport.vatRate }} {% if emptyorder.closestFreeDelivery.transport.branchRequired %} ... {% endif %} {% if emptyorder.closestFreeDelivery.transport.currier %} ... {% endif %} {% if emptyorder.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %} {% if emptyorder.closestFreeDelivery.transport.deliveryAddressRequired %} ... {% endif %} {% if emptyorder.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %} {% if emptyorder.closestFreeDelivery.transport.free %} ... {% endif %} {% if emptyorder.closestFreeDelivery.transport.pickup %} ... {% endif %} {% if emptyorder.closestFreeDelivery.transport.selected %} ... {% endif %} {{ emptyorder.closestFreeDelivery.transport.price.vatRate }} {% if emptyorder.closestFreeDelivery.transport.price.discountPercent %} {{ emptyorder.closestFreeDelivery.transport.price.discountPercent }} {% endif %} {% if emptyorder.closestFreeDelivery.transport.price.discountValidTo %} {{ emptyorder.closestFreeDelivery.transport.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if emptyorder.closestFreeDelivery.transport.price.beforeDiscount %} {% endif %} {% if emptyorder.closestFreeDelivery.transport.price.discount %} {% endif %} {% if emptyorder.closestFreeDelivery.transport.text %} {{ emptyorder.closestFreeDelivery.transport.text }} {% endif %} {% if emptyorder.closestFreeDelivery.transport.branch %} {{ emptyorder.closestFreeDelivery.transport.branch.code }} {{ emptyorder.closestFreeDelivery.transport.branch.name }} {% endif %} {% if emptyorder.closestFreeDelivery.transport.carrier %} {{ emptyorder.closestFreeDelivery.transport.carrier.code }} {{ emptyorder.closestFreeDelivery.transport.carrier.name }} {% endif %} {% if emptyorder.closestFreeDelivery.transport.deliveryDate %} {{ emptyorder.closestFreeDelivery.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }} {{ emptyorder.closestFreeDelivery.transport.deliveryDate.dateSent|date('d. m. Y H:i') }} {{ emptyorder.closestFreeDelivery.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }} {% if emptyorder.closestFreeDelivery.transport.deliveryDate.timeDelivered %} {{ emptyorder.closestFreeDelivery.transport.deliveryDate.timeDelivered }} {% endif %} {% endif %} {% if emptyorder.closestFreeDelivery.transport.packageType %} {{ emptyorder.closestFreeDelivery.transport.packageType.code }} {% endif %} {% if emptyorder.closestFreeDelivery.transport.image %} {{ emptyorder.closestFreeDelivery.transport.image.originalHeight }} {{ emptyorder.closestFreeDelivery.transport.image.originalWidth }} {{ emptyorder.closestFreeDelivery.transport.image.url }} {% if emptyorder.closestFreeDelivery.transport.image.alt %} {{ emptyorder.closestFreeDelivery.transport.image.alt }} {% endif %} {% if emptyorder.closestFreeDelivery.transport.image.text %} {{ emptyorder.closestFreeDelivery.transport.image.text }} {% endif %} {% endif %} {{ emptyorder.closestFreeDelivery.price.vatRate }} {{ emptyorder.closestFreeDelivery.price.current.currency }} {{ emptyorder.closestFreeDelivery.price.current.formatted }} {{ emptyorder.closestFreeDelivery.price.current.value }} {% if emptyorder.closestFreeDelivery.price.discountPercent %} {{ emptyorder.closestFreeDelivery.price.discountPercent }} {% endif %} {% if emptyorder.closestFreeDelivery.price.discountValidTo %} {{ emptyorder.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if emptyorder.closestFreeDelivery.price.beforeDiscount %} {{ emptyorder.closestFreeDelivery.price.beforeDiscount.currency }} {{ emptyorder.closestFreeDelivery.price.beforeDiscount.formatted }} {{ emptyorder.closestFreeDelivery.price.beforeDiscount.value }} {% endif %} {% if emptyorder.closestFreeDelivery.price.discount %} {{ emptyorder.closestFreeDelivery.price.discount.currency }} {{ emptyorder.closestFreeDelivery.price.discount.formatted }} {{ emptyorder.closestFreeDelivery.price.discount.value }} {% endif %} {% if emptyorder.closestFreeDelivery.id %} {{ emptyorder.closestFreeDelivery.id }} {% endif %} {% if emptyorder.closestFreeDelivery.freeLimit %} {{ emptyorder.closestFreeDelivery.freeLimit.percent }} {{ emptyorder.closestFreeDelivery.freeLimit.total.currency }} {{ emptyorder.closestFreeDelivery.freeLimit.total.formatted }} {{ emptyorder.closestFreeDelivery.freeLimit.total.value }} {{ emptyorder.closestFreeDelivery.freeLimit.remains.currency }} {{ emptyorder.closestFreeDelivery.freeLimit.remains.formatted }} {{ emptyorder.closestFreeDelivery.freeLimit.remains.value }} {% endif %} {% endif %} .. _class-enumvalue: ========= EnumValue ========= Hodnota číselníku .. csv-table:: Attributy objektu **EnumValue** :header: "Název", Typ, "Popis" "id", "int", "Id" "name", "string", "Název" "enum", "`ProductEnum`_", "Číselník" "text", "html | null", "Text" "image", "`Image`_ | null", "Obrázek" Příklady: .. code-block:: html+twig {{ enumvalue.id }} {{ enumvalue.name }} {{ enumvalue.enum.id }} {{ enumvalue.enum.name }} {% for enumValue in enumvalue.enum.values %} {{ enumValue.id }} {{ enumValue.name }} {% if enumValue.text %} {{ enumValue.text }} {% endif %} {% if enumValue.image %} {{ enumValue.image.originalHeight }} {{ enumValue.image.originalWidth }} {{ enumValue.image.url }} {% if enumValue.image.alt %} {{ enumValue.image.alt }} {% endif %} {% if enumValue.image.text %} {{ enumValue.image.text }} {% endif %} {% endif %} {% endfor %} {% if enumvalue.enum.text %} {{ enumvalue.enum.text }} {% endif %} {% if enumvalue.enum.meaning %} {{ enumvalue.enum.meaning.code }} {% endif %} {% if enumvalue.text %} {{ enumvalue.text }} {% endif %} {% if enumvalue.image %} {{ enumvalue.image.originalHeight }} {{ enumvalue.image.originalWidth }} {{ enumvalue.image.url }} {% if enumvalue.image.alt %} {{ enumvalue.image.alt }} {% endif %} {% if enumvalue.image.text %} {{ enumvalue.image.text }} {% endif %} {% endif %} .. _class-event-cartitemchange: ==================== Event/CartItemChange ==================== .. csv-table:: Attributy objektu **Event/CartItemChange** :header: "Název", Typ, "Popis" "amountChange", "int", "Počet přidaných/odebraných kusů" "rowId", "int", "ID řádku objednávku pro deduplikaci v trackingu" "catalogItem", "`Item`_", "Položka (varianta nebo produkt)" "price", "`Price`_", "Cena za kus" Příklady: .. code-block:: html+twig {{ cartitemchange.amountChange }} {{ cartitemchange.rowId }} {{ cartitemchange.catalogItem.id }} {{ cartitemchange.catalogItem.name }} {{ cartitemchange.catalogItem.trackingId }} {% if cartitemchange.catalogItem.digital %} ... {% endif %} {% if cartitemchange.catalogItem.sellable %} ... {% endif %} {% if cartitemchange.catalogItem.service %} ... {% endif %} {{ cartitemchange.catalogItem.availability.availableAmount }} {{ cartitemchange.catalogItem.availability.availableAmountInShowroom }} {{ cartitemchange.catalogItem.availability.availableAmountInStockroom }} {{ cartitemchange.catalogItem.availability.availableAmountInStorageCenter }} {{ cartitemchange.catalogItem.availability.hours }} {{ cartitemchange.catalogItem.availability.totalAmount }} {% if cartitemchange.catalogItem.availability.inShowroom %} ... {% endif %} {% if cartitemchange.catalogItem.availability.inStock %} ... {% endif %} {% if cartitemchange.catalogItem.availability.preorder %} ... {% endif %} {% if cartitemchange.catalogItem.availability.watchdogSupported %} ... {% endif %} {% for deliveryOption in cartitemchange.catalogItem.availability.deliveryOptions %} {{ deliveryOption.dateDelivered|date('d. m. Y H:i') }} {{ deliveryOption.dateSent|date('d. m. Y H:i') }} {{ deliveryOption.orderDeadline|date('d. m. Y H:i') }} {% if deliveryOption.timeDelivered %} {{ deliveryOption.timeDelivered }} {% endif %} {% endfor %} {% if cartitemchange.catalogItem.availability.text %} {{ cartitemchange.catalogItem.availability.text }} {% endif %} {% if cartitemchange.catalogItem.availability.dateExpected %} {{ cartitemchange.catalogItem.availability.dateExpected|date('d. m. Y H:i') }} {% endif %} {% if cartitemchange.catalogItem.availability.deliveryOption %} {{ cartitemchange.catalogItem.availability.deliveryOption.dateDelivered|date('d. m. Y H:i') }} {{ cartitemchange.catalogItem.availability.deliveryOption.dateSent|date('d. m. Y H:i') }} {{ cartitemchange.catalogItem.availability.deliveryOption.orderDeadline|date('d. m. Y H:i') }} {% if cartitemchange.catalogItem.availability.deliveryOption.timeDelivered %} {{ cartitemchange.catalogItem.availability.deliveryOption.timeDelivered }} {% endif %} {% endif %} {% for availableUpsellGroup in cartitemchange.catalogItem.availableUpsellGroups %} {{ availableUpsellGroup.id }} {{ availableUpsellGroup.name }} {% if availableUpsellGroup.singleSelection %} ... {% endif %} {% for upsell in availableUpsellGroup.upsells %} {{ upsell.id }} {{ upsell.name }} {% if upsell.inCart %} ... {% endif %} {% if upsell.code %} {{ upsell.code }} {% endif %} {% if upsell.vatRate %} {{ upsell.vatRate }} {% endif %} {% if upsell.image %} {% endif %} {% if upsell.unit %} {% endif %} {% endfor %} {% if availableUpsellGroup.code %} {{ availableUpsellGroup.code }} {% endif %} {% endfor %} {{ cartitemchange.catalogItem.product.id }} {{ cartitemchange.catalogItem.product.name }} {{ cartitemchange.catalogItem.product.trackingId }} {{ cartitemchange.catalogItem.product.dateCreated|date('d. m. Y H:i') }} {% if cartitemchange.catalogItem.product.active %} ... {% endif %} {% if cartitemchange.catalogItem.product.compared %} ... {% endif %} {% if cartitemchange.catalogItem.product.differentVariantPrices %} ... {% endif %} {% if cartitemchange.catalogItem.product.flagNew %} ... {% endif %} {% if cartitemchange.catalogItem.product.flagPromo %} ... {% endif %} {% if cartitemchange.catalogItem.product.flagSecondHand %} ... {% endif %} {% if cartitemchange.catalogItem.product.flagSellout %} ... {% endif %} {% if cartitemchange.catalogItem.product.otherDiscountApplicable %} ... {% endif %} {% if cartitemchange.catalogItem.product.soldSeparately %} ... {% endif %} {% for attributeInstance in cartitemchange.catalogItem.product.attributes %} {{ attributeInstance.name }} {{ attributeInstance.valuesHtml }} {% for attributeValueInstance in attributeInstance.values %} {% endfor %} {% if attributeInstance.description %} {{ attributeInstance.description }} {% endif %} {% if attributeInstance.group %} {% endif %} {% if attributeInstance.image %} {% endif %} {% endfor %} {% for availableUpsellGroup in cartitemchange.catalogItem.product.availableUpsellGroups %} {{ availableUpsellGroup.id }} {{ availableUpsellGroup.name }} {% if availableUpsellGroup.singleSelection %} ... {% endif %} {% for upsell in availableUpsellGroup.upsells %} {% endfor %} {% if availableUpsellGroup.code %} {{ availableUpsellGroup.code }} {% endif %} {% endfor %} {{ cartitemchange.catalogItem.product.category.id }} {{ cartitemchange.catalogItem.product.category.productCount }} {{ cartitemchange.catalogItem.product.category.productInStockCount }} {{ cartitemchange.catalogItem.product.category.totalStockQuantity }} {{ cartitemchange.catalogItem.product.category.headline }} {{ cartitemchange.catalogItem.product.category.menuName }} {{ cartitemchange.catalogItem.product.category.name }} {% if cartitemchange.catalogItem.product.category.flagErotic %} ... {% endif %} {% if cartitemchange.catalogItem.product.category.flagImportant %} ... {% endif %} {% if cartitemchange.catalogItem.product.category.noFollow %} ... {% endif %} {% for category in cartitemchange.catalogItem.product.category.subcategories %} {% endfor %} {% for video in cartitemchange.catalogItem.product.category.videos %} {% endfor %} {{ cartitemchange.catalogItem.product.category.pathIds }} {{ cartitemchange.catalogItem.product.category.pathNames }} {{ cartitemchange.catalogItem.product.category.templateAttribute }} {% if cartitemchange.catalogItem.product.category.subHeadline %} {{ cartitemchange.catalogItem.product.category.subHeadline }} {% endif %} {% if cartitemchange.catalogItem.product.category.text %} {{ cartitemchange.catalogItem.product.category.text }} {% endif %} {% if cartitemchange.catalogItem.product.category.parent %} {% endif %} {% if cartitemchange.catalogItem.product.category.image %} {% endif %} {% if cartitemchange.catalogItem.product.category.contentGrid %} {{ cartitemchange.catalogItem.product.category.contentGrid }} {% endif %} {% for category in cartitemchange.catalogItem.product.categories %} {{ category.id }} {{ category.productCount }} {{ category.productInStockCount }} {{ category.totalStockQuantity }} {{ category.headline }} {{ category.menuName }} {{ category.name }} {% if category.flagErotic %} ... {% endif %} {% if category.flagImportant %} ... {% endif %} {% if category.noFollow %} ... {% endif %} {% for category in category.subcategories %} {% endfor %} {% for video in category.videos %} {% endfor %} {{ category.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 cartitemchange.catalogItem.product.otherCategories %} {{ category.id }} {{ category.productCount }} {{ category.productInStockCount }} {{ category.totalStockQuantity }} {{ category.headline }} {{ category.menuName }} {{ category.name }} {% if category.flagErotic %} ... {% endif %} {% if category.flagImportant %} ... {% endif %} {% if category.noFollow %} ... {% endif %} {% for category in category.subcategories %} {% endfor %} {% for video in category.videos %} {% endfor %} {{ category.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 cartitemchange.catalogItem.product.files %} {{ file.bytes }} {{ file.url }} {% if file.mime %} {{ file.mime }} {% endif %} {% if file.name %} {{ file.name }} {% endif %} {% endfor %} {% for image in cartitemchange.catalogItem.product.images %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in cartitemchange.catalogItem.product.imagesWithEnumValue %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in cartitemchange.catalogItem.product.images360 %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in cartitemchange.catalogItem.product.currentImages %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in cartitemchange.catalogItem.product.imagesWithoutEnumValue %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in cartitemchange.catalogItem.product.otherImages %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {{ cartitemchange.catalogItem.product.item.id }} {{ cartitemchange.catalogItem.product.item.name }} {{ cartitemchange.catalogItem.product.item.trackingId }} {% if cartitemchange.catalogItem.product.item.digital %} ... {% endif %} {% if cartitemchange.catalogItem.product.item.sellable %} ... {% endif %} {% if cartitemchange.catalogItem.product.item.service %} ... {% endif %} {% for availableUpsellGroup in cartitemchange.catalogItem.product.item.availableUpsellGroups %} {% endfor %} {% for upsell in cartitemchange.catalogItem.product.item.availableUpsells %} {% endfor %} {{ cartitemchange.catalogItem.product.item.trackingIds }} {{ cartitemchange.catalogItem.product.item.storageLocations }} {% if cartitemchange.catalogItem.product.item.packageHeight %} {{ cartitemchange.catalogItem.product.item.packageHeight }} {% endif %} {% if cartitemchange.catalogItem.product.item.packageLength %} {{ cartitemchange.catalogItem.product.item.packageLength }} {% endif %} {% if cartitemchange.catalogItem.product.item.packageWeight %} {{ cartitemchange.catalogItem.product.item.packageWeight }} {% endif %} {% if cartitemchange.catalogItem.product.item.packageWidth %} {{ cartitemchange.catalogItem.product.item.packageWidth }} {% endif %} {% if cartitemchange.catalogItem.product.item.code %} {{ cartitemchange.catalogItem.product.item.code }} {% endif %} {% if cartitemchange.catalogItem.product.item.bundle %} {% endif %} {% if cartitemchange.catalogItem.product.item.cheapestDelivery %} {% endif %} {% if cartitemchange.catalogItem.product.item.freeDelivery %} {% endif %} {% if cartitemchange.catalogItem.product.item.closestFreeDelivery %} {% endif %} {% if cartitemchange.catalogItem.product.item.packageDimensions %} {% endif %} {% if cartitemchange.catalogItem.product.item.image %} {% endif %} {% if cartitemchange.catalogItem.product.item.price %} {% endif %} {% if cartitemchange.catalogItem.product.item.url %} {% endif %} {% if cartitemchange.catalogItem.product.item.variant %} {% endif %} {% for label in cartitemchange.catalogItem.product.labels %} {{ label.id }} {{ label.name }} {% if label.code %} {{ label.code }} {% endif %} {% if label.colorCode %} {{ label.colorCode }} {% endif %} {% if label.image %} {% endif %} {% endfor %} {% for productEnumValue in cartitemchange.catalogItem.product.enumValues %} {{ productEnumValue.id }} {{ productEnumValue.name }} {% if productEnumValue.selected %} ... {% endif %} {% for variant in productEnumValue.variants %} {% endfor %} {% if productEnumValue.text %} {{ productEnumValue.text }} {% endif %} {% if productEnumValue.image %} {% endif %} {% if productEnumValue.variantImage %} {% endif %} {% endfor %} {% for product in cartitemchange.catalogItem.product.packTemplateProducts %} {{ product.id }} {{ product.name }} {{ product.trackingId }} {{ product.dateCreated|date('d. m. Y H:i') }} {% if product.active %} ... {% endif %} {% if product.compared %} ... {% endif %} {% if product.differentVariantPrices %} ... {% endif %} {% if product.flagNew %} ... {% endif %} {% if product.flagPromo %} ... {% endif %} {% if product.flagSecondHand %} ... {% endif %} {% if product.flagSellout %} ... {% endif %} {% if product.otherDiscountApplicable %} ... {% endif %} {% if product.soldSeparately %} ... {% endif %} {% for 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 %} {{ cartitemchange.catalogItem.product.rating.count }} {% if cartitemchange.catalogItem.product.rating.voted %} ... {% endif %} {% if cartitemchange.catalogItem.product.rating.average %} {{ cartitemchange.catalogItem.product.rating.average }} {% endif %} {% for upsell in cartitemchange.catalogItem.product.availableUpsells %} {{ upsell.id }} {{ upsell.name }} {% if upsell.inCart %} ... {% endif %} {% if upsell.code %} {{ upsell.code }} {% endif %} {% if upsell.vatRate %} {{ upsell.vatRate }} {% endif %} {% if upsell.image %} {% endif %} {% if upsell.unit %} {% endif %} {% endfor %} {{ cartitemchange.catalogItem.product.url }} {{ cartitemchange.catalogItem.product.url.absolute }} {{ cartitemchange.catalogItem.product.url.path }} {% for variantChoiceStep in cartitemchange.catalogItem.product.variantChoiceSteps %} {{ variantChoiceStep.headline }} {{ variantChoiceStep.inputName }} {{ variantChoiceStep.mode }} {% if variantChoiceStep.final %} ... {% endif %} {% for variantChoice in variantChoiceStep.choices %} {% endfor %} {% if variantChoiceStep.description %} {{ variantChoiceStep.description }} {% endif %} {% if variantChoiceStep.infoDescription %} {{ variantChoiceStep.infoDescription }} {% endif %} {% if variantChoiceStep.messageEmpty %} {{ variantChoiceStep.messageEmpty }} {% endif %} {% if variantChoiceStep.placeholder %} {{ variantChoiceStep.placeholder }} {% endif %} {% if variantChoiceStep.icon %} {% endif %} {% if variantChoiceStep.infoIcon %} {% endif %} {% if variantChoiceStep.info %} {% endif %} {% if variantChoiceStep.selectedChoice %} {% endif %} {% endfor %} {% for variant in cartitemchange.catalogItem.product.currentVariants %} {{ variant.id }} {{ variant.name }} {{ variant.trackingId }} {% if variant.active %} ... {% endif %} {% if variant.selected %} ... {% endif %} {% for availableUpsellGroup in variant.availableUpsellGroups %} {% endfor %} {% for enumValue in variant.enumValues %} {% endfor %} {% for image in variant.images %} {% endfor %} {% for upsell in variant.availableUpsells %} {% endfor %} {% if variant.legacyRel %} {{ variant.legacyRel }} {% endif %} {% if variant.image %} {% endif %} {% endfor %} {% for variant in cartitemchange.catalogItem.product.variants %} {{ variant.id }} {{ variant.name }} {{ variant.trackingId }} {% if variant.active %} ... {% endif %} {% if variant.selected %} ... {% endif %} {% for availableUpsellGroup in variant.availableUpsellGroups %} {% endfor %} {% for enumValue in variant.enumValues %} {% endfor %} {% for image in variant.images %} {% endfor %} {% for upsell in variant.availableUpsells %} {% endfor %} {% if variant.legacyRel %} {{ variant.legacyRel }} {% endif %} {% if variant.image %} {% endif %} {% endfor %} {% for variant in cartitemchange.catalogItem.product.variantsWithEnumValueIds %} {{ variant.id }} {{ variant.name }} {{ variant.trackingId }} {% if variant.active %} ... {% endif %} {% if variant.selected %} ... {% endif %} {% for availableUpsellGroup in variant.availableUpsellGroups %} {% endfor %} {% for enumValue in variant.enumValues %} {% endfor %} {% for image in variant.images %} {% endfor %} {% for upsell in variant.availableUpsells %} {% endfor %} {% if variant.legacyRel %} {{ variant.legacyRel }} {% endif %} {% if variant.image %} {% endif %} {% endfor %} {{ cartitemchange.catalogItem.product.variantType.id }} {{ cartitemchange.catalogItem.product.variantType.name }} {% for video in cartitemchange.catalogItem.product.videos %} {{ video.embeddedUrl }} {% if video.name %} {{ video.name }} {% endif %} {% if video.image %} {% endif %} {% endfor %} {{ cartitemchange.catalogItem.product.trackingIds }} {% if cartitemchange.catalogItem.product.currentSubName %} {{ cartitemchange.catalogItem.product.currentSubName }} {% endif %} {% if cartitemchange.catalogItem.product.nameSuffix %} {{ cartitemchange.catalogItem.product.nameSuffix }} {% endif %} {% if cartitemchange.catalogItem.product.nameSupplier %} {{ cartitemchange.catalogItem.product.nameSupplier }} {% endif %} {% if cartitemchange.catalogItem.product.text %} {{ cartitemchange.catalogItem.product.text }} {% endif %} {% if cartitemchange.catalogItem.product.attribute %} {{ cartitemchange.catalogItem.product.attribute.name }} {{ cartitemchange.catalogItem.product.attribute.valuesHtml }} {% for attributeValueInstance in cartitemchange.catalogItem.product.attribute.values %} {% endfor %} {% if cartitemchange.catalogItem.product.attribute.description %} {{ cartitemchange.catalogItem.product.attribute.description }} {% endif %} {% if cartitemchange.catalogItem.product.attribute.group %} {% endif %} {% if cartitemchange.catalogItem.product.attribute.image %} {% endif %} {% endif %} {% if cartitemchange.catalogItem.product.brand %} {{ cartitemchange.catalogItem.product.brand.id }} {{ cartitemchange.catalogItem.product.brand.headline }} {{ cartitemchange.catalogItem.product.brand.name }} {% if cartitemchange.catalogItem.product.brand.flagImportant %} ... {% endif %} {% for category in cartitemchange.catalogItem.product.brand.categories %} {% endfor %} {% if cartitemchange.catalogItem.product.brand.code %} {{ cartitemchange.catalogItem.product.brand.code }} {% endif %} {% if cartitemchange.catalogItem.product.brand.web %} {{ cartitemchange.catalogItem.product.brand.web }} {% endif %} {% if cartitemchange.catalogItem.product.brand.text %} {{ cartitemchange.catalogItem.product.brand.text }} {% endif %} {% if cartitemchange.catalogItem.product.brand.image %} {% endif %} {% if cartitemchange.catalogItem.product.brand.seo %} {% endif %} {% if cartitemchange.catalogItem.product.brand.contentGrid %} {{ cartitemchange.catalogItem.product.brand.contentGrid }} {% endif %} {% endif %} {% if cartitemchange.catalogItem.product.imageForEnumValueId %} {{ cartitemchange.catalogItem.product.imageForEnumValueId.originalHeight }} {{ cartitemchange.catalogItem.product.imageForEnumValueId.originalWidth }} {{ cartitemchange.catalogItem.product.imageForEnumValueId.url }} {% if cartitemchange.catalogItem.product.imageForEnumValueId.alt %} {{ cartitemchange.catalogItem.product.imageForEnumValueId.alt }} {% endif %} {% if cartitemchange.catalogItem.product.imageForEnumValueId.text %} {{ cartitemchange.catalogItem.product.imageForEnumValueId.text }} {% endif %} {% endif %} {% if cartitemchange.catalogItem.product.image %} {{ cartitemchange.catalogItem.product.image.originalHeight }} {{ cartitemchange.catalogItem.product.image.originalWidth }} {{ cartitemchange.catalogItem.product.image.url }} {% if cartitemchange.catalogItem.product.image.alt %} {{ cartitemchange.catalogItem.product.image.alt }} {% endif %} {% if cartitemchange.catalogItem.product.image.text %} {{ cartitemchange.catalogItem.product.image.text }} {% endif %} {% endif %} {% if cartitemchange.catalogItem.product.successor %} {{ cartitemchange.catalogItem.product.successor.id }} {{ cartitemchange.catalogItem.product.successor.name }} {{ cartitemchange.catalogItem.product.successor.trackingId }} {{ cartitemchange.catalogItem.product.successor.dateCreated|date('d. m. Y H:i') }} {% if cartitemchange.catalogItem.product.successor.active %} ... {% endif %} {% if cartitemchange.catalogItem.product.successor.compared %} ... {% endif %} {% if cartitemchange.catalogItem.product.successor.differentVariantPrices %} ... {% endif %} {% if cartitemchange.catalogItem.product.successor.flagNew %} ... {% endif %} {% if cartitemchange.catalogItem.product.successor.flagPromo %} ... {% endif %} {% if cartitemchange.catalogItem.product.successor.flagSecondHand %} ... {% endif %} {% if cartitemchange.catalogItem.product.successor.flagSellout %} ... {% endif %} {% if cartitemchange.catalogItem.product.successor.otherDiscountApplicable %} ... {% endif %} {% if cartitemchange.catalogItem.product.successor.soldSeparately %} ... {% endif %} {% for attributeInstance in cartitemchange.catalogItem.product.successor.attributes %} {% endfor %} {% for availableUpsellGroup in cartitemchange.catalogItem.product.successor.availableUpsellGroups %} {% endfor %} {% for category in cartitemchange.catalogItem.product.successor.categories %} {% endfor %} {% for category in cartitemchange.catalogItem.product.successor.otherCategories %} {% endfor %} {% for file in cartitemchange.catalogItem.product.successor.files %} {% endfor %} {% for image in cartitemchange.catalogItem.product.successor.images %} {% endfor %} {% for image in cartitemchange.catalogItem.product.successor.imagesWithEnumValue %} {% endfor %} {% for image in cartitemchange.catalogItem.product.successor.images360 %} {% endfor %} {% for image in cartitemchange.catalogItem.product.successor.currentImages %} {% endfor %} {% for image in cartitemchange.catalogItem.product.successor.imagesWithoutEnumValue %} {% endfor %} {% for image in cartitemchange.catalogItem.product.successor.otherImages %} {% endfor %} {% for label in cartitemchange.catalogItem.product.successor.labels %} {% endfor %} {% for productEnumValue in cartitemchange.catalogItem.product.successor.enumValues %} {% endfor %} {% for product in cartitemchange.catalogItem.product.successor.packTemplateProducts %} {% endfor %} {% for upsell in cartitemchange.catalogItem.product.successor.availableUpsells %} {% endfor %} {% for variantChoiceStep in cartitemchange.catalogItem.product.successor.variantChoiceSteps %} {% endfor %} {% for variant in cartitemchange.catalogItem.product.successor.currentVariants %} {% endfor %} {% for variant in cartitemchange.catalogItem.product.successor.variants %} {% endfor %} {% for variant in cartitemchange.catalogItem.product.successor.variantsWithEnumValueIds %} {% endfor %} {% for video in cartitemchange.catalogItem.product.successor.videos %} {% endfor %} {{ cartitemchange.catalogItem.product.successor.trackingIds }} {% if cartitemchange.catalogItem.product.successor.currentSubName %} {{ cartitemchange.catalogItem.product.successor.currentSubName }} {% endif %} {% if cartitemchange.catalogItem.product.successor.nameSuffix %} {{ cartitemchange.catalogItem.product.successor.nameSuffix }} {% endif %} {% if cartitemchange.catalogItem.product.successor.nameSupplier %} {{ cartitemchange.catalogItem.product.successor.nameSupplier }} {% endif %} {% if cartitemchange.catalogItem.product.successor.text %} {{ cartitemchange.catalogItem.product.successor.text }} {% endif %} {% if cartitemchange.catalogItem.product.successor.attribute %} {% endif %} {% if cartitemchange.catalogItem.product.successor.brand %} {% endif %} {% if cartitemchange.catalogItem.product.successor.imageForEnumValueId %} {% endif %} {% if cartitemchange.catalogItem.product.successor.image %} {% endif %} {% if cartitemchange.catalogItem.product.successor.seo %} {% endif %} {% if cartitemchange.catalogItem.product.successor.supplier %} {% endif %} {% if cartitemchange.catalogItem.product.successor.unit %} {% endif %} {% if cartitemchange.catalogItem.product.successor.variant %} {% endif %} {% if cartitemchange.catalogItem.product.successor.warranty %} {% endif %} {% if cartitemchange.catalogItem.product.successor.contentGrid %} {{ cartitemchange.catalogItem.product.successor.contentGrid }} {% endif %} {% endif %} {% if cartitemchange.catalogItem.product.seo %} {% if cartitemchange.catalogItem.product.seo.description %} {{ cartitemchange.catalogItem.product.seo.description }} {% endif %} {% if cartitemchange.catalogItem.product.seo.keywords %} {{ cartitemchange.catalogItem.product.seo.keywords }} {% endif %} {% if cartitemchange.catalogItem.product.seo.title %} {{ cartitemchange.catalogItem.product.seo.title }} {% endif %} {% endif %} {% if cartitemchange.catalogItem.product.supplier %} {{ cartitemchange.catalogItem.product.supplier.id }} {{ cartitemchange.catalogItem.product.supplier.name }} {% endif %} {% if cartitemchange.catalogItem.product.unit %} {{ cartitemchange.catalogItem.product.unit.name }} {% endif %} {% if cartitemchange.catalogItem.product.variant %} {{ cartitemchange.catalogItem.product.variant.id }} {{ cartitemchange.catalogItem.product.variant.name }} {{ cartitemchange.catalogItem.product.variant.trackingId }} {% if cartitemchange.catalogItem.product.variant.active %} ... {% endif %} {% if cartitemchange.catalogItem.product.variant.selected %} ... {% endif %} {% for availableUpsellGroup in cartitemchange.catalogItem.product.variant.availableUpsellGroups %} {% endfor %} {% for enumValue in cartitemchange.catalogItem.product.variant.enumValues %} {% endfor %} {% for image in cartitemchange.catalogItem.product.variant.images %} {% endfor %} {% for upsell in cartitemchange.catalogItem.product.variant.availableUpsells %} {% endfor %} {% if cartitemchange.catalogItem.product.variant.legacyRel %} {{ cartitemchange.catalogItem.product.variant.legacyRel }} {% endif %} {% if cartitemchange.catalogItem.product.variant.image %} {% endif %} {% endif %} {% if cartitemchange.catalogItem.product.warranty %} {{ cartitemchange.catalogItem.product.warranty.months }} {% endif %} {% if cartitemchange.catalogItem.product.contentGrid %} {{ cartitemchange.catalogItem.product.contentGrid }} {% endif %} {% for upsell in cartitemchange.catalogItem.availableUpsells %} {{ upsell.id }} {{ upsell.name }} {% if upsell.inCart %} ... {% endif %} {{ upsell.category.id }} {{ upsell.category.productCount }} {{ upsell.category.productInStockCount }} {{ upsell.category.totalStockQuantity }} {{ upsell.category.headline }} {{ upsell.category.menuName }} {{ upsell.category.name }} {% if upsell.category.flagErotic %} ... {% endif %} {% if upsell.category.flagImportant %} ... {% endif %} {% if upsell.category.noFollow %} ... {% endif %} {% for category in upsell.category.subcategories %} {% endfor %} {% for video in upsell.category.videos %} {% endfor %} {{ upsell.category.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 %} {% endif %} {% if upsell.category.image %} {% endif %} {% if upsell.category.contentGrid %} {{ upsell.category.contentGrid }} {% endif %} {{ upsell.price.vatRate }} {% if upsell.price.discountPercent %} {{ upsell.price.discountPercent }} {% endif %} {% if upsell.price.discountValidTo %} {{ upsell.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if upsell.price.beforeDiscount %} {% endif %} {% if upsell.price.discount %} {% endif %} {{ upsell.product.id }} {{ upsell.product.name }} {{ upsell.product.trackingId }} {{ upsell.product.dateCreated|date('d. m. Y H:i') }} {% if upsell.product.active %} ... {% endif %} {% if upsell.product.compared %} ... {% endif %} {% if upsell.product.differentVariantPrices %} ... {% endif %} {% if upsell.product.flagNew %} ... {% endif %} {% if upsell.product.flagPromo %} ... {% endif %} {% if upsell.product.flagSecondHand %} ... {% endif %} {% if upsell.product.flagSellout %} ... {% endif %} {% if upsell.product.otherDiscountApplicable %} ... {% endif %} {% if upsell.product.soldSeparately %} ... {% endif %} {% for attributeInstance in upsell.product.attributes %} {% endfor %} {% for availableUpsellGroup in upsell.product.availableUpsellGroups %} {% endfor %} {% for category in upsell.product.categories %} {% endfor %} {% for category in upsell.product.otherCategories %} {% endfor %} {% for file in upsell.product.files %} {% endfor %} {% for image in upsell.product.images %} {% endfor %} {% for image in upsell.product.imagesWithEnumValue %} {% endfor %} {% for image in upsell.product.images360 %} {% endfor %} {% for image in upsell.product.currentImages %} {% endfor %} {% for image in upsell.product.imagesWithoutEnumValue %} {% endfor %} {% for image in upsell.product.otherImages %} {% endfor %} {% for label in upsell.product.labels %} {% endfor %} {% for productEnumValue in upsell.product.enumValues %} {% endfor %} {% for product in upsell.product.packTemplateProducts %} {% endfor %} {% for variantChoiceStep in upsell.product.variantChoiceSteps %} {% endfor %} {% for variant in upsell.product.currentVariants %} {% endfor %} {% for variant in upsell.product.variants %} {% endfor %} {% for variant in upsell.product.variantsWithEnumValueIds %} {% endfor %} {% for video in upsell.product.videos %} {% endfor %} {{ upsell.product.trackingIds }} {% if upsell.product.currentSubName %} {{ upsell.product.currentSubName }} {% endif %} {% if upsell.product.nameSuffix %} {{ upsell.product.nameSuffix }} {% endif %} {% if upsell.product.nameSupplier %} {{ upsell.product.nameSupplier }} {% endif %} {% if upsell.product.text %} {{ upsell.product.text }} {% endif %} {% if upsell.product.attribute %} {% endif %} {% if upsell.product.brand %} {% endif %} {% if upsell.product.imageForEnumValueId %} {% endif %} {% if upsell.product.image %} {% endif %} {% if upsell.product.successor %} {% endif %} {% if upsell.product.seo %} {% endif %} {% if upsell.product.supplier %} {% endif %} {% if upsell.product.unit %} {% endif %} {% if upsell.product.variant %} {% endif %} {% if upsell.product.warranty %} {% endif %} {% if upsell.product.contentGrid %} {{ upsell.product.contentGrid }} {% endif %} {{ upsell.group.id }} {{ upsell.group.requiredNoteMaximumLength }} {{ upsell.group.name }} {% if upsell.group.requiredNote %} ... {% endif %} {% if upsell.group.requiredUpload %} ... {% endif %} {% if upsell.group.singleSelection %} ... {% endif %} {% if upsell.group.text %} {{ upsell.group.text }} {% endif %} {% if upsell.group.uploadInput %} {{ upsell.group.uploadInput }} {% endif %} {% if upsell.code %} {{ upsell.code }} {% endif %} {% if upsell.vatRate %} {{ upsell.vatRate }} {% endif %} {% if upsell.image %} {{ upsell.image.originalHeight }} {{ upsell.image.originalWidth }} {{ upsell.image.url }} {% if upsell.image.alt %} {{ upsell.image.alt }} {% endif %} {% if upsell.image.text %} {{ upsell.image.text }} {% endif %} {% endif %} {% if upsell.unit %} {{ upsell.unit.name }} {% endif %} {% endfor %} {{ cartitemchange.catalogItem.trackingIds }} {{ cartitemchange.catalogItem.storageLocations }} {% if cartitemchange.catalogItem.packageHeight %} {{ cartitemchange.catalogItem.packageHeight }} {% endif %} {% if cartitemchange.catalogItem.packageLength %} {{ cartitemchange.catalogItem.packageLength }} {% endif %} {% if cartitemchange.catalogItem.packageWeight %} {{ cartitemchange.catalogItem.packageWeight }} {% endif %} {% if cartitemchange.catalogItem.packageWidth %} {{ cartitemchange.catalogItem.packageWidth }} {% endif %} {% if cartitemchange.catalogItem.code %} {{ cartitemchange.catalogItem.code }} {% endif %} {% if cartitemchange.catalogItem.bundle %} {% if cartitemchange.catalogItem.bundle.multiPack %} ... {% endif %} {% if cartitemchange.catalogItem.bundle.price %} {{ cartitemchange.catalogItem.bundle.price.vatRate }} {% if cartitemchange.catalogItem.bundle.price.discountPercent %} {{ cartitemchange.catalogItem.bundle.price.discountPercent }} {% endif %} {% if cartitemchange.catalogItem.bundle.price.discountValidTo %} {{ cartitemchange.catalogItem.bundle.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if cartitemchange.catalogItem.bundle.price.beforeDiscount %} {% endif %} {% if cartitemchange.catalogItem.bundle.price.discount %} {% endif %} {% endif %} {% endif %} {% if cartitemchange.catalogItem.cheapestDelivery %} {{ cartitemchange.catalogItem.cheapestDelivery.inputId }} {{ cartitemchange.catalogItem.cheapestDelivery.name }} {{ cartitemchange.catalogItem.cheapestDelivery.vatRate }} {% if cartitemchange.catalogItem.cheapestDelivery.branchRequired %} ... {% endif %} {% if cartitemchange.catalogItem.cheapestDelivery.currier %} ... {% endif %} {% if cartitemchange.catalogItem.cheapestDelivery.dateGuaranteed %} ... {% endif %} {% if cartitemchange.catalogItem.cheapestDelivery.deliveryAddressRequired %} ... {% endif %} {% if cartitemchange.catalogItem.cheapestDelivery.deliveryToAddress %} ... {% endif %} {% if cartitemchange.catalogItem.cheapestDelivery.free %} ... {% endif %} {% if cartitemchange.catalogItem.cheapestDelivery.pickup %} ... {% endif %} {% if cartitemchange.catalogItem.cheapestDelivery.selected %} ... {% endif %} {{ cartitemchange.catalogItem.cheapestDelivery.price.vatRate }} {% if cartitemchange.catalogItem.cheapestDelivery.price.discountPercent %} {{ cartitemchange.catalogItem.cheapestDelivery.price.discountPercent }} {% endif %} {% if cartitemchange.catalogItem.cheapestDelivery.price.discountValidTo %} {{ cartitemchange.catalogItem.cheapestDelivery.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if cartitemchange.catalogItem.cheapestDelivery.price.beforeDiscount %} {% endif %} {% if cartitemchange.catalogItem.cheapestDelivery.price.discount %} {% endif %} {% if cartitemchange.catalogItem.cheapestDelivery.text %} {{ cartitemchange.catalogItem.cheapestDelivery.text }} {% endif %} {% if cartitemchange.catalogItem.cheapestDelivery.branch %} {{ cartitemchange.catalogItem.cheapestDelivery.branch.code }} {{ cartitemchange.catalogItem.cheapestDelivery.branch.name }} {% endif %} {% if cartitemchange.catalogItem.cheapestDelivery.carrier %} {{ cartitemchange.catalogItem.cheapestDelivery.carrier.code }} {{ cartitemchange.catalogItem.cheapestDelivery.carrier.name }} {% endif %} {% if cartitemchange.catalogItem.cheapestDelivery.deliveryDate %} {{ cartitemchange.catalogItem.cheapestDelivery.deliveryDate.dateDelivered|date('d. m. Y H:i') }} {{ cartitemchange.catalogItem.cheapestDelivery.deliveryDate.dateSent|date('d. m. Y H:i') }} {{ cartitemchange.catalogItem.cheapestDelivery.deliveryDate.orderDeadline|date('d. m. Y H:i') }} {% if cartitemchange.catalogItem.cheapestDelivery.deliveryDate.timeDelivered %} {{ cartitemchange.catalogItem.cheapestDelivery.deliveryDate.timeDelivered }} {% endif %} {% endif %} {% if cartitemchange.catalogItem.cheapestDelivery.packageType %} {{ cartitemchange.catalogItem.cheapestDelivery.packageType.code }} {% endif %} {% if cartitemchange.catalogItem.cheapestDelivery.image %} {{ cartitemchange.catalogItem.cheapestDelivery.image.originalHeight }} {{ cartitemchange.catalogItem.cheapestDelivery.image.originalWidth }} {{ cartitemchange.catalogItem.cheapestDelivery.image.url }} {% if cartitemchange.catalogItem.cheapestDelivery.image.alt %} {{ cartitemchange.catalogItem.cheapestDelivery.image.alt }} {% endif %} {% if cartitemchange.catalogItem.cheapestDelivery.image.text %} {{ cartitemchange.catalogItem.cheapestDelivery.image.text }} {% endif %} {% endif %} {% endif %} {% if cartitemchange.catalogItem.freeDelivery %} {{ cartitemchange.catalogItem.freeDelivery.name }} {{ cartitemchange.catalogItem.freeDelivery.vatRate }} {{ cartitemchange.catalogItem.freeDelivery.payment.code }} {{ cartitemchange.catalogItem.freeDelivery.payment.inputId }} {{ cartitemchange.catalogItem.freeDelivery.payment.name }} {{ cartitemchange.catalogItem.freeDelivery.payment.url }} {{ cartitemchange.catalogItem.freeDelivery.payment.vatRate }} {% if cartitemchange.catalogItem.freeDelivery.payment.free %} ... {% endif %} {% if cartitemchange.catalogItem.freeDelivery.payment.inAdvance %} ... {% endif %} {% if cartitemchange.catalogItem.freeDelivery.payment.selected %} ... {% endif %} {% if cartitemchange.catalogItem.freeDelivery.payment.vs %} {{ cartitemchange.catalogItem.freeDelivery.payment.vs }} {% endif %} {% if cartitemchange.catalogItem.freeDelivery.payment.qRCodeHTML %} {{ cartitemchange.catalogItem.freeDelivery.payment.qRCodeHTML }} {% endif %} {% if cartitemchange.catalogItem.freeDelivery.payment.text %} {{ cartitemchange.catalogItem.freeDelivery.payment.text }} {% endif %} {% if cartitemchange.catalogItem.freeDelivery.payment.bankAccount %} {% endif %} {% if cartitemchange.catalogItem.freeDelivery.payment.image %} {% endif %} {{ cartitemchange.catalogItem.freeDelivery.transport.inputId }} {{ cartitemchange.catalogItem.freeDelivery.transport.name }} {{ cartitemchange.catalogItem.freeDelivery.transport.vatRate }} {% if cartitemchange.catalogItem.freeDelivery.transport.branchRequired %} ... {% endif %} {% if cartitemchange.catalogItem.freeDelivery.transport.currier %} ... {% endif %} {% if cartitemchange.catalogItem.freeDelivery.transport.dateGuaranteed %} ... {% endif %} {% if cartitemchange.catalogItem.freeDelivery.transport.deliveryAddressRequired %} ... {% endif %} {% if cartitemchange.catalogItem.freeDelivery.transport.deliveryToAddress %} ... {% endif %} {% if cartitemchange.catalogItem.freeDelivery.transport.free %} ... {% endif %} {% if cartitemchange.catalogItem.freeDelivery.transport.pickup %} ... {% endif %} {% if cartitemchange.catalogItem.freeDelivery.transport.selected %} ... {% endif %} {% if cartitemchange.catalogItem.freeDelivery.transport.text %} {{ cartitemchange.catalogItem.freeDelivery.transport.text }} {% endif %} {% if cartitemchange.catalogItem.freeDelivery.transport.branch %} {% endif %} {% if cartitemchange.catalogItem.freeDelivery.transport.carrier %} {% endif %} {% if cartitemchange.catalogItem.freeDelivery.transport.deliveryDate %} {% endif %} {% if cartitemchange.catalogItem.freeDelivery.transport.packageType %} {% endif %} {% if cartitemchange.catalogItem.freeDelivery.transport.image %} {% endif %} {{ cartitemchange.catalogItem.freeDelivery.price.vatRate }} {% if cartitemchange.catalogItem.freeDelivery.price.discountPercent %} {{ cartitemchange.catalogItem.freeDelivery.price.discountPercent }} {% endif %} {% if cartitemchange.catalogItem.freeDelivery.price.discountValidTo %} {{ cartitemchange.catalogItem.freeDelivery.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if cartitemchange.catalogItem.freeDelivery.price.beforeDiscount %} {% endif %} {% if cartitemchange.catalogItem.freeDelivery.price.discount %} {% endif %} {% if cartitemchange.catalogItem.freeDelivery.id %} {{ cartitemchange.catalogItem.freeDelivery.id }} {% endif %} {% if cartitemchange.catalogItem.freeDelivery.freeLimit %} {{ cartitemchange.catalogItem.freeDelivery.freeLimit.percent }} {% endif %} {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery %} {{ cartitemchange.catalogItem.closestFreeDelivery.name }} {{ cartitemchange.catalogItem.closestFreeDelivery.vatRate }} {{ cartitemchange.catalogItem.closestFreeDelivery.payment.code }} {{ cartitemchange.catalogItem.closestFreeDelivery.payment.inputId }} {{ cartitemchange.catalogItem.closestFreeDelivery.payment.name }} {{ cartitemchange.catalogItem.closestFreeDelivery.payment.url }} {{ cartitemchange.catalogItem.closestFreeDelivery.payment.vatRate }} {% if cartitemchange.catalogItem.closestFreeDelivery.payment.free %} ... {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.payment.inAdvance %} ... {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.payment.selected %} ... {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.payment.vs %} {{ cartitemchange.catalogItem.closestFreeDelivery.payment.vs }} {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.payment.qRCodeHTML %} {{ cartitemchange.catalogItem.closestFreeDelivery.payment.qRCodeHTML }} {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.payment.text %} {{ cartitemchange.catalogItem.closestFreeDelivery.payment.text }} {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.payment.bankAccount %} {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.payment.image %} {% endif %} {{ cartitemchange.catalogItem.closestFreeDelivery.transport.inputId }} {{ cartitemchange.catalogItem.closestFreeDelivery.transport.name }} {{ cartitemchange.catalogItem.closestFreeDelivery.transport.vatRate }} {% if cartitemchange.catalogItem.closestFreeDelivery.transport.branchRequired %} ... {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.transport.currier %} ... {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.transport.deliveryAddressRequired %} ... {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.transport.free %} ... {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.transport.pickup %} ... {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.transport.selected %} ... {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.transport.text %} {{ cartitemchange.catalogItem.closestFreeDelivery.transport.text }} {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.transport.branch %} {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.transport.carrier %} {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.transport.deliveryDate %} {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.transport.packageType %} {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.transport.image %} {% endif %} {{ cartitemchange.catalogItem.closestFreeDelivery.price.vatRate }} {% if cartitemchange.catalogItem.closestFreeDelivery.price.discountPercent %} {{ cartitemchange.catalogItem.closestFreeDelivery.price.discountPercent }} {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.price.discountValidTo %} {{ cartitemchange.catalogItem.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.price.beforeDiscount %} {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.price.discount %} {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.id %} {{ cartitemchange.catalogItem.closestFreeDelivery.id }} {% endif %} {% if cartitemchange.catalogItem.closestFreeDelivery.freeLimit %} {{ cartitemchange.catalogItem.closestFreeDelivery.freeLimit.percent }} {% endif %} {% endif %} {% if cartitemchange.catalogItem.packageDimensions %} {{ cartitemchange.catalogItem.packageDimensions }} {{ cartitemchange.catalogItem.packageDimensions.height }} {{ cartitemchange.catalogItem.packageDimensions.length }} {{ cartitemchange.catalogItem.packageDimensions.width }} {{ cartitemchange.catalogItem.packageDimensions.unit }} {% endif %} {% if cartitemchange.catalogItem.image %} {{ cartitemchange.catalogItem.image.originalHeight }} {{ cartitemchange.catalogItem.image.originalWidth }} {{ cartitemchange.catalogItem.image.url }} {% if cartitemchange.catalogItem.image.alt %} {{ cartitemchange.catalogItem.image.alt }} {% endif %} {% if cartitemchange.catalogItem.image.text %} {{ cartitemchange.catalogItem.image.text }} {% endif %} {% endif %} {% if cartitemchange.catalogItem.price %} {{ cartitemchange.catalogItem.price.vatRate }} {{ cartitemchange.catalogItem.price.current.currency }} {{ cartitemchange.catalogItem.price.current.formatted }} {{ cartitemchange.catalogItem.price.current.value }} {% if cartitemchange.catalogItem.price.discountPercent %} {{ cartitemchange.catalogItem.price.discountPercent }} {% endif %} {% if cartitemchange.catalogItem.price.discountValidTo %} {{ cartitemchange.catalogItem.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if cartitemchange.catalogItem.price.beforeDiscount %} {{ cartitemchange.catalogItem.price.beforeDiscount.currency }} {{ cartitemchange.catalogItem.price.beforeDiscount.formatted }} {{ cartitemchange.catalogItem.price.beforeDiscount.value }} {% endif %} {% if cartitemchange.catalogItem.price.discount %} {{ cartitemchange.catalogItem.price.discount.currency }} {{ cartitemchange.catalogItem.price.discount.formatted }} {{ cartitemchange.catalogItem.price.discount.value }} {% endif %} {% endif %} {% if cartitemchange.catalogItem.url %} {{ cartitemchange.catalogItem.url }} {{ cartitemchange.catalogItem.url.absolute }} {{ cartitemchange.catalogItem.url.path }} {% endif %} {% if cartitemchange.catalogItem.variant %} {{ cartitemchange.catalogItem.variant.id }} {{ cartitemchange.catalogItem.variant.name }} {{ cartitemchange.catalogItem.variant.trackingId }} {% if cartitemchange.catalogItem.variant.active %} ... {% endif %} {% if cartitemchange.catalogItem.variant.selected %} ... {% endif %} {% for availableUpsellGroup in cartitemchange.catalogItem.variant.availableUpsellGroups %} {{ availableUpsellGroup.id }} {{ availableUpsellGroup.name }} {% if availableUpsellGroup.singleSelection %} ... {% endif %} {% for upsell in availableUpsellGroup.upsells %} {% endfor %} {% if availableUpsellGroup.code %} {{ availableUpsellGroup.code }} {% endif %} {% endfor %} {% for enumValue in cartitemchange.catalogItem.variant.enumValues %} {{ enumValue.id }} {{ enumValue.name }} {% if enumValue.text %} {{ enumValue.text }} {% endif %} {% if enumValue.image %} {% endif %} {% endfor %} {% for image in cartitemchange.catalogItem.variant.images %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {{ cartitemchange.catalogItem.variant.item.id }} {{ cartitemchange.catalogItem.variant.item.name }} {{ cartitemchange.catalogItem.variant.item.trackingId }} {% if cartitemchange.catalogItem.variant.item.digital %} ... {% endif %} {% if cartitemchange.catalogItem.variant.item.sellable %} ... {% endif %} {% if cartitemchange.catalogItem.variant.item.service %} ... {% endif %} {% for availableUpsellGroup in cartitemchange.catalogItem.variant.item.availableUpsellGroups %} {% endfor %} {% for upsell in cartitemchange.catalogItem.variant.item.availableUpsells %} {% endfor %} {{ cartitemchange.catalogItem.variant.item.trackingIds }} {{ cartitemchange.catalogItem.variant.item.storageLocations }} {% if cartitemchange.catalogItem.variant.item.packageHeight %} {{ cartitemchange.catalogItem.variant.item.packageHeight }} {% endif %} {% if cartitemchange.catalogItem.variant.item.packageLength %} {{ cartitemchange.catalogItem.variant.item.packageLength }} {% endif %} {% if cartitemchange.catalogItem.variant.item.packageWeight %} {{ cartitemchange.catalogItem.variant.item.packageWeight }} {% endif %} {% if cartitemchange.catalogItem.variant.item.packageWidth %} {{ cartitemchange.catalogItem.variant.item.packageWidth }} {% endif %} {% if cartitemchange.catalogItem.variant.item.code %} {{ cartitemchange.catalogItem.variant.item.code }} {% endif %} {% if cartitemchange.catalogItem.variant.item.bundle %} {% endif %} {% if cartitemchange.catalogItem.variant.item.cheapestDelivery %} {% endif %} {% if cartitemchange.catalogItem.variant.item.freeDelivery %} {% endif %} {% if cartitemchange.catalogItem.variant.item.closestFreeDelivery %} {% endif %} {% if cartitemchange.catalogItem.variant.item.packageDimensions %} {% endif %} {% if cartitemchange.catalogItem.variant.item.image %} {% endif %} {% if cartitemchange.catalogItem.variant.item.price %} {% endif %} {% if cartitemchange.catalogItem.variant.item.url %} {% endif %} {{ cartitemchange.catalogItem.variant.product.id }} {{ cartitemchange.catalogItem.variant.product.name }} {{ cartitemchange.catalogItem.variant.product.trackingId }} {{ cartitemchange.catalogItem.variant.product.dateCreated|date('d. m. Y H:i') }} {% if cartitemchange.catalogItem.variant.product.active %} ... {% endif %} {% if cartitemchange.catalogItem.variant.product.compared %} ... {% endif %} {% if cartitemchange.catalogItem.variant.product.differentVariantPrices %} ... {% endif %} {% if cartitemchange.catalogItem.variant.product.flagNew %} ... {% endif %} {% if cartitemchange.catalogItem.variant.product.flagPromo %} ... {% endif %} {% if cartitemchange.catalogItem.variant.product.flagSecondHand %} ... {% endif %} {% if cartitemchange.catalogItem.variant.product.flagSellout %} ... {% endif %} {% if cartitemchange.catalogItem.variant.product.otherDiscountApplicable %} ... {% endif %} {% if cartitemchange.catalogItem.variant.product.soldSeparately %} ... {% endif %} {% for attributeInstance in cartitemchange.catalogItem.variant.product.attributes %} {% endfor %} {% for availableUpsellGroup in cartitemchange.catalogItem.variant.product.availableUpsellGroups %} {% endfor %} {% for category in cartitemchange.catalogItem.variant.product.categories %} {% endfor %} {% for category in cartitemchange.catalogItem.variant.product.otherCategories %} {% endfor %} {% for file in cartitemchange.catalogItem.variant.product.files %} {% endfor %} {% for image in cartitemchange.catalogItem.variant.product.images %} {% endfor %} {% for image in cartitemchange.catalogItem.variant.product.imagesWithEnumValue %} {% endfor %} {% for image in cartitemchange.catalogItem.variant.product.images360 %} {% endfor %} {% for image in cartitemchange.catalogItem.variant.product.currentImages %} {% endfor %} {% for image in cartitemchange.catalogItem.variant.product.imagesWithoutEnumValue %} {% endfor %} {% for image in cartitemchange.catalogItem.variant.product.otherImages %} {% endfor %} {% for label in cartitemchange.catalogItem.variant.product.labels %} {% endfor %} {% for productEnumValue in cartitemchange.catalogItem.variant.product.enumValues %} {% endfor %} {% for product in cartitemchange.catalogItem.variant.product.packTemplateProducts %} {% endfor %} {% for upsell in cartitemchange.catalogItem.variant.product.availableUpsells %} {% endfor %} {% for variantChoiceStep in cartitemchange.catalogItem.variant.product.variantChoiceSteps %} {% endfor %} {% for variant in cartitemchange.catalogItem.variant.product.currentVariants %} {% endfor %} {% for variant in cartitemchange.catalogItem.variant.product.variants %} {% endfor %} {% for variant in cartitemchange.catalogItem.variant.product.variantsWithEnumValueIds %} {% endfor %} {% for video in cartitemchange.catalogItem.variant.product.videos %} {% endfor %} {{ cartitemchange.catalogItem.variant.product.trackingIds }} {% if cartitemchange.catalogItem.variant.product.currentSubName %} {{ cartitemchange.catalogItem.variant.product.currentSubName }} {% endif %} {% if cartitemchange.catalogItem.variant.product.nameSuffix %} {{ cartitemchange.catalogItem.variant.product.nameSuffix }} {% endif %} {% if cartitemchange.catalogItem.variant.product.nameSupplier %} {{ cartitemchange.catalogItem.variant.product.nameSupplier }} {% endif %} {% if cartitemchange.catalogItem.variant.product.text %} {{ cartitemchange.catalogItem.variant.product.text }} {% endif %} {% if cartitemchange.catalogItem.variant.product.attribute %} {% endif %} {% if cartitemchange.catalogItem.variant.product.brand %} {% endif %} {% if cartitemchange.catalogItem.variant.product.imageForEnumValueId %} {% endif %} {% if cartitemchange.catalogItem.variant.product.image %} {% endif %} {% if cartitemchange.catalogItem.variant.product.successor %} {% endif %} {% if cartitemchange.catalogItem.variant.product.seo %} {% endif %} {% if cartitemchange.catalogItem.variant.product.supplier %} {% endif %} {% if cartitemchange.catalogItem.variant.product.unit %} {% endif %} {% if cartitemchange.catalogItem.variant.product.warranty %} {% endif %} {% if cartitemchange.catalogItem.variant.product.contentGrid %} {{ cartitemchange.catalogItem.variant.product.contentGrid }} {% endif %} {% for upsell in cartitemchange.catalogItem.variant.availableUpsells %} {{ upsell.id }} {{ upsell.name }} {% if upsell.inCart %} ... {% endif %} {% if upsell.code %} {{ upsell.code }} {% endif %} {% if upsell.vatRate %} {{ upsell.vatRate }} {% endif %} {% if upsell.image %} {% endif %} {% if upsell.unit %} {% endif %} {% endfor %} {{ cartitemchange.catalogItem.variant.url }} {{ cartitemchange.catalogItem.variant.url.absolute }} {{ cartitemchange.catalogItem.variant.url.path }} {% if cartitemchange.catalogItem.variant.legacyRel %} {{ cartitemchange.catalogItem.variant.legacyRel }} {% endif %} {% if cartitemchange.catalogItem.variant.image %} {{ cartitemchange.catalogItem.variant.image.originalHeight }} {{ cartitemchange.catalogItem.variant.image.originalWidth }} {{ cartitemchange.catalogItem.variant.image.url }} {% if cartitemchange.catalogItem.variant.image.alt %} {{ cartitemchange.catalogItem.variant.image.alt }} {% endif %} {% if cartitemchange.catalogItem.variant.image.text %} {{ cartitemchange.catalogItem.variant.image.text }} {% endif %} {% endif %} {% endif %} {{ cartitemchange.price.vatRate }} {{ cartitemchange.price.current.currency }} {{ cartitemchange.price.current.formatted }} {{ cartitemchange.price.current.value }} {% if cartitemchange.price.discountPercent %} {{ cartitemchange.price.discountPercent }} {% endif %} {% if cartitemchange.price.discountValidTo %} {{ cartitemchange.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if cartitemchange.price.beforeDiscount %} {{ cartitemchange.price.beforeDiscount.currency }} {{ cartitemchange.price.beforeDiscount.formatted }} {{ cartitemchange.price.beforeDiscount.value }} {% endif %} {% if cartitemchange.price.discount %} {{ cartitemchange.price.discount.currency }} {{ cartitemchange.price.discount.formatted }} {{ cartitemchange.price.discount.value }} {% endif %} .. _class-file: ==== File ==== Soubor .. csv-table:: Attributy objektu **File** :header: "Název", Typ, "Popis" "bytes", "int", "Velikost v bytech" "url", "string", "Url" "usage", "`FileUsage`_", "Způsob použití" "mime", "string | null", "Mime type" "name", "string | null", "Název" Příklady: .. code-block:: html+twig {{ 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 %} .. _class-fileusage: ========= FileUsage ========= .. csv-table:: Attributy objektu **FileUsage** :header: "Název", Typ, "Popis" "archive", "bool", "Archiv" "graphic", "bool", "Grafický" "manual", "bool", "Manuál" "other", "bool", "Ostatní" "sound", "bool", "Zvuk" "specification", "bool", "Specifikace" Příklady: .. code-block:: html+twig {% if fileusage.archive %} ... {% endif %} {% if fileusage.graphic %} ... {% endif %} {% if fileusage.manual %} ... {% endif %} {% if fileusage.other %} ... {% endif %} {% if fileusage.sound %} ... {% endif %} {% if fileusage.specification %} ... {% endif %} .. _class-gift: ==== Gift ==== .. csv-table:: Attributy objektu **Gift** :header: "Název", Typ, "Popis" "id", "int", "Id" "name", "string", "Název" "item", "`Item`_", "Položka" "image", "`Image`_ | null", "Obrázek" Příklady: .. code-block:: html+twig {{ gift.id }} {{ gift.name }} {{ gift.item.id }} {{ gift.item.name }} {{ gift.item.trackingId }} {% if gift.item.digital %} ... {% endif %} {% if gift.item.sellable %} ... {% endif %} {% if gift.item.service %} ... {% endif %} {{ gift.item.availability.availableAmount }} {{ gift.item.availability.availableAmountInShowroom }} {{ gift.item.availability.availableAmountInStockroom }} {{ gift.item.availability.availableAmountInStorageCenter }} {{ gift.item.availability.hours }} {{ gift.item.availability.totalAmount }} {% if gift.item.availability.inShowroom %} ... {% endif %} {% if gift.item.availability.inStock %} ... {% endif %} {% if gift.item.availability.preorder %} ... {% endif %} {% if gift.item.availability.watchdogSupported %} ... {% endif %} {% for deliveryOption in gift.item.availability.deliveryOptions %} {{ deliveryOption.dateDelivered|date('d. m. Y H:i') }} {{ deliveryOption.dateSent|date('d. m. Y H:i') }} {{ deliveryOption.orderDeadline|date('d. m. Y H:i') }} {% if deliveryOption.timeDelivered %} {{ deliveryOption.timeDelivered }} {% endif %} {% endfor %} {% if gift.item.availability.text %} {{ gift.item.availability.text }} {% endif %} {% if gift.item.availability.dateExpected %} {{ gift.item.availability.dateExpected|date('d. m. Y H:i') }} {% endif %} {% if gift.item.availability.deliveryOption %} {{ gift.item.availability.deliveryOption.dateDelivered|date('d. m. Y H:i') }} {{ gift.item.availability.deliveryOption.dateSent|date('d. m. Y H:i') }} {{ gift.item.availability.deliveryOption.orderDeadline|date('d. m. Y H:i') }} {% if gift.item.availability.deliveryOption.timeDelivered %} {{ gift.item.availability.deliveryOption.timeDelivered }} {% endif %} {% endif %} {% for availableUpsellGroup in gift.item.availableUpsellGroups %} {{ availableUpsellGroup.id }} {{ availableUpsellGroup.name }} {% if availableUpsellGroup.singleSelection %} ... {% endif %} {% for upsell in availableUpsellGroup.upsells %} {{ upsell.id }} {{ upsell.name }} {% if upsell.inCart %} ... {% endif %} {% if upsell.code %} {{ upsell.code }} {% endif %} {% if upsell.vatRate %} {{ upsell.vatRate }} {% endif %} {% if upsell.image %} {% endif %} {% if upsell.unit %} {% endif %} {% endfor %} {% if availableUpsellGroup.code %} {{ availableUpsellGroup.code }} {% endif %} {% endfor %} {{ gift.item.product.id }} {{ gift.item.product.name }} {{ gift.item.product.trackingId }} {{ gift.item.product.dateCreated|date('d. m. Y H:i') }} {% if gift.item.product.active %} ... {% endif %} {% if gift.item.product.compared %} ... {% endif %} {% if gift.item.product.differentVariantPrices %} ... {% endif %} {% if gift.item.product.flagNew %} ... {% endif %} {% if gift.item.product.flagPromo %} ... {% endif %} {% if gift.item.product.flagSecondHand %} ... {% endif %} {% if gift.item.product.flagSellout %} ... {% endif %} {% if gift.item.product.otherDiscountApplicable %} ... {% endif %} {% if gift.item.product.soldSeparately %} ... {% endif %} {% for attributeInstance in gift.item.product.attributes %} {{ attributeInstance.name }} {{ attributeInstance.valuesHtml }} {% for attributeValueInstance in attributeInstance.values %} {% endfor %} {% if attributeInstance.description %} {{ attributeInstance.description }} {% endif %} {% if attributeInstance.group %} {% endif %} {% if attributeInstance.image %} {% endif %} {% endfor %} {% for availableUpsellGroup in gift.item.product.availableUpsellGroups %} {{ availableUpsellGroup.id }} {{ availableUpsellGroup.name }} {% if availableUpsellGroup.singleSelection %} ... {% endif %} {% for upsell in availableUpsellGroup.upsells %} {% endfor %} {% if availableUpsellGroup.code %} {{ availableUpsellGroup.code }} {% endif %} {% endfor %} {{ gift.item.product.category.id }} {{ gift.item.product.category.productCount }} {{ gift.item.product.category.productInStockCount }} {{ gift.item.product.category.totalStockQuantity }} {{ gift.item.product.category.headline }} {{ gift.item.product.category.menuName }} {{ gift.item.product.category.name }} {% if gift.item.product.category.flagErotic %} ... {% endif %} {% if gift.item.product.category.flagImportant %} ... {% endif %} {% if gift.item.product.category.noFollow %} ... {% endif %} {% for category in gift.item.product.category.subcategories %} {% endfor %} {% for video in gift.item.product.category.videos %} {% endfor %} {{ gift.item.product.category.pathIds }} {{ gift.item.product.category.pathNames }} {{ gift.item.product.category.templateAttribute }} {% if gift.item.product.category.subHeadline %} {{ gift.item.product.category.subHeadline }} {% endif %} {% if gift.item.product.category.text %} {{ gift.item.product.category.text }} {% endif %} {% if gift.item.product.category.parent %} {% endif %} {% if gift.item.product.category.image %} {% endif %} {% if gift.item.product.category.contentGrid %} {{ gift.item.product.category.contentGrid }} {% endif %} {% for category in gift.item.product.categories %} {{ category.id }} {{ category.productCount }} {{ category.productInStockCount }} {{ category.totalStockQuantity }} {{ category.headline }} {{ category.menuName }} {{ category.name }} {% if category.flagErotic %} ... {% endif %} {% if category.flagImportant %} ... {% endif %} {% if category.noFollow %} ... {% endif %} {% for category in category.subcategories %} {% endfor %} {% for video in category.videos %} {% endfor %} {{ category.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 gift.item.product.otherCategories %} {{ category.id }} {{ category.productCount }} {{ category.productInStockCount }} {{ category.totalStockQuantity }} {{ category.headline }} {{ category.menuName }} {{ category.name }} {% if category.flagErotic %} ... {% endif %} {% if category.flagImportant %} ... {% endif %} {% if category.noFollow %} ... {% endif %} {% for category in category.subcategories %} {% endfor %} {% for video in category.videos %} {% endfor %} {{ category.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 gift.item.product.files %} {{ file.bytes }} {{ file.url }} {% if file.mime %} {{ file.mime }} {% endif %} {% if file.name %} {{ file.name }} {% endif %} {% endfor %} {% for image in gift.item.product.images %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in gift.item.product.imagesWithEnumValue %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in gift.item.product.images360 %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in gift.item.product.currentImages %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in gift.item.product.imagesWithoutEnumValue %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for image in gift.item.product.otherImages %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {% for label in gift.item.product.labels %} {{ label.id }} {{ label.name }} {% if label.code %} {{ label.code }} {% endif %} {% if label.colorCode %} {{ label.colorCode }} {% endif %} {% if label.image %} {% endif %} {% endfor %} {% for productEnumValue in gift.item.product.enumValues %} {{ productEnumValue.id }} {{ productEnumValue.name }} {% if productEnumValue.selected %} ... {% endif %} {% for variant in productEnumValue.variants %} {% endfor %} {% if productEnumValue.text %} {{ productEnumValue.text }} {% endif %} {% if productEnumValue.image %} {% endif %} {% if productEnumValue.variantImage %} {% endif %} {% endfor %} {% for product in gift.item.product.packTemplateProducts %} {{ product.id }} {{ product.name }} {{ product.trackingId }} {{ product.dateCreated|date('d. m. Y H:i') }} {% if product.active %} ... {% endif %} {% if product.compared %} ... {% endif %} {% if product.differentVariantPrices %} ... {% endif %} {% if product.flagNew %} ... {% endif %} {% if product.flagPromo %} ... {% endif %} {% if product.flagSecondHand %} ... {% endif %} {% if product.flagSellout %} ... {% endif %} {% if product.otherDiscountApplicable %} ... {% endif %} {% if product.soldSeparately %} ... {% endif %} {% for 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 %} {{ gift.item.product.rating.count }} {% if gift.item.product.rating.voted %} ... {% endif %} {% if gift.item.product.rating.average %} {{ gift.item.product.rating.average }} {% endif %} {% for upsell in gift.item.product.availableUpsells %} {{ upsell.id }} {{ upsell.name }} {% if upsell.inCart %} ... {% endif %} {% if upsell.code %} {{ upsell.code }} {% endif %} {% if upsell.vatRate %} {{ upsell.vatRate }} {% endif %} {% if upsell.image %} {% endif %} {% if upsell.unit %} {% endif %} {% endfor %} {{ gift.item.product.url }} {{ gift.item.product.url.absolute }} {{ gift.item.product.url.path }} {% for variantChoiceStep in gift.item.product.variantChoiceSteps %} {{ variantChoiceStep.headline }} {{ variantChoiceStep.inputName }} {{ variantChoiceStep.mode }} {% if variantChoiceStep.final %} ... {% endif %} {% for variantChoice in variantChoiceStep.choices %} {% endfor %} {% if variantChoiceStep.description %} {{ variantChoiceStep.description }} {% endif %} {% if variantChoiceStep.infoDescription %} {{ variantChoiceStep.infoDescription }} {% endif %} {% if variantChoiceStep.messageEmpty %} {{ variantChoiceStep.messageEmpty }} {% endif %} {% if variantChoiceStep.placeholder %} {{ variantChoiceStep.placeholder }} {% endif %} {% if variantChoiceStep.icon %} {% endif %} {% if variantChoiceStep.infoIcon %} {% endif %} {% if variantChoiceStep.info %} {% endif %} {% if variantChoiceStep.selectedChoice %} {% endif %} {% endfor %} {% for variant in gift.item.product.currentVariants %} {{ variant.id }} {{ variant.name }} {{ variant.trackingId }} {% if variant.active %} ... {% endif %} {% if variant.selected %} ... {% endif %} {% for availableUpsellGroup in variant.availableUpsellGroups %} {% endfor %} {% for enumValue in variant.enumValues %} {% endfor %} {% for image in variant.images %} {% endfor %} {% for upsell in variant.availableUpsells %} {% endfor %} {% if variant.legacyRel %} {{ variant.legacyRel }} {% endif %} {% if variant.image %} {% endif %} {% endfor %} {% for variant in gift.item.product.variants %} {{ variant.id }} {{ variant.name }} {{ variant.trackingId }} {% if variant.active %} ... {% endif %} {% if variant.selected %} ... {% endif %} {% for availableUpsellGroup in variant.availableUpsellGroups %} {% endfor %} {% for enumValue in variant.enumValues %} {% endfor %} {% for image in variant.images %} {% endfor %} {% for upsell in variant.availableUpsells %} {% endfor %} {% if variant.legacyRel %} {{ variant.legacyRel }} {% endif %} {% if variant.image %} {% endif %} {% endfor %} {% for variant in gift.item.product.variantsWithEnumValueIds %} {{ variant.id }} {{ variant.name }} {{ variant.trackingId }} {% if variant.active %} ... {% endif %} {% if variant.selected %} ... {% endif %} {% for availableUpsellGroup in variant.availableUpsellGroups %} {% endfor %} {% for enumValue in variant.enumValues %} {% endfor %} {% for image in variant.images %} {% endfor %} {% for upsell in variant.availableUpsells %} {% endfor %} {% if variant.legacyRel %} {{ variant.legacyRel }} {% endif %} {% if variant.image %} {% endif %} {% endfor %} {{ gift.item.product.variantType.id }} {{ gift.item.product.variantType.name }} {% for video in gift.item.product.videos %} {{ video.embeddedUrl }} {% if video.name %} {{ video.name }} {% endif %} {% if video.image %} {% endif %} {% endfor %} {{ gift.item.product.trackingIds }} {% if gift.item.product.currentSubName %} {{ gift.item.product.currentSubName }} {% endif %} {% if gift.item.product.nameSuffix %} {{ gift.item.product.nameSuffix }} {% endif %} {% if gift.item.product.nameSupplier %} {{ gift.item.product.nameSupplier }} {% endif %} {% if gift.item.product.text %} {{ gift.item.product.text }} {% endif %} {% if gift.item.product.attribute %} {{ gift.item.product.attribute.name }} {{ gift.item.product.attribute.valuesHtml }} {% for attributeValueInstance in gift.item.product.attribute.values %} {% endfor %} {% if gift.item.product.attribute.description %} {{ gift.item.product.attribute.description }} {% endif %} {% if gift.item.product.attribute.group %} {% endif %} {% if gift.item.product.attribute.image %} {% endif %} {% endif %} {% if gift.item.product.brand %} {{ gift.item.product.brand.id }} {{ gift.item.product.brand.headline }} {{ gift.item.product.brand.name }} {% if gift.item.product.brand.flagImportant %} ... {% endif %} {% for category in gift.item.product.brand.categories %} {% endfor %} {% if gift.item.product.brand.code %} {{ gift.item.product.brand.code }} {% endif %} {% if gift.item.product.brand.web %} {{ gift.item.product.brand.web }} {% endif %} {% if gift.item.product.brand.text %} {{ gift.item.product.brand.text }} {% endif %} {% if gift.item.product.brand.image %} {% endif %} {% if gift.item.product.brand.seo %} {% endif %} {% if gift.item.product.brand.contentGrid %} {{ gift.item.product.brand.contentGrid }} {% endif %} {% endif %} {% if gift.item.product.imageForEnumValueId %} {{ gift.item.product.imageForEnumValueId.originalHeight }} {{ gift.item.product.imageForEnumValueId.originalWidth }} {{ gift.item.product.imageForEnumValueId.url }} {% if gift.item.product.imageForEnumValueId.alt %} {{ gift.item.product.imageForEnumValueId.alt }} {% endif %} {% if gift.item.product.imageForEnumValueId.text %} {{ gift.item.product.imageForEnumValueId.text }} {% endif %} {% endif %} {% if gift.item.product.image %} {{ gift.item.product.image.originalHeight }} {{ gift.item.product.image.originalWidth }} {{ gift.item.product.image.url }} {% if gift.item.product.image.alt %} {{ gift.item.product.image.alt }} {% endif %} {% if gift.item.product.image.text %} {{ gift.item.product.image.text }} {% endif %} {% endif %} {% if gift.item.product.successor %} {{ gift.item.product.successor.id }} {{ gift.item.product.successor.name }} {{ gift.item.product.successor.trackingId }} {{ gift.item.product.successor.dateCreated|date('d. m. Y H:i') }} {% if gift.item.product.successor.active %} ... {% endif %} {% if gift.item.product.successor.compared %} ... {% endif %} {% if gift.item.product.successor.differentVariantPrices %} ... {% endif %} {% if gift.item.product.successor.flagNew %} ... {% endif %} {% if gift.item.product.successor.flagPromo %} ... {% endif %} {% if gift.item.product.successor.flagSecondHand %} ... {% endif %} {% if gift.item.product.successor.flagSellout %} ... {% endif %} {% if gift.item.product.successor.otherDiscountApplicable %} ... {% endif %} {% if gift.item.product.successor.soldSeparately %} ... {% endif %} {% for attributeInstance in gift.item.product.successor.attributes %} {% endfor %} {% for availableUpsellGroup in gift.item.product.successor.availableUpsellGroups %} {% endfor %} {% for category in gift.item.product.successor.categories %} {% endfor %} {% for category in gift.item.product.successor.otherCategories %} {% endfor %} {% for file in gift.item.product.successor.files %} {% endfor %} {% for image in gift.item.product.successor.images %} {% endfor %} {% for image in gift.item.product.successor.imagesWithEnumValue %} {% endfor %} {% for image in gift.item.product.successor.images360 %} {% endfor %} {% for image in gift.item.product.successor.currentImages %} {% endfor %} {% for image in gift.item.product.successor.imagesWithoutEnumValue %} {% endfor %} {% for image in gift.item.product.successor.otherImages %} {% endfor %} {% for label in gift.item.product.successor.labels %} {% endfor %} {% for productEnumValue in gift.item.product.successor.enumValues %} {% endfor %} {% for product in gift.item.product.successor.packTemplateProducts %} {% endfor %} {% for upsell in gift.item.product.successor.availableUpsells %} {% endfor %} {% for variantChoiceStep in gift.item.product.successor.variantChoiceSteps %} {% endfor %} {% for variant in gift.item.product.successor.currentVariants %} {% endfor %} {% for variant in gift.item.product.successor.variants %} {% endfor %} {% for variant in gift.item.product.successor.variantsWithEnumValueIds %} {% endfor %} {% for video in gift.item.product.successor.videos %} {% endfor %} {{ gift.item.product.successor.trackingIds }} {% if gift.item.product.successor.currentSubName %} {{ gift.item.product.successor.currentSubName }} {% endif %} {% if gift.item.product.successor.nameSuffix %} {{ gift.item.product.successor.nameSuffix }} {% endif %} {% if gift.item.product.successor.nameSupplier %} {{ gift.item.product.successor.nameSupplier }} {% endif %} {% if gift.item.product.successor.text %} {{ gift.item.product.successor.text }} {% endif %} {% if gift.item.product.successor.attribute %} {% endif %} {% if gift.item.product.successor.brand %} {% endif %} {% if gift.item.product.successor.imageForEnumValueId %} {% endif %} {% if gift.item.product.successor.image %} {% endif %} {% if gift.item.product.successor.seo %} {% endif %} {% if gift.item.product.successor.supplier %} {% endif %} {% if gift.item.product.successor.unit %} {% endif %} {% if gift.item.product.successor.variant %} {% endif %} {% if gift.item.product.successor.warranty %} {% endif %} {% if gift.item.product.successor.contentGrid %} {{ gift.item.product.successor.contentGrid }} {% endif %} {% endif %} {% if gift.item.product.seo %} {% if gift.item.product.seo.description %} {{ gift.item.product.seo.description }} {% endif %} {% if gift.item.product.seo.keywords %} {{ gift.item.product.seo.keywords }} {% endif %} {% if gift.item.product.seo.title %} {{ gift.item.product.seo.title }} {% endif %} {% endif %} {% if gift.item.product.supplier %} {{ gift.item.product.supplier.id }} {{ gift.item.product.supplier.name }} {% endif %} {% if gift.item.product.unit %} {{ gift.item.product.unit.name }} {% endif %} {% if gift.item.product.variant %} {{ gift.item.product.variant.id }} {{ gift.item.product.variant.name }} {{ gift.item.product.variant.trackingId }} {% if gift.item.product.variant.active %} ... {% endif %} {% if gift.item.product.variant.selected %} ... {% endif %} {% for availableUpsellGroup in gift.item.product.variant.availableUpsellGroups %} {% endfor %} {% for enumValue in gift.item.product.variant.enumValues %} {% endfor %} {% for image in gift.item.product.variant.images %} {% endfor %} {% for upsell in gift.item.product.variant.availableUpsells %} {% endfor %} {% if gift.item.product.variant.legacyRel %} {{ gift.item.product.variant.legacyRel }} {% endif %} {% if gift.item.product.variant.image %} {% endif %} {% endif %} {% if gift.item.product.warranty %} {{ gift.item.product.warranty.months }} {% endif %} {% if gift.item.product.contentGrid %} {{ gift.item.product.contentGrid }} {% endif %} {% for upsell in gift.item.availableUpsells %} {{ upsell.id }} {{ upsell.name }} {% if upsell.inCart %} ... {% endif %} {{ upsell.category.id }} {{ upsell.category.productCount }} {{ upsell.category.productInStockCount }} {{ upsell.category.totalStockQuantity }} {{ upsell.category.headline }} {{ upsell.category.menuName }} {{ upsell.category.name }} {% if upsell.category.flagErotic %} ... {% endif %} {% if upsell.category.flagImportant %} ... {% endif %} {% if upsell.category.noFollow %} ... {% endif %} {% for category in upsell.category.subcategories %} {% endfor %} {% for video in upsell.category.videos %} {% endfor %} {{ upsell.category.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 %} {% endif %} {% if upsell.category.image %} {% endif %} {% if upsell.category.contentGrid %} {{ upsell.category.contentGrid }} {% endif %} {{ upsell.price.vatRate }} {% if upsell.price.discountPercent %} {{ upsell.price.discountPercent }} {% endif %} {% if upsell.price.discountValidTo %} {{ upsell.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if upsell.price.beforeDiscount %} {% endif %} {% if upsell.price.discount %} {% endif %} {{ upsell.product.id }} {{ upsell.product.name }} {{ upsell.product.trackingId }} {{ upsell.product.dateCreated|date('d. m. Y H:i') }} {% if upsell.product.active %} ... {% endif %} {% if upsell.product.compared %} ... {% endif %} {% if upsell.product.differentVariantPrices %} ... {% endif %} {% if upsell.product.flagNew %} ... {% endif %} {% if upsell.product.flagPromo %} ... {% endif %} {% if upsell.product.flagSecondHand %} ... {% endif %} {% if upsell.product.flagSellout %} ... {% endif %} {% if upsell.product.otherDiscountApplicable %} ... {% endif %} {% if upsell.product.soldSeparately %} ... {% endif %} {% for attributeInstance in upsell.product.attributes %} {% endfor %} {% for availableUpsellGroup in upsell.product.availableUpsellGroups %} {% endfor %} {% for category in upsell.product.categories %} {% endfor %} {% for category in upsell.product.otherCategories %} {% endfor %} {% for file in upsell.product.files %} {% endfor %} {% for image in upsell.product.images %} {% endfor %} {% for image in upsell.product.imagesWithEnumValue %} {% endfor %} {% for image in upsell.product.images360 %} {% endfor %} {% for image in upsell.product.currentImages %} {% endfor %} {% for image in upsell.product.imagesWithoutEnumValue %} {% endfor %} {% for image in upsell.product.otherImages %} {% endfor %} {% for label in upsell.product.labels %} {% endfor %} {% for productEnumValue in upsell.product.enumValues %} {% endfor %} {% for product in upsell.product.packTemplateProducts %} {% endfor %} {% for variantChoiceStep in upsell.product.variantChoiceSteps %} {% endfor %} {% for variant in upsell.product.currentVariants %} {% endfor %} {% for variant in upsell.product.variants %} {% endfor %} {% for variant in upsell.product.variantsWithEnumValueIds %} {% endfor %} {% for video in upsell.product.videos %} {% endfor %} {{ upsell.product.trackingIds }} {% if upsell.product.currentSubName %} {{ upsell.product.currentSubName }} {% endif %} {% if upsell.product.nameSuffix %} {{ upsell.product.nameSuffix }} {% endif %} {% if upsell.product.nameSupplier %} {{ upsell.product.nameSupplier }} {% endif %} {% if upsell.product.text %} {{ upsell.product.text }} {% endif %} {% if upsell.product.attribute %} {% endif %} {% if upsell.product.brand %} {% endif %} {% if upsell.product.imageForEnumValueId %} {% endif %} {% if upsell.product.image %} {% endif %} {% if upsell.product.successor %} {% endif %} {% if upsell.product.seo %} {% endif %} {% if upsell.product.supplier %} {% endif %} {% if upsell.product.unit %} {% endif %} {% if upsell.product.variant %} {% endif %} {% if upsell.product.warranty %} {% endif %} {% if upsell.product.contentGrid %} {{ upsell.product.contentGrid }} {% endif %} {{ upsell.group.id }} {{ upsell.group.requiredNoteMaximumLength }} {{ upsell.group.name }} {% if upsell.group.requiredNote %} ... {% endif %} {% if upsell.group.requiredUpload %} ... {% endif %} {% if upsell.group.singleSelection %} ... {% endif %} {% if upsell.group.text %} {{ upsell.group.text }} {% endif %} {% if upsell.group.uploadInput %} {{ upsell.group.uploadInput }} {% endif %} {% if upsell.code %} {{ upsell.code }} {% endif %} {% if upsell.vatRate %} {{ upsell.vatRate }} {% endif %} {% if upsell.image %} {{ upsell.image.originalHeight }} {{ upsell.image.originalWidth }} {{ upsell.image.url }} {% if upsell.image.alt %} {{ upsell.image.alt }} {% endif %} {% if upsell.image.text %} {{ upsell.image.text }} {% endif %} {% endif %} {% if upsell.unit %} {{ upsell.unit.name }} {% endif %} {% endfor %} {{ gift.item.trackingIds }} {{ gift.item.storageLocations }} {% if gift.item.packageHeight %} {{ gift.item.packageHeight }} {% endif %} {% if gift.item.packageLength %} {{ gift.item.packageLength }} {% endif %} {% if gift.item.packageWeight %} {{ gift.item.packageWeight }} {% endif %} {% if gift.item.packageWidth %} {{ gift.item.packageWidth }} {% endif %} {% if gift.item.code %} {{ gift.item.code }} {% endif %} {% if gift.item.bundle %} {% if gift.item.bundle.multiPack %} ... {% endif %} {% if gift.item.bundle.price %} {{ gift.item.bundle.price.vatRate }} {% if gift.item.bundle.price.discountPercent %} {{ gift.item.bundle.price.discountPercent }} {% endif %} {% if gift.item.bundle.price.discountValidTo %} {{ gift.item.bundle.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if gift.item.bundle.price.beforeDiscount %} {% endif %} {% if gift.item.bundle.price.discount %} {% endif %} {% endif %} {% endif %} {% if gift.item.cheapestDelivery %} {{ gift.item.cheapestDelivery.inputId }} {{ gift.item.cheapestDelivery.name }} {{ gift.item.cheapestDelivery.vatRate }} {% if gift.item.cheapestDelivery.branchRequired %} ... {% endif %} {% if gift.item.cheapestDelivery.currier %} ... {% endif %} {% if gift.item.cheapestDelivery.dateGuaranteed %} ... {% endif %} {% if gift.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %} {% if gift.item.cheapestDelivery.deliveryToAddress %} ... {% endif %} {% if gift.item.cheapestDelivery.free %} ... {% endif %} {% if gift.item.cheapestDelivery.pickup %} ... {% endif %} {% if gift.item.cheapestDelivery.selected %} ... {% endif %} {{ gift.item.cheapestDelivery.price.vatRate }} {% if gift.item.cheapestDelivery.price.discountPercent %} {{ gift.item.cheapestDelivery.price.discountPercent }} {% endif %} {% if gift.item.cheapestDelivery.price.discountValidTo %} {{ gift.item.cheapestDelivery.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if gift.item.cheapestDelivery.price.beforeDiscount %} {% endif %} {% if gift.item.cheapestDelivery.price.discount %} {% endif %} {% if gift.item.cheapestDelivery.text %} {{ gift.item.cheapestDelivery.text }} {% endif %} {% if gift.item.cheapestDelivery.branch %} {{ gift.item.cheapestDelivery.branch.code }} {{ gift.item.cheapestDelivery.branch.name }} {% endif %} {% if gift.item.cheapestDelivery.carrier %} {{ gift.item.cheapestDelivery.carrier.code }} {{ gift.item.cheapestDelivery.carrier.name }} {% endif %} {% if gift.item.cheapestDelivery.deliveryDate %} {{ gift.item.cheapestDelivery.deliveryDate.dateDelivered|date('d. m. Y H:i') }} {{ gift.item.cheapestDelivery.deliveryDate.dateSent|date('d. m. Y H:i') }} {{ gift.item.cheapestDelivery.deliveryDate.orderDeadline|date('d. m. Y H:i') }} {% if gift.item.cheapestDelivery.deliveryDate.timeDelivered %} {{ gift.item.cheapestDelivery.deliveryDate.timeDelivered }} {% endif %} {% endif %} {% if gift.item.cheapestDelivery.packageType %} {{ gift.item.cheapestDelivery.packageType.code }} {% endif %} {% if gift.item.cheapestDelivery.image %} {{ gift.item.cheapestDelivery.image.originalHeight }} {{ gift.item.cheapestDelivery.image.originalWidth }} {{ gift.item.cheapestDelivery.image.url }} {% if gift.item.cheapestDelivery.image.alt %} {{ gift.item.cheapestDelivery.image.alt }} {% endif %} {% if gift.item.cheapestDelivery.image.text %} {{ gift.item.cheapestDelivery.image.text }} {% endif %} {% endif %} {% endif %} {% if gift.item.freeDelivery %} {{ gift.item.freeDelivery.name }} {{ gift.item.freeDelivery.vatRate }} {{ gift.item.freeDelivery.payment.code }} {{ gift.item.freeDelivery.payment.inputId }} {{ gift.item.freeDelivery.payment.name }} {{ gift.item.freeDelivery.payment.url }} {{ gift.item.freeDelivery.payment.vatRate }} {% if gift.item.freeDelivery.payment.free %} ... {% endif %} {% if gift.item.freeDelivery.payment.inAdvance %} ... {% endif %} {% if gift.item.freeDelivery.payment.selected %} ... {% endif %} {% if gift.item.freeDelivery.payment.vs %} {{ gift.item.freeDelivery.payment.vs }} {% endif %} {% if gift.item.freeDelivery.payment.qRCodeHTML %} {{ gift.item.freeDelivery.payment.qRCodeHTML }} {% endif %} {% if gift.item.freeDelivery.payment.text %} {{ gift.item.freeDelivery.payment.text }} {% endif %} {% if gift.item.freeDelivery.payment.bankAccount %} {% endif %} {% if gift.item.freeDelivery.payment.image %} {% endif %} {{ gift.item.freeDelivery.transport.inputId }} {{ gift.item.freeDelivery.transport.name }} {{ gift.item.freeDelivery.transport.vatRate }} {% if gift.item.freeDelivery.transport.branchRequired %} ... {% endif %} {% if gift.item.freeDelivery.transport.currier %} ... {% endif %} {% if gift.item.freeDelivery.transport.dateGuaranteed %} ... {% endif %} {% if gift.item.freeDelivery.transport.deliveryAddressRequired %} ... {% endif %} {% if gift.item.freeDelivery.transport.deliveryToAddress %} ... {% endif %} {% if gift.item.freeDelivery.transport.free %} ... {% endif %} {% if gift.item.freeDelivery.transport.pickup %} ... {% endif %} {% if gift.item.freeDelivery.transport.selected %} ... {% endif %} {% if gift.item.freeDelivery.transport.text %} {{ gift.item.freeDelivery.transport.text }} {% endif %} {% if gift.item.freeDelivery.transport.branch %} {% endif %} {% if gift.item.freeDelivery.transport.carrier %} {% endif %} {% if gift.item.freeDelivery.transport.deliveryDate %} {% endif %} {% if gift.item.freeDelivery.transport.packageType %} {% endif %} {% if gift.item.freeDelivery.transport.image %} {% endif %} {{ gift.item.freeDelivery.price.vatRate }} {% if gift.item.freeDelivery.price.discountPercent %} {{ gift.item.freeDelivery.price.discountPercent }} {% endif %} {% if gift.item.freeDelivery.price.discountValidTo %} {{ gift.item.freeDelivery.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if gift.item.freeDelivery.price.beforeDiscount %} {% endif %} {% if gift.item.freeDelivery.price.discount %} {% endif %} {% if gift.item.freeDelivery.id %} {{ gift.item.freeDelivery.id }} {% endif %} {% if gift.item.freeDelivery.freeLimit %} {{ gift.item.freeDelivery.freeLimit.percent }} {% endif %} {% endif %} {% if gift.item.closestFreeDelivery %} {{ gift.item.closestFreeDelivery.name }} {{ gift.item.closestFreeDelivery.vatRate }} {{ gift.item.closestFreeDelivery.payment.code }} {{ gift.item.closestFreeDelivery.payment.inputId }} {{ gift.item.closestFreeDelivery.payment.name }} {{ gift.item.closestFreeDelivery.payment.url }} {{ gift.item.closestFreeDelivery.payment.vatRate }} {% if gift.item.closestFreeDelivery.payment.free %} ... {% endif %} {% if gift.item.closestFreeDelivery.payment.inAdvance %} ... {% endif %} {% if gift.item.closestFreeDelivery.payment.selected %} ... {% endif %} {% if gift.item.closestFreeDelivery.payment.vs %} {{ gift.item.closestFreeDelivery.payment.vs }} {% endif %} {% if gift.item.closestFreeDelivery.payment.qRCodeHTML %} {{ gift.item.closestFreeDelivery.payment.qRCodeHTML }} {% endif %} {% if gift.item.closestFreeDelivery.payment.text %} {{ gift.item.closestFreeDelivery.payment.text }} {% endif %} {% if gift.item.closestFreeDelivery.payment.bankAccount %} {% endif %} {% if gift.item.closestFreeDelivery.payment.image %} {% endif %} {{ gift.item.closestFreeDelivery.transport.inputId }} {{ gift.item.closestFreeDelivery.transport.name }} {{ gift.item.closestFreeDelivery.transport.vatRate }} {% if gift.item.closestFreeDelivery.transport.branchRequired %} ... {% endif %} {% if gift.item.closestFreeDelivery.transport.currier %} ... {% endif %} {% if gift.item.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %} {% if gift.item.closestFreeDelivery.transport.deliveryAddressRequired %} ... {% endif %} {% if gift.item.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %} {% if gift.item.closestFreeDelivery.transport.free %} ... {% endif %} {% if gift.item.closestFreeDelivery.transport.pickup %} ... {% endif %} {% if gift.item.closestFreeDelivery.transport.selected %} ... {% endif %} {% if gift.item.closestFreeDelivery.transport.text %} {{ gift.item.closestFreeDelivery.transport.text }} {% endif %} {% if gift.item.closestFreeDelivery.transport.branch %} {% endif %} {% if gift.item.closestFreeDelivery.transport.carrier %} {% endif %} {% if gift.item.closestFreeDelivery.transport.deliveryDate %} {% endif %} {% if gift.item.closestFreeDelivery.transport.packageType %} {% endif %} {% if gift.item.closestFreeDelivery.transport.image %} {% endif %} {{ gift.item.closestFreeDelivery.price.vatRate }} {% if gift.item.closestFreeDelivery.price.discountPercent %} {{ gift.item.closestFreeDelivery.price.discountPercent }} {% endif %} {% if gift.item.closestFreeDelivery.price.discountValidTo %} {{ gift.item.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if gift.item.closestFreeDelivery.price.beforeDiscount %} {% endif %} {% if gift.item.closestFreeDelivery.price.discount %} {% endif %} {% if gift.item.closestFreeDelivery.id %} {{ gift.item.closestFreeDelivery.id }} {% endif %} {% if gift.item.closestFreeDelivery.freeLimit %} {{ gift.item.closestFreeDelivery.freeLimit.percent }} {% endif %} {% endif %} {% if gift.item.packageDimensions %} {{ gift.item.packageDimensions }} {{ gift.item.packageDimensions.height }} {{ gift.item.packageDimensions.length }} {{ gift.item.packageDimensions.width }} {{ gift.item.packageDimensions.unit }} {% endif %} {% if gift.item.image %} {{ gift.item.image.originalHeight }} {{ gift.item.image.originalWidth }} {{ gift.item.image.url }} {% if gift.item.image.alt %} {{ gift.item.image.alt }} {% endif %} {% if gift.item.image.text %} {{ gift.item.image.text }} {% endif %} {% endif %} {% if gift.item.price %} {{ gift.item.price.vatRate }} {{ gift.item.price.current.currency }} {{ gift.item.price.current.formatted }} {{ gift.item.price.current.value }} {% if gift.item.price.discountPercent %} {{ gift.item.price.discountPercent }} {% endif %} {% if gift.item.price.discountValidTo %} {{ gift.item.price.discountValidTo|date('d. m. Y H:i') }} {% endif %} {% if gift.item.price.beforeDiscount %} {{ gift.item.price.beforeDiscount.currency }} {{ gift.item.price.beforeDiscount.formatted }} {{ gift.item.price.beforeDiscount.value }} {% endif %} {% if gift.item.price.discount %} {{ gift.item.price.discount.currency }} {{ gift.item.price.discount.formatted }} {{ gift.item.price.discount.value }} {% endif %} {% endif %} {% if gift.item.url %} {{ gift.item.url }} {{ gift.item.url.absolute }} {{ gift.item.url.path }} {% endif %} {% if gift.item.variant %} {{ gift.item.variant.id }} {{ gift.item.variant.name }} {{ gift.item.variant.trackingId }} {% if gift.item.variant.active %} ... {% endif %} {% if gift.item.variant.selected %} ... {% endif %} {% for availableUpsellGroup in gift.item.variant.availableUpsellGroups %} {{ availableUpsellGroup.id }} {{ availableUpsellGroup.name }} {% if availableUpsellGroup.singleSelection %} ... {% endif %} {% for upsell in availableUpsellGroup.upsells %} {% endfor %} {% if availableUpsellGroup.code %} {{ availableUpsellGroup.code }} {% endif %} {% endfor %} {% for enumValue in gift.item.variant.enumValues %} {{ enumValue.id }} {{ enumValue.name }} {% if enumValue.text %} {{ enumValue.text }} {% endif %} {% if enumValue.image %} {% endif %} {% endfor %} {% for image in gift.item.variant.images %} {{ image.originalHeight }} {{ image.originalWidth }} {{ image.url }} {% if image.alt %} {{ image.alt }} {% endif %} {% if image.text %} {{ image.text }} {% endif %} {% endfor %} {{ gift.item.variant.product.id }} {{ gift.item.variant.product.name }} {{ gift.item.variant.product.trackingId }} {{ gift.item.variant.product.dateCreated|date('d. m. Y H:i') }} {% if gift.item.variant.product.active %} ... {% endif %} {% if gift.item.variant.product.compared %} ... {% endif %} {% if gift.item.variant.product.differentVariantPrices %} ... {% endif %} {% if gift.item.variant.product.flagNew %} ... {% endif %} {% if gift.item.variant.product.flagPromo %} ... {% endif %} {% if gift.item.variant.product.flagSecondHand %} ... {% endif %} {% if gift.item.variant.product.flagSellout %} ... {% endif %} {% if gift.item.variant.product.otherDiscountApplicable %} ... {% endif %} {% if gift.item.variant.product.soldSeparately %} ... {% endif %} {% for attributeInstance in gift.item.variant.product.attributes %} {% endfor %} {% for availableUpsellGroup in gift.item.variant.product.availableUpsellGroups %} {% endfor %} {% for category in gift.item.variant.product.categories %} {% endfor %} {% for category in gift.item.variant.product.otherCategories %} {% endfor %} {% for file in gift.item.variant.product.files %} {% endfor %} {% for image in gift.item.variant.product.images %} {% endfor %} {% for image in gift.item.variant.product.imagesWithEnumValue %} {% endfor %} {% for image in gift.item.variant.product.images360 %} {% endfor %} {% for image in gift.item.variant.product.currentImages %} {% endfor %} {% for image in gift.item.variant.product.imagesWithoutEnumValue %} {% endfor %} {% for image in gift.item.variant.product.otherImages %} {% endfor %} {% for label in gift.item.variant.product.labels %} {% endfor %} {% for productEnumValue in gift.item.variant.product.enumValues %} {% endfor %} {% for product in gift.item.variant.product.packTemplateProducts %} {% endfor %} {% for upsell in gift.item.variant.product.availableUpsells %} {% endfor %} {% for variantChoiceStep in gift.item.variant.product.variantChoiceSteps %} {% endfor %} {% for variant in gift.item.variant.product.currentVariants %} {% endfor %} {% for variant in gift.item.variant.product.variants %} {% endfor %} {% for variant in gift.item.variant.product.variantsWithEnumValueIds %} {% endfor %} {% for video in gift.item.variant.product.videos %} {% endfor %} {{ gift.item.variant.product.trackingIds }} {% if gift.item.variant.product.currentSubName %} {{ gift.item.variant.product.currentSubName }} {% endif %} {% if gift.item.variant.product.nameSuffix %} {{ gift.item.variant.product.nameSuffix }} {% endif %} {% if gift.item.variant.product.nameSupplier %} {{ gift.item.variant.product.nameSupplier }} {% endif %} {% if gift.item.variant.product.text %} {{ gift.item.variant.product.text }} {% endif %} {% if gift.item.variant.product.attribute %} {% endif %} {% if gift.item.variant.product.brand %} {% endif %} {% if gift.item.variant.product.imageForEnumValueId %} {% endif %} {% if gift.item.variant.product.image %} {% endif %} {% if gift.item.variant.product.successor %} {% endif %} {% if gift.item.variant.product.seo %} {% endif %} {% if gift.item.variant.product.supplier %} {% endif %} {% if gift.item.variant.product.unit %} {% endif %} {% if gift.item.variant.product.warranty %} {% endif %} {% if gift.item.variant.product.contentGrid %} {{ gift.item.variant.product.contentGrid }} {% endif %} {% for upsell in gift.item.variant.availableUpsells %} {{ upsell.id }} {{ upsell.name }} {% if upsell.inCart %} ... {% endif %} {% if upsell.code %} {{ upsell.code }} {% endif %} {% if upsell.vatRate %} {{ upsell.vatRate }} {% endif %} {% if upsell.image %} {% endif %} {% if upsell.unit %} {% endif %} {% endfor %} {{ gift.item.variant.url }} {{ gift.item.variant.url.absolute }} {{ gift.item.variant.url.path }} {% if gift.item.variant.legacyRel %} {{ gift.item.variant.legacyRel }} {% endif %} {% if gift.item.variant.image %} {{ gift.item.variant.image.originalHeight }} {{ gift.item.variant.image.originalWidth }} {{ gift.item.variant.image.url }} {% if gift.item.variant.image.alt %} {{ gift.item.variant.image.alt }} {% endif %} {% if gift.item.variant.image.text %} {{ gift.item.variant.image.text }} {% endif %} {% endif %} {% endif %} {% if gift.image %} {{ gift.image.originalHeight }} {{ gift.image.originalWidth }} {{ gift.image.url }} {% if gift.image.alt %} {{ gift.image.alt }} {% endif %} {% if gift.image.text %} {{ gift.image.text }} {% endif %} {% endif %} .. _class-image: ===== Image ===== Obrázky pokud možno nikdy nevypisujeme přes