Shad86 Posted April 10, 2014 Share Posted April 10, 2014 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 More sharing options...
Shad86 Posted April 10, 2014 Author Share Posted April 10, 2014 Zum besseren Verständniss hab ich hier mal einen Screenshot. Bisher werden die Rabatte vom Grundpreis abgezogen, ich würde aber gern den Preis dort angezeigt haben, nach dem Abzug. Link to comment Share on other sites More sharing options...
Shad86 Posted April 11, 2014 Author Share Posted April 11, 2014 (edited) 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 April 11, 2014 by Shad86 (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now