Salamandre Posted May 22, 2012 Share Posted May 22, 2012 Bonjour, j'écris ce post car je devais avoir l'affichage du tableau des prix dégressifs dans l'ordre inverse, avec la plus grande quantité à droite, et j'ai pas trouver de message à ce sujet, si ça peut aider quelqu'un. Dans la page themes/prestashop/product.tpl j'ai remplacé : {foreach from=$quantity_discounts item='quantity_discount' name='quantity_discounts'} par : {section name=quantity_discount loop=$quantity_discounts step=-1} ensuite remplacer : {$quantity_discount.quantity|intval}</th> {/foreach} par : {$quantity_discounts[quantity_discount].quantity|intval}</th> {/section} Ceci à modifié l'affichage de la première ligne du tableau, pour la seconde il faut remplacer ; {foreach from=$quantity_discounts item='quantity_discount' name='quantity_discounts'} par : {section name=quantity_discount loop=$quantity_discounts step=-1} ensuite : {if $quantity_discount.price != 0 OR $quantity_discount.reduction_type == 'amount'} {assign var='prixProduct' value=$product->getPrice(true, $smarty.const.NULL, 2)} {convertPrice price=$prixProduct-$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} {/if} </td> {/foreach} par : {if $quantity_discounts[quantity_discount].price != 0 OR $quantity_discounts[quantity_discount].reduction_type == 'amount'} {assign var='prixProduct' value=$product->getPrice(true, $smarty.const.NULL, 2)} {convertPrice price=$prixProduct-$quantity_discounts[quantity_discount].real_value|floatval} {else} {assign var='prixProduct' value=$product->getPrice(true, $smarty.const.NULL, 2)} {convertPrice price=$prixProduct-($quantity_discounts[quantity_discount].real_value*$prixProduct/100)|floatval} {/if} </td> {/section} Link to comment Share on other sites More sharing options...
bigyom Posted June 18, 2012 Share Posted June 18, 2012 C'est exactement ce que je recherchais. Merci ! Link to comment Share on other sites More sharing options...
bigyom Posted June 26, 2012 Share Posted June 26, 2012 Un petit retour sur ce sujet : J'ai du mal à comprendre comment afficher les prix dégressifs en hors taxe. J'ai en effet un groupe de clients Pro avec affichage des prix sans taxes. Link to comment Share on other sites More sharing options...
bigyom Posted June 27, 2012 Share Posted June 27, 2012 Je développe le sujet dans un autre topic : http://www.prestashop.com/forums/index.php?/topic/175699-astuce-prix-degressif-inverser-lordre-daffichage-et-afficher-en-ht-ou-ttc/page__view__findpost__p__864268 Link to comment Share on other sites More sharing options...
stevensf Posted December 23, 2012 Share Posted December 23, 2012 (edited) Moi ce que j'ai du mal à comprendre c'est que les devs de Prestashop aient pas fait ca d'office car je vois pas l'interet d'afficher dans ordre inverse. En tout cas merci pour l'astuce Un peu comme le fait de ne pas pouvoir éditer les 'Prix spécifiques' Edited December 23, 2012 by stevensf (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