Jump to content

Preisstaffeln nicht Rabatt sondern Stückpreis anzeigen


Shad86

Recommended Posts

Hallo Forum,

 

habe ein hoffentlich kleines Problem. :)

Wenn ich einem Artikel einen Sonderpreis hinzufüge wird in der Preisstaffeltabelle der Rabatt pro Stück angezeigt.

Ist es auch möglich den Stückpreis in der Tabelle an zu zeigen und nicht nur die Euro die vom Einzelpreis abgezogen werden??

 

Hoffe jemand kann mir helfen.

Link to comment
Share on other sites

Also es ist fast gelöst. Es wird jetzt der Stückpreis angezeigt allerdings ohne Steuern.
Hat einer eine Idee wie ich die Steuern dort in der Tabelle mit eingerechnet bekomme?
 
Falls es auch jemand braucht, hier die sehr simple Lösung, wie gesagt bisher leider noch ohne Steuern.

 

Product.tpl ändern von:

{foreach from=$quantity_discounts item='quantity_discount' name='quantity_discounts'}
            <tr id="quantityDiscount_{$quantity_discount.id_product_attribute}" class="quantityDiscount_{$quantity_discount.id_product_attribute}">
                <td>
                    {if (isset($quantity_discount.attributes) && ($quantity_discount.attributes))}
                        {$product->getProductName($quantity_discount.id_product, $quantity_discount.id_product_attribute)}
                    {else}
                        {$product->getProductName($quantity_discount.id_product)}
                    {/if}
                </td>
                <td>{$quantity_discount.quantity|intval}</td>
                <td>
                    {if $quantity_discount.price >= 0 OR $quantity_discount.reduction_type == 'amount'}
                       -{convertPrice price=$quantity_discount.real_value|floatval}
                   {else}
                       -{$quantity_discount.real_value|floatval}%
                   {/if}
                </td>
            </tr>
            {/foreach}

auf: (minus weg und $quantity_discount.real_value auf $quantity_discount.price ändern)

{if $quantity_discount.price >= 0 OR $quantity_discount.reduction_type == 'amount'}
                       {convertPrice price=$quantity_discount.price|floatval}
                   {else}
                       -{$quantity_discount.real_value|floatval}%
                   {/if}
Edited by Shad86 (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...