Hallo zusammen,
kann vllt. jemand sagen, wie man den „Streichpreis“ im Bereich „Verkaufskanäle“ exportieren kann?
Ich würde gerne in Google Shopping die Sonderpreise anzeigen. Im Shopware 5 war es mit dem Pseudoprice kein Problem. In SW6 finde ich trotz guter Recherche keine Lösung
Weiß es echt niemand ?! Kann ich mir nicht vorstellen…
Hab die Lösung gefunden. Thema geschlossen.
Hallo,
stehe vor dem selben Problem. Wie hast du das gelöst.
Danke schon mal im voraus.
LG aus Österreich
l.brue
15. Februar 2023 um 09:05
5
Hallo AkustivProjekt,
es ist zwar schon eine Weile her, aber ich stand vor dem gleichen Problem.
Meine Lösung für csv-Dateien:
"{% if product.calculatedPrice.listPrice.price is defined and product.calculatedPrice.listPrice.price > product.calculatedPrice.unitPrice %}{{product.calculatedPrice.listPrice.price|number_format(context.currency.itemRounding.decimals, '.', '')}} {{ context.currency.isoCode }}{%- endif -%}",{#- Standardpreis -#}
"{% if product.calculatedPrice.listPrice.price is defined and product.calculatedPrice.listPrice.price > product.calculatedPrice.unitPrice %}
{{ product.calculatedPrice.unitPrice|number_format(context.currency.decimalPrecision, '.', '') }} {{ context.currency.isoCode }}
{%- endif -%}",{#- Salepreis -#}
@kyote hat eine Lösung für XML-Dateien: https://forum.shopware.com/t/streichpreis-im-google-shopping-feed/94905