gsxr1000au Posted September 6, 2014 Share Posted September 6, 2014 Why is my order total showing the amount not including tax? Product cost is $75.00 Order Total is $68.18 How can I make this show the full amount including tax? Link to comment Share on other sites More sharing options...
nutxlago Posted September 6, 2014 Share Posted September 6, 2014 (edited) Hi, please, tell me where are you having the problem. I had a similar problem just at the final point of the purchase proccess: Prestashop 1.6 showed the final price without tax. (Edited: Ooops,sorry, did not see the screenshot!) If your taxes configurations are ok in backoffice, but you still have problems, you can try this: I found the solution to my problem at Github https://github.com/PrestaShop/PrestaShop/commit/220a7eb7927dc1860c3a139adcf3680857689010 Just make the marked changes in (your-theme)/order-payment.tpl or copy the full script ("Raw" button in Github will open the file in a new window to copy and paste it as is.) Do not forget to make a copy of your file order-payment.tpl before any modification Hope this helps! Edited September 6, 2014 by nutxlago (see edit history) 2 Link to comment Share on other sites More sharing options...
NemoPS Posted September 6, 2014 Share Posted September 6, 2014 Did you edit the tpl? Asking just because I see it's a bit off If you got rid of some rows, make sure you are displaying the right one {if $use_taxes && $show_taxes} <tr class="cart_total_price"> <td colspan="3" class="text-right">{l s='Total (tax excl.)'}</td> <td colspan="2" class="price" id="total_price_without_tax">{displayPrice price=$total_price_without_tax}</td> </tr> <tr class="cart_total_tax"> <td colspan="3" class="text-right">{l s='Total tax'}</td> <td colspan="2" class="price" id="total_tax">{displayPrice price=$total_tax}</td> </tr> {/if} <tr class="cart_total_price"> <td colspan="3" class="total_price_container text-right"> <span>{l s='Total'}</span> </td> {if $use_taxes} <td colspan="2" class="price" id="total_price_container"> <span id="total_price">{displayPrice price=$total_price}</span> </td> {else} <td colspan="2" class="price" id="total_price_container"> <span id="total_price">{displayPrice price=$total_price_without_tax}</span> </td> {/if} </tr> 1 Link to comment Share on other sites More sharing options...
gsxr1000au Posted September 8, 2014 Author Share Posted September 8, 2014 (edited) Ive not edited any files. The only change i have done was to install a PayPal with Fee module. Neither of the suggestions above match what i have in my existing .tpl file so i dont know what exactly i need to change. Also have vouchers enabled. {* * 2007-2014 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2014 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} {if !$opc} {addJsDef currencySign=$currencySign|html_entity_decode:2:"UTF-8"} {addJsDef currencyRate=$currencyRate|floatval} {addJsDef currencyFormat=$currencyFormat|intval} {addJsDef currencyBlank=$currencyBlank|intval} {addJsDefL name=txtProduct}{l s='product' js=1}{/addJsDefL} {addJsDefL name=txtProducts}{l s='products' js=1}{/addJsDefL} {capture name=path}{l s='Your payment method'}{/capture} <h1 class="page-heading">{l s='Please choose your payment method'}</h1> {else} <h1 class="page-heading step-num"><span>3</span> {l s='Please choose your payment method'}</h1> {/if} {if !$opc} {assign var='current_step' value='payment'} {include file="$tpl_dir./order-steps.tpl"} {include file="$tpl_dir./errors.tpl"} {else} <div id="opc_payment_methods" class="opc-main-block"> <div id="opc_payment_methods-overlay" class="opc-overlay" style="display: none;"></div> {/if} <div class="paiement_block"> <div id="HOOK_TOP_PAYMENT">{$HOOK_TOP_PAYMENT}</div> {if $HOOK_PAYMENT} {if !$opc} <div id="order-detail-content" class="table_block table-responsive"> <table id="cart_summary" class="table table-bordered"> <thead> <tr> <th class="cart_product first_item">{l s='Product'}</th> <th class="cart_description item">{l s='Description'}</th> {if $PS_STOCK_MANAGEMENT} <th class="cart_availability item">{l s='Avail.'}</th> {/if} <th class="cart_unit item">{l s='Unit price'}</th> <th class="cart_quantity item">{l s='Qty'}</th> <th class="cart_total last_item">{l s='Total'}</th> </tr> </thead> <tfoot> {if $use_taxes} {if $priceDisplay} <tr class="cart_total_price"> <td colspan="4" class="text-right">{if $display_tax_label}{l s='Total products (tax excl.)'}{else}{l s='Total products'}{/if}</td> <td colspan="2" class="price" id="total_product">{displayPrice price=$total_products}</td> </tr> {else} <tr class="cart_total_price"> <td colspan="4" class="text-right">{if $display_tax_label}{l s='Total products (tax incl.)'}{else}{l s='Total products'}{/if}</td> <td colspan="2" class="price" id="total_product">{displayPrice price=$total_products_wt}</td> </tr> {/if} {else} <tr class="cart_total_price"> <td colspan="4" class="text-right">{l s='Total products'}</td> <td colspan="2" class="price" id="total_product">{displayPrice price=$total_products}</td> </tr> {/if} <tr class="cart_total_voucher" {if $total_wrapping == 0}style="display:none"{/if}> <td colspan="4" class="text-right"> {if $use_taxes} {if $priceDisplay} {if $display_tax_label}{l s='Total gift wrapping (tax excl.):'}{else}{l s='Total gift wrapping cost:'}{/if} {else} {if $display_tax_label}{l s='Total gift wrapping (tax incl.)'}{else}{l s='Total gift wrapping cost:'}{/if} {/if} {else} {l s='Total gift wrapping cost:'} {/if} </td> <td colspan="2" class="price-discount price" id="total_wrapping"> {if $use_taxes} {if $priceDisplay} {displayPrice price=$total_wrapping_tax_exc} {else} {displayPrice price=$total_wrapping} {/if} {else} {displayPrice price=$total_wrapping_tax_exc} {/if} </td> </tr> {if $total_shipping_tax_exc <= 0 && !isset($virtualCart)} <tr class="cart_total_delivery"> <td colspan="4" class="text-right">{l s='Shipping:'}</td> <td colspan="2" class="price" id="total_shipping">{l s='Free Shipping!'}</td> </tr> {else} {if $use_taxes && $total_shipping_tax_exc != $total_shipping} {if $priceDisplay} <tr class="cart_total_delivery" {if $shippingCost <= 0} style="display:none"{/if}> <td colspan="4" class="text-right">{if $display_tax_label}{l s='Total shipping (tax excl.)'}{else}{l s='Total shipping'}{/if}</td> <td colspan="2" class="price" id="total_shipping">{displayPrice price=$shippingCostTaxExc}</td> </tr> {else} <tr class="cart_total_delivery"{if $shippingCost <= 0} style="display:none"{/if}> <td colspan="4" class="text-right">{if $display_tax_label}{l s='Total shipping (tax incl.)'}{else}{l s='Total shipping'}{/if}</td> <td colspan="2" class="price" id="total_shipping" >{displayPrice price=$shippingCost}</td> </tr> {/if} {else} <tr class="cart_total_delivery"{if $shippingCost <= 0} style="display:none"{/if}> <td colspan="4" class="text-right">{l s='Total shipping'}</td> <td colspan="2" class="price" id="total_shipping" >{displayPrice price=$shippingCostTaxExc}</td> </tr> {/if} {/if} <tr class="cart_total_voucher" {if $total_discounts == 0}style="display:none"{/if}> <td colspan="4" class="text-right"> {if $use_taxes} {if $priceDisplay} {if $display_tax_label}{l s='Total vouchers (tax excl.)'}{else}{l s='Total vouchers'}{/if} {else} {if $display_tax_label}{l s='Total vouchers (tax incl.)'}{else}{l s='Total vouchers'}{/if} {/if} {else} {l s='Total vouchers'} {/if} </td> <td colspan="2" class="price-discount price" id="total_discount"> {if $use_taxes} {if $priceDisplay} {displayPrice price=$total_discounts_tax_exc*-1} {else} {displayPrice price=$total_discounts*-1} {/if} {else} {displayPrice price=$total_discounts_tax_exc*-1} {/if} </td> </tr> {if $use_taxes && $show_taxes} {if $priceDisplay && $total_tax != 0} <tr class="cart_total_tax"> <td colspan="4" class="text-right">{l s='Tax'}</td> <td colspan="2" class="price" id="total_tax" >{displayPrice price=$total_tax}</td> </tr> {/if} <tr class="cart_total_price"> <td colspan="4" class="total_price_container text-right"><span>{l s='Total'}</span></td> <td colspan="2" class="price" id="total_price_container"> <span id="total_price">{displayPrice price=$total_price}</span> </td> </tr> {else} <tr class="cart_total_price"> {if $voucherAllowed} <td colspan="2" id="cart_voucher" class="cart_voucher"> <div id="cart_voucher" class="table_block"> {if isset($errors_discount) && $errors_discount} <ul class="alert alert-danger"> {foreach from=$errors_discount key=k item=error} <li>{$error|escape:'html':'UTF-8'}</li> {/foreach} </ul> {/if} {if $voucherAllowed} <form action="{if $opc}{$link->getPageLink('order-opc', true)}{else}{$link->getPageLink('order', true)}{/if}" method="post" id="voucher"> <fieldset> <h4>{l s='Vouchers'}</h4> <input type="text" id="discount_name" class="form-control" name="discount_name" value="{if isset($discount_name) && $discount_name}{$discount_name}{/if}" /> <input type="hidden" name="submitDiscount" /> <button type="submit" name="submitAddDiscount" class="button btn btn-default button-small"><span>{l s='ok'}</span></button> {if $displayVouchers} <p id="title" class="title_offers">{l s='Take advantage of our offers:'}</p> <div id="display_cart_vouchers"> {foreach from=$displayVouchers item=voucher} <span onclick="$('#discount_name').val('{$voucher.name}');return false;" class="voucher_name">{$voucher.name}</span> - {$voucher.description} <br /> {/foreach} </div> {/if} </fieldset> </form> {/if} </div> </td> {/if} <td colspan="{if !$voucherAllowed}3{else}2{/if}" class="text-right total_price_container"> <span>{l s='Total'}</span> </td> <td colspan="1" class="price total_price_container" id="total_price_container"> <span id="total_price">{displayPrice price=$total_price_without_tax}</span> </td> </tr> {/if} </tfoot> <tbody> {foreach from=$products item=product name=productLoop} {assign var='productId' value=$product.id_product} {assign var='productAttributeId' value=$product.id_product_attribute} {assign var='quantityDisplayed' value=0} {assign var='cannotModify' value=1} {assign var='odd' value=$product@iteration%2} {assign var='noDeleteButton' value=1} {* Display the product line *} {include file="$tpl_dir./shopping-cart-product-line.tpl"} {* Then the customized datas ones*} {if isset($customizedDatas.$productId.$productAttributeId)} {foreach from=$customizedDatas.$productId.$productAttributeId[$product.id_address_delivery] key='id_customization' item='customization'} <tr id="product_{$product.id_product}_{$product.id_product_attribute}_{$id_customization}" class="alternate_item cart_item"> <td colspan="4"> {foreach from=$customization.datas key='type' item='datas'} {if $type == $CUSTOMIZE_FILE} <div class="customizationUploaded"> <ul class="customizationUploaded"> {foreach from=$datas item='picture'} <li> <img src="{$pic_dir}{$picture.value}_small" alt="" class="customizationUploaded" /> </li> {/foreach} </ul> </div> {elseif $type == $CUSTOMIZE_TEXTFIELD} <ul class="typedText"> {foreach from=$datas item='textField' name='typedText'} <li> {if $textField.name} {l s='%s:' sprintf=$textField.name} {else} {l s='Text #%s:' sprintf=$smarty.foreach.typedText.index+1} {/if} {$textField.value} </li> {/foreach} </ul> {/if} {/foreach} </td> <td class="cart_quantity text-center"> {$customization.quantity} </td> <td class="cart_total"></td> </tr> {assign var='quantityDisplayed' value=$quantityDisplayed+$customization.quantity} {/foreach} {* If it exists also some uncustomized products *} {if $product.quantity-$quantityDisplayed > 0}{include file="$tpl_dir./shopping-cart-product-line.tpl"}{/if} {/if} {/foreach} {assign var='last_was_odd' value=$product@iteration%2} {foreach $gift_products as $product} {assign var='productId' value=$product.id_product} {assign var='productAttributeId' value=$product.id_product_attribute} {assign var='quantityDisplayed' value=0} {assign var='odd' value=($product@iteration+$last_was_odd)%2} {assign var='ignoreProductLast' value=isset($customizedDatas.$productId.$productAttributeId)} {assign var='cannotModify' value=1} {* Display the gift product line *} {include file="./shopping-cart-product-line.tpl" productLast=$product@last productFirst=$product@first} {/foreach} </tbody> {if count($discounts)} <tbody> {foreach from=$discounts item=discount name=discountLoop} <tr class="cart_discount {if $smarty.foreach.discountLoop.last}last_item{elseif $smarty.foreach.discountLoop.first}first_item{else}item{/if}" id="cart_discount_{$discount.id_discount}"> <td class="cart_discount_name" colspan="{if $PS_STOCK_MANAGEMENT}3{else}2{/if}">{$discount.name}</td> <td class="cart_discount_price"> <span class="price-discount"> {if $discount.value_real > 0} {if !$priceDisplay} {displayPrice price=$discount.value_real*-1} {else} {displayPrice price=$discount.value_tax_exc*-1} {/if} {/if} </span> </td> <td class="cart_discount_delete">1</td> <td class="cart_discount_price"> <span class="price-discount"> {if $discount.value_real > 0} {if !$priceDisplay} {displayPrice price=$discount.value_real*-1} {else} {displayPrice price=$discount.value_tax_exc*-1} {/if} {/if} </span> </td> </tr> {/foreach} </tbody> {/if} </table> </div> <!-- end order-detail-content --> {/if} {if $opc}<div id="opc_payment_methods-content">{/if} <div id="HOOK_PAYMENT"> {$HOOK_PAYMENT} </div> {if $opc}</div> <!-- end opc_payment_methods-content -->{/if} {else} <p class="alert alert-warning">{l s='No payment modules have been installed.'}</p> {/if} {if !$opc} <p class="cart_navigation clearfix"> <a href="{$link->getPageLink('order', true, NULL, "step=2")|escape:'html':'UTF-8'}" title="{l s='Previous'}" class="button-exclusive btn btn-default"> <i class="icon-chevron-left"></i> {l s='Continue shopping'} </a> </p> {else} </div> <!-- end opc_payment_methods --> {/if} </div> <!-- end HOOK_TOP_PAYMENT --> Edited September 8, 2014 by gsxr1000au (see edit history) Link to comment Share on other sites More sharing options...
gsxr1000au Posted September 8, 2014 Author Share Posted September 8, 2014 Its only incorrect when i get to the 05. Payment section of the checkout. 1 Link to comment Share on other sites More sharing options...
NemoPS Posted September 8, 2014 Share Posted September 8, 2014 ah! in that case check the order-payment.tpl file, there is a clone of the summary tab there as well. Link to comment Share on other sites More sharing options...
gsxr1000au Posted September 8, 2014 Author Share Posted September 8, 2014 ah! in that case check the order-payment.tpl file, there is a clone of the summary tab there as well. I have no idea what i'm supposed to check it for... Link to comment Share on other sites More sharing options...
NemoPS Posted September 9, 2014 Share Posted September 9, 2014 The thing I mentioned before {if $use_taxes} <td colspan="2" class="price" id="total_price_container"> <span id="total_price">{displayPrice price=$total_price}</span> </td> {else} <td colspan="2" class="price" id="total_price_container"> <span id="total_price">{displayPrice price=$total_price_without_tax}</span> </td> {/if} Link to comment Share on other sites More sharing options...
cson Posted September 13, 2014 Share Posted September 13, 2014 (edited) Hi I have the same problem, major headace ;-) : http://www.prestashop.com/forums/topic/353341-pris-vises-forkert-i-ordreflow/?do=findComment&comment=1776463 I solved it by uploadin 2 files from an old backup.: themes/default-bootstrap/order-payment.tpl themes/default-bootstrap/shopping-cart.tpl Regards Carsten Hi I have the same problem, major headace ;-) : http://www.prestashop.com/forums/topic/353341-pris-vises-forkert-i-ordreflow/?do=findComment&comment=1776463 I solved it by uploadin 2 files from an old backup.: themes/default-bootstrap/order-payment.tpl themes/default-bootstrap/shopping-cart.tpl Regards Carsten Found out that you can configure taxes to show in the cart: back office -> localization->taxes Edited December 16, 2014 by cson (see edit history) Link to comment Share on other sites More sharing options...
Goliard Posted October 31, 2014 Share Posted October 31, 2014 Hi, your problem is, that you allowed taxes, but you dont allowed them in shopping cart(back office -> localization->taxes)BUT I solved this problem. Just open order-payment.tpland modify<span id="total_price">{displayPrice price=$total_price_without_tax}</span> on <span id="total_price">{displayPrice price=$total_price}</span> Link to comment Share on other sites More sharing options...
Desko Posted November 27, 2014 Share Posted November 27, 2014 (edited) I had the same problem. I fixed in this way. Localization -> Taxes -> Show taxes on cart? Yes! (it was NO in my BO) Edited November 27, 2014 by Desko (see edit history) 1 Link to comment Share on other sites More sharing options...
blossomitsa Posted December 15, 2014 Share Posted December 15, 2014 (edited) Hello , Because i am having the same problem is this solution valid? I am asking because the topic is not marked as solved. Edited December 15, 2014 by blossomitsa (see edit history) Link to comment Share on other sites More sharing options...
Desko Posted December 15, 2014 Share Posted December 15, 2014 Hello , Because i am having the same problem is this solution valid? I am asking because the topic is not marked as solved. Which solution are u talking about? Link to comment Share on other sites More sharing options...
blossomitsa Posted December 15, 2014 Share Posted December 15, 2014 Which solution are u talking about? About modifying order-payment.tpl file. Link to comment Share on other sites More sharing options...
Desko Posted December 15, 2014 Share Posted December 15, 2014 About modifying order-payment.tpl file. it doesn't work on my presta Link to comment Share on other sites More sharing options...
blossomitsa Posted December 15, 2014 Share Posted December 15, 2014 The thing I mentioned before {if $use_taxes} <td colspan="2" class="price" id="total_price_container"> <span id="total_price">{displayPrice price=$total_price}</span> </td> {else} <td colspan="2" class="price" id="total_price_container"> <span id="total_price">{displayPrice price=$total_price_without_tax}</span> </td> {/if} Is this a working solution ? Link to comment Share on other sites More sharing options...
Goliard Posted December 15, 2014 Share Posted December 15, 2014 You can allow taxes, and also showing or not showing them in cart, if you give allow taxes and not showing in the cart, you must make "displayprice price=$total_price" in both cases, or though if you have allowed taxes, they will not show in total price in cart. Link to comment Share on other sites More sharing options...
blossomitsa Posted December 16, 2014 Share Posted December 16, 2014 You can allow taxes, and also showing or not showing them in cart, if you give allow taxes and not showing in the cart, you must make "displayprice price=$total_price" in both cases, or though if you have allowed taxes, they will not show in total price in cart. Thank you Goliard.I ve fixed it. Link to comment Share on other sites More sharing options...
Recommended Posts