[-] FO : Fix bug #PSCFV-10688, bad priceDisplay in order-carrier

This commit is contained in:
gRoussac
2013-10-14 15:34:47 +02:00
parent 50002ec714
commit 80f6f4e223
+6 -3
View File
@@ -171,10 +171,13 @@
<td>
<div class="delivery_option_price">
{if $option.total_price_with_tax && (!isset($free_shipping) || (isset($free_shipping) && !$free_shipping))}
{if $use_taxes == 1}
{convertPrice price=$option.total_price_with_tax} {l s='(tax incl.)'}
{else}
{convertPrice price=$option.total_price_without_tax} {l s='(tax excl.)'}
{if $priceDisplay == 1}
{convertPrice price=$option.total_price_without_tax} {l s='(tax excl.)'}
{else}
{convertPrice price=$option.total_price_with_tax} {l s='(tax incl.)'}
{/if}
{/if}
{else}
{l s='Free'}