Is it me who cant configure this or is this a bug, but goddamit i cant get this to function correctly.
I have zj_black template installed. Private persons gets taxfree when from another Eu country, pls check this out somebody.
Is it me who cant configure this or is this a bug, but goddamit i cant get this to function correctly.
I have zj_black template installed. Private persons gets taxfree when from another Eu country, pls check this out somebody.
barkbit86 - i gave up trying to intstall this mod, has a few bugs in. i tried to get hold of the guys that developed it and asked if they would do, obvioulsy for payment, but had no reply from either of them.
In the end I got these guys to sort: http://www.waveriderdesign.com/
It is working now, although the VAT server is down a bit http://ec.europa.eu/taxation_customs/vies/vieshome.do and there is nothing that can be done about that - the module references the database on this site to validate VAT numbers
when you download the latest module, the pack doesn't contain the template files, these need to be downloaded from an earlier download pack
Apart from this it seems to work well, thanks to those who developed it.
Thank you Mattys, well it seemsl il just have to wait for better times![]()
Help me, please!
I use VAT-mod_138a_v130 and this mod wrong verify VAT number (Poland).
In my shop I need VAT number, but I don't verification it.
In admin (VAT-Mod), in "Check the VAT number" set "false", but mod still verifing!?! Send red info about "wrong number"....
How I close (blocked) this verification (on create, modify etc)?
Please...
Best Regards to ALL
I think that I have found the solution:
Change the last lines of the file
zen-cart-v1.3.8a\includes\functions\extra_functions\functions_vatmod.php
from
if ($tva_intracom->fields['country_id'] === $store_country->fields['store_country']) {
return false;
} else {
return true;
to
if ($tva_intracom->fields['country_id'] === $store_country->fields['store_country']) {
return false;
} elseif ($tva_intracom->fields['tva_intracom'] === '') {
return false;
} else {
return true;
Nice AddOn
I want that customers which have an VAT-number can checkout with COD... All other customers without VAT-number can't
So a step to do that is to add a condition into the includes/modules/payment/cod.php
Something like this.
But this isn't the right condition. Who can help me with the right condition?Code:// disable the module if customers don't have an VAT-number $verify_entry_btw = $db->Execute("select entry_tva_intracom from " . TABLE_ADDRESS_BOOK . " where customers_id = '" . $order_check->fields['customers_id']. "'"); if ($this->enabled == true) { if (zen_not_null($order_check->fields['billing_tva_intracom'])) { $this->enabled = false; } }
Solution is this:
findCode:// disable the module if the order only contains virtual products if ($this->enabled == true) { if ($order->content_type != 'physical') { $this->enabled = false; } }
and insert next code
So now people with a right VAT-Number in their Billing-Address can pay with COD, customers without a VAT-Number in their billing-address can't pay with COD.Code:// disable only when billingaddress has a correct VAT-Number $order_check = $db->Execute("select entry_tva_intracom from " . TABLE_ADDRESS_BOOK . " "); // TVA_INTRACOM if ($this->enabled == true) { if (zen_not_null($order_check->fields['entry_tva_intracom'])) { $this->enabled = true;} else { $this->enabled = false; } }
Please help.
I am having a problem after installing Vat-Mod v.1.3.0 to zen-cart-v1.3.8a
admin/includes/functions/extra_functions/functions_vatmod.php on line 133
I have fixed line 130-132 easily. Problem is that I know nothing about programing.
Bookmarks