Jump to content

[Résolu] Prix HT dans le résumé de commande


Recommended Posts

J'ai finalement trouvé l'ensemble fonctionne seulement si le taux de taxe de transport est le même que le taux de taxe des produits :

 

dans order-detail.tpl de votre thème autour de la ligne 124 après :

 

 

{if $priceDisplay && $use_tax}
<tr class="item">
<td colspan="{if $return_allowed}6{else}5{/if}">
{l s='Total products (tax excl.):'} <span class="price">{displayWtPriceWithCurrency price=$order->getTotalProductsWithoutTaxes() currency=$currency convert=0}</span>
</td>
</tr>
{/if}

 

 

 

{*commenter le total avec taxes*}

et après les discounts et wrapping ajoutez

 

<tr class="item">
<td colspan="{if $return_allowed}6{else}5{/if}">
{l s='Total shipping:'}  <span class="price-shipping">
{displayPrice price= ($order->total_shipping-($order->total_shipping - ($order->total_shipping/($order->carrier_tax_rate/100+1))))} </span>
</td>
</tr> 

 


<tr class="item">
<td colspan="{if $return_allowed}6{else}5{/if}">
{l s='Total tax:'}  <span class="price-shipping">
{displayPrice price= ($order->total_paid - ($order->total_paid/($order->carrier_tax_rate/100+1)))} </span>
</td>
</tr>

 

ceci va afficher :

 

total des produits sans taxe

le transport sans taxes

le total de la taxe

 

on laisse le total_paid après

j'imagine que vous pouvez appliquer la même règle au wrapping et discount mais je n'ai pas encore testé)

  • Like 1
Link to comment
Share on other sites

  • 4 years later...

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