Jump to content

Prix dégressif afficher prix à l'unité et la remise en pourcentage


Recommended Posts

Bonjour,

 

Je cherche à afficher sur ma boutique le prix à l'unité et la remise en pourcentage pour les prix dégressifs, en modifiant le code je suis presque arrivé au résultat voulu, mais dès lors que j'ai des déclinaisons de produits avec des tarifs différents, le prix dégressif est calculé en rapport avec le prix de la déclinaison par défaut et non celle sélectionnée ex. http://super-mastic.com/reparations/10-tec7-filler-enduit-de-rebouchage-et-de-finition-professionnel-interieur-exterieur.html

 

Le bout de code que j'ai modifié dans product.tpl

<!-- quantity discount -->
<ul class="idTabs clearfix discountBig">
	<li><a href="#discount" style="cursor: pointer" class="selected">{l s='Sliding scale pricing'}</a></li>
</ul>
<div id="quantityDiscount">
	<table class="std">
        <thead>
            <tr>
                <th>{l s='Product'}</th>
                
                <th>{l s='Discount'}</th>
            </tr>
        </thead>
		<tbody>
            {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 class="discountPrix">
                    {if $quantity_discount.price >= 0 OR $quantity_discount.reduction_type == 'amount'}
                       -{convertPrice price=$quantity_discount.real_value|floatval}
                   {else}
                       {assign var='prixProduct' value=$product->getPrice(true, $smarty.const.NULL, 2)}
							    {convertPrice price=$prixProduct-($quantity_discount.real_value*$prixProduct/100)|floatval} {'TTC unit'} par {$quantity_discount.quantity|intval}<br>{'Remise de'} {$quantity_discount.real_value|floatval}%
							    
                   {/if}
                   
                </td>
            </tr>
            {/foreach}
        </tbody>
	</table>
</div>
{/if}

Merci,

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...