xcomm Posted December 8, 2009 Posted December 8, 2009 Dear community, Just using shipping by zones modul and having no tax definded there. In all my orders within European Union I have a wrong shipping_tax of 16% set instead of 19%. Any idea where the 16% for shipping is defined? (The normal tax for the items is done fine with 19%.) Thank you in advance! xcomm Quote
♥FWR Media Posted December 8, 2009 Posted December 8, 2009 Dear community, Just using shipping by zones modul and having no tax definded there. In all my orders within European Union I have a wrong shipping_tax of 16% set instead of 19%. Any idea where the 16% for shipping is defined? (The normal tax for the items is done fine with 19%.) Thank you in advance! xcomm In the shipping module you are using there should be a setting for tax class. Usually taxable/non taxable Quote Ultimate SEO Urls 5 PRO - Multi Language Modern, Powerful SEO Urls KissMT Dynamic SEO Meta & Canonical Header Tags KissER Error Handling and Debugging KissIT Image Thumbnailer Security Pro - Querystring protection against hackers ( a KISS contribution ) If you found my post useful please click the "Like This" button to the right. Please only PM me for paid work.
xcomm Posted December 9, 2009 Author Posted December 9, 2009 Dear FWR Media, Thanks for your fast reply. I'm only using: ./includes/modules/shipping/zones.php I looked into it to see some tax set there but found nothing. In the admin panel I have set the zones shipping module to `NO VAT`. The issue is that the calculated VAT on the invoice it wrong shown as created with a VAT of 16% instead 19% for shipping. The shipping_tax 16.0000 is written into the DB on each checkout for a EU order. Best regards, xcomm Quote
xcomm Posted January 3, 2010 Author Posted January 3, 2010 Hi Community, I've come over the reason for the issue on my setup. I had this MySQL default values set: ALTER TABLE orders ADD shipping_tax DECIMAL( 7, 4 ) DEFAULT '16.000' NOT NULL ; This was done from an mysql -p oscommerce < order_editor.txt due auction.LISTER with Order Editor install. So I will have to change this default value in the Database as our tax rate here hase changed. Best regards, xcomm Dear FWR Media, Thanks for your fast reply. I'm only using: ./includes/modules/shipping/zones.php I looked into it to see some tax set there but found nothing. In the admin panel I have set the zones shipping module to `NO VAT`. The issue is that the calculated VAT on the invoice it wrong shown as created with a VAT of 16% instead 19% for shipping. The shipping_tax 16.0000 is written into the DB on each checkout for a EU order. Best regards, xcomm Quote
xcomm Posted January 3, 2010 Author Posted January 3, 2010 Hi Community, I've come over the reason for the issue on my setup. I had this MySQL default values set: ALTER TABLE orders ADD shipping_tax DECIMAL( 7, 4 ) DEFAULT '16.000' NOT NULL ; This was done from an mysql -p oscommerce < order_editor.txt due auction.LISTER with Order Editor install. So I will have to change this default value in the Database as our tax rate here hase changed. ALTER TABLE orders modify shipping_tax DECIMAL( 7, 4 ) DEFAULT '19.000' NOT NULL; Best regards, xcomm Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.