Skip to content
Code-Schnipsel Gruppen Projekte
Commit e459f1e8 erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

fix: display price can be hidden

Übergeordneter 3d06b3e4
Keine zugehörigen Branchen gefunden
Keine zugehörigen Tags gefunden
Keine zugehörigen Merge Requests gefunden
......@@ -65,12 +65,16 @@
<td class="quiqqer-order-basket-articles-article-price"
data-label="{locale group='quiqqer/erp' var='article.list.articles.header.unitprice'}"
>
{$product.price}
{if !isset($product.displayPrice) || $product.displayPrice}
{$product.price}
{/if}
</td>
<td class="quiqqer-order-basket-articles-article-sum"
data-label="{locale group='quiqqer/erp' var='article.list.articles.header.price'}"
>
{$product.sum}
{if !isset($product.displayPrice) || $product.displayPrice}
{$product.sum}
{/if}
</td>
</tr>
{assign var=pos value=$pos+1}
......
......@@ -10,10 +10,14 @@
{$product.description}
</div>
<div class="quiqqer-order-basket-small-articles-article-price">
{if !isset($product.displayPrice) || $product.displayPrice}
{$product.price}
{/if}
</div>
<div class="quiqqer-order-basket-small-articles-article-price">
{if !isset($product.displayPrice) || $product.displayPrice}
{$product.sum}
{/if}
</div>
<div class="quiqqer-order-basket-small-articles-article-delete">
......
0% Lade oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren