# Verkaufskanäle - Streichpreis exportieren

**URL:** https://forum.shopware.com/t/verkaufskanaele-streichpreis-exportieren/92327
**Category:** Shopware 6 (German)
**Created:** [12. Januar 2022 um 08:40 UTC](https://forum.shopware.com/t/verkaufskanaele-streichpreis-exportieren/92327 "2022-01-12T08:40:21Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![al.miller](https://avatars.discourse-cdn.com/v4/letter/a/8edcca/32.png) [@al.miller](https://forum.shopware.com/u/al.miller)
#### Post date: [12. Januar 2022 um 08:40 UTC](https://forum.shopware.com/t/verkaufskanaele-streichpreis-exportieren/92327/1 "2022-01-12T08:40:21Z")

</div>

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 ☹

---

<div class="post-metadata">

### Author: ![al.miller](https://avatars.discourse-cdn.com/v4/letter/a/8edcca/32.png) [@al.miller](https://forum.shopware.com/u/al.miller)
#### Post date: [1. Februar 2022 um 08:36 UTC](https://forum.shopware.com/t/verkaufskanaele-streichpreis-exportieren/92327/2 "2022-02-01T08:36:48Z")

</div>

Weiß es echt niemand ?! Kann ich mir nicht vorstellen…

---

<div class="post-metadata">

### Author: ![al.miller](https://avatars.discourse-cdn.com/v4/letter/a/8edcca/32.png) [@al.miller](https://forum.shopware.com/u/al.miller)
#### Post date: [5. Februar 2022 um 09:57 UTC](https://forum.shopware.com/t/verkaufskanaele-streichpreis-exportieren/92327/3 "2022-02-05T09:57:45Z")

</div>

Hab die Lösung gefunden. Thema geschlossen.

---

<div class="post-metadata">

### Author: ![AkustikProjekt](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.shopware.com/akustikprojekt/32/18382_2.png) [@AkustikProjekt](https://forum.shopware.com/u/AkustikProjekt)
#### Post date: [26. August 2022 um 15:49 UTC](https://forum.shopware.com/t/verkaufskanaele-streichpreis-exportieren/92327/4 "2022-08-26T15:49:10Z")

</div>

Hallo,

stehe vor dem selben Problem. Wie hast du das gelöst.

Danke schon mal im voraus.

LG aus Österreich

---

<div class="post-metadata">

### Author: ![l.brue](https://avatars.discourse-cdn.com/v4/letter/l/3d9bf3/32.png) [@l.brue](https://forum.shopware.com/u/l.brue)
#### Post date: [15. Februar 2023 um 09:05 UTC](https://forum.shopware.com/t/verkaufskanaele-streichpreis-exportieren/92327/5 "2023-02-15T09:05:30Z")

</div>

Hallo AkustivProjekt,  
es ist zwar schon eine Weile her, aber ich stand vor dem gleichen Problem.

Meine Lösung für csv-Dateien:

```auto
"{% 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](https://forum.shopware.com/t/streichpreis-im-google-shopping-feed/94905)
