In my shop, when ordering, the taxes aren't showing correctly for Netherlands where VAT is 19%. In my store it shows good, I want a product of €100 ex as being shown €119 incl. This works fine at the product page.
BUT then, when I order, is shows 119 in my cart and adds another 19%.
My Admin settings:
- In my Store I have set Display Prices with Tax: True
- Zone group: Netherlands
- Tax class: VAT 19%
Can anyone help?
Latest News: (loading..)
Taxes not shown correctly
Started by altaphista, Aug 31 2009 11:37 AM
4 replies to this topic
#1
Posted 31 August 2009 - 11:37 AM
#2
Posted 01 September 2009 - 05:02 PM
altaphista, on Aug 31 2009, 12:37 PM, said:
In my shop, when ordering, the taxes aren't showing correctly for Netherlands where VAT is 19%. In my store it shows good, I want a product of €100 ex as being shown €119 incl. This works fine at the product page.
BUT then, when I order, is shows 119 in my cart and adds another 19%.
My Admin settings:
- In my Store I have set Display Prices with Tax: True
- Zone group: Netherlands
- Tax class: VAT 19%
Can anyone help?
BUT then, when I order, is shows 119 in my cart and adds another 19%.
My Admin settings:
- In my Store I have set Display Prices with Tax: True
- Zone group: Netherlands
- Tax class: VAT 19%
Can anyone help?
After looking into the code i have managed to fix the double tax problem.
In includes/modules/order_total/tax.php i changed
foreach ($osC_ShoppingCart->getTaxGroups() as $key => $value) {
if ($value > 0) {
if (DISPLAY_PRICE_WITH_TAX == '1') {
$osC_ShoppingCart->addToTotal($value);
}
to
foreach ($osC_ShoppingCart->getTaxGroups() as $key => $value) {
if ($value > 0) {
if (DISPLAY_PRICE_WITH_TAX == '0') {
$osC_ShoppingCart->addToTotal($value);
}
Not a programmer so dont know if this effects anything else.
Works with normal sort order in order totals modules.
#3
Posted 07 September 2009 - 07:40 PM
thnx I will have a look tomorrow if this works
#4
Posted 19 September 2009 - 12:23 PM
altaphista, on Aug 31 2009, 01:37 PM, said:
In my shop, when ordering, the taxes aren't showing correctly for Netherlands where VAT is 19%. In my store it shows good, I want a product of €100 ex as being shown €119 incl. This works fine at the product page.
BUT then, when I order, is shows 119 in my cart and adds another 19%.
My Admin settings:
- In my Store I have set Display Prices with Tax: True
- Zone group: Netherlands
- Tax class: VAT 19%
Can anyone help?
BUT then, when I order, is shows 119 in my cart and adds another 19%.
My Admin settings:
- In my Store I have set Display Prices with Tax: True
- Zone group: Netherlands
- Tax class: VAT 19%
Can anyone help?
Hi,
do you have double Tax zone? Controll the zones and the taxable goods. You have to be only one zone and one Tax for 19%.
BB
Header Footer Content Modules
SCM
v3
and some rewrites :-)
SCM
v3
and some rewrites :-)









