Is there any configuration option that I should adjust, or is this functionality simply not possible with the current version?
Thanks in advance for your assistance!
]]>I’m trying to show the EU VAT field for specific products only
I tried several code snippets, but all failed and break my site
Here is the last i tried, could you tell me how i could achieve this correctly please? I have 10 products which i need to have this field shown, for all other other i don’t need it.
add_filter(‘wc_aelia_eu_vat_assistant_show_checkout_field_vat_number’, function($show_field, $is_field_required) {
foreach( WC()->cart->get_cart() as $cart_item ){
$product_id = $cart_item[‘product_id’];
if( $product_id == 5232 ) {
$show_field = true;
}
return $show_field;
}, 10, 2);`
Thanks a lot in advance
Best Regards
]]>We must clarify that we are not accountants, nor tax advisors, therefore the following doesn’t constitute official tax advice, nor legal advice. We strongly recommend to consult your accountant to confirm the correct approach to take in your specific business, as we won’t be able to guarantee the accuracy of our answers, not take any responsibility in case of compliance issues. You are free to use the information and solutions provided below, at your own risk.
General question: will the EU VAT Assistant be updated provide features specific to the IOSS regime, coming into effect on the 1st of July 2021?
Answer
The EU VAT Assistant can be used, to a certain extent, even after the 1st of July. However, please keep in mind that it’s designed primarily for digital products, and doesn’t implement features specific to physical goods, or to the element of shipping. It’s already possible, with some custom filters, to cover some the rules applicable to the shipping of goods, such as the VAT exemption over 150 EUR (or 135 GBP, for the UK). More about this below.
10K VAT MOSS registration
Regulation link: https://ec.europa.eu/taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_en
Regulation summary
The abolition of the “distance sales threshold” and the creation of a unique and common threshold of EUR 10,000 throughout the EU up to which B2C EU cross-border supplies remain subject to the VAT rules of the Member State of dispatch, and above which supplies become subject to the VAT rules of the Member State of destination
Question: does the EU VAT Assistant keep track of the sales and inform the merchant?
Answer
We are aware of the threshold regulations, as they have been in place for sales of digital services for a while now. As of today, we don’t have a plan to introduce a feature to keep track of the cumulative sales to see when that threshold is reached.
Based on our understanding, the process is the following:
1. As long as a business is under 10K of B2C EU sales, it can apply the VAT rules of the source country. This is not compulsory, and a business can opt to join the VAT OSS system immediately.
2. As soon as the business reaches 10K of B2C EU sales, it has to apply the new regime. This means performing a couple of steps:
After some consideration, we came to the conclusion that the manual work would described above (see #2.1 amd 2#2.) have to be done anyway, and that the transition to the VAT OSS system is usually a once-off operation. Once a business reaches the 10K of sales, it would make little sense to go back to the pre-threshold regime the year after (i.e. a business doesn’t go back and forth from OSS to “source VAT”, as that would add administrative work).
We opted to leave out any automatic switching from one regime to the other. A business can simply run one of the included reports to have an idea of how close they are to the threshold (the EU VAT Assistant shows the amount per country, one just has to make a sum), and start the registration ahead of time. When the registration is complete, they can simply change the VAT rates in the tax settings and the EU VAT Assistant will track the country-specific sales as it normally does.
In conclusion, we determined that the little benefit brought by a “sales tracking” feature would not justify the work required to implement it, and we put it aside for now (i.e. it won’t be added to the EU VAT Assistant).
VAT exemption thresholds
The new IOSS regulations require the application of VAT to all sales made to extra-EU countries, when such sales don’t exceed 150 EUR. The UK has a similar rule, where the sales to EU customer by a UK merchant should be subject to VAT when they are under 135 GBP. When the order amounts are above 150 EUR (EU rule) or (135 GBP) UK rule, then the VAT is handled at the destination, and the order should be exempted from it.
Question: does the EU VAT Assistant check the order totals and apply VAT exemptions as needed?
Answer
The short answer to this question would be that the EU VAT Assistant doesn’t perform this kind of check, but it’s possible to introduce them with a simple filter.
As we explained in other threads, and as described on the plugin page, we wrote the EU VAT Assistant specifically to handle the VAT MOSS regulations, which apply to digital products. The aspects related to the sales of physical goods, such as different VAT regimes depending on the delivered goods, are outside the the plugin’s scope. Due to that, the EU VAT Assistant won’t check the cart totals, nor apply an exemption if the cart total is above a certain amount (e.g. 135 GBP for the UK, or 150 EUR for the EU).
We’re working on a solution that will replace the EU VAT Assistant, which will include better support for physical goods. In the meantime, special rules can still be handled with some custom filters, which can be used to apply a VAT exemption when the cart total is over a certain amount.
How to calculate the order totals for the VAT exemption
Based on the documentation we have received, the thresholds after which an order should be shipped without VAT are 150 EUR for EU countries, and 135 GBP for the UK. One aspect that caused confusion is what elements of an order counts towards the calculation. Different sources report different information, therefore we rely on official sources.
Both the EU and the UK rules indicate that the order total should be calculated on the intrinsic value of the goods being sold, excluding shipping costs and insurance. Based on our understanding, the intrinsic value also excludes discounts applied to the order, as the discount doesn’t reduce the actual value of the goods.
Based on the above, the formula to calculate the order total, to apply the VAT exemption, would be the following:
cart total before tax and discounts - shipping costs - insurance costs
Below are some examples of filters that calculate the order threshold based on the above assumption, and set a VAT exemption when such a threshold is exceeded.
Snippet #1 – Apply a VAT exemption when selling goods worth more than 150 EUR to EU customers
/**
* Apply a VAT exemption for orders shipped to EU countries, whose value is above 150 EUR.
*
* @param bool $customer_vat_exemption
* @param string $vat_country
* @param string $vat_number
* @return bool
*/
add_filter('wc_aelia_eu_vat_assistant_customer_vat_exemption', function($customer_vat_exemption, $vat_country, $vat_number) {
if(!$customer_vat_exemption && \Aelia\WC\EU_VAT_Assistant\WC_Aelia_EU_VAT_Assistant::instance()->is_eu_country($vat_country)) {
// Calculate the cart total threshold of 150 EUR to the active currency
// @link https://www.ads-software.com/support/topic/faq-eu-vat-assistant-and-multiple-currencies/
$cart_total_threshold = apply('wc_aelia_eu_vat_assistant_convert', 150, 'EUR', get_woocommerce_currency());
// If the cart subtotal is above 150 EUR, apply a VAT exemption. The subtotal
// is the sum of the price of each product, excluding VAT. This subtotal does
// not include shipping costs, unless they are part of the product prices (in
// which case, they do count towards the threshold).
if(WC()->cart->get_subtotal() > $cart_total_threshold) {
$customer_vat_exemption = true;
}
}
return $customer_vat_exemption;
}, 50, 3);
Snippet #2 – Apply a VAT exemption when selling goods worth more than 135 GBP EUR to UK customers
/**
* Apply a VAT exemption for orders shipped to the UK, whose value is above 135 GBP EUR.
*
* @param bool $customer_vat_exemption
* @param string $vat_country
* @param string $vat_number
* @return bool
*/
add_filter('wc_aelia_eu_vat_assistant_customer_vat_exemption', function($customer_vat_exemption, $vat_country, $vat_number) {
if(!$customer_vat_exemption && ($vat_country === 'GB')) {
// Calculate the cart total threshold of 135 GBP to the active currency
// @link https://www.ads-software.com/support/topic/faq-eu-vat-assistant-and-multiple-currencies/
$cart_total_threshold = apply('wc_aelia_eu_vat_assistant_convert', 135, 'GBP', get_woocommerce_currency());
// If the cart subtotal is above 135 GBP, apply a VAT exemption. The subtotal
// is the sum of the price of each product, excluding VAT. This subtotal does
// not include shipping costs, unless they are part of the product prices (in
// which case, they do count towards the threshold).
if(WC()->cart->get_subtotal() > $cart_total_threshold) {
$customer_vat_exemption = true;
}
}
return $customer_vat_exemption;
}, 50, 3);
Question: What about Northern Ireland? Should the VAT exemption be applied when selling to it?
Answer
It is our understanding that there are two different regimes applicable to customers from Northern Ireland.
1. Sellers from the UK and the EU apply VAT as they do normally, without thresholds.
2. Sellers from outside the UK and the EU apply VAT to orders whose value is under 135 GBP, and a VAT exemption when the amount is above.
The main challenge arises from the fact that Northern Ireland is not an actual country, but it’s part of the UK. Due to that, there isn’t a specific country code assigned to it. It should be possible to cover this gap with as follows:
1. Use the following code snippet to make Northern Ireland a separate country:
add_filter('woocommerce_countries', function($countries) {
// "XI" is a special ISO code assigned to Northern Ireland. It can be used to handle that area as
// a separate country. It's also possible to validate VAT numbers starting with XI using the VIES system
$countries['XI'] = __('Northern Ireland', 'woocommerce');
return $countries;
});
2. Go to WooCommerce > Settings > Tax and edit the appropriate tax classes, adding a VAT rate for country code “XI”.
This setup should be sufficient for sellers from the EU and the UK, and will have the following effect:
1. Northern Ireland will appear in the list of countries at checkout
2. WooCommerce will apply the corresponding VAT to the order, automatically.
3. Customers from Northern Ireland will be able to enter their VAT number, starting with “XI”, and get a VAT exemption.
Sellers from outside the EU need to perform an additional step
Since Northern Ireland has its own ISO code, the snippet written for the UK has to be changed slightly to take that into account. The following snippet applies an exemption for orders over 135 GBP shipped to the UK or Northern Ireland:
Snippet #3 – Apply a VAT exemption when selling goods worth more than 135 GBP EUR to customers from the UK and Northern Ireland
/**
* Apply a VAT exemption for orders shipped to the UK and Northern Ireland, whose value is above 135 GBP EUR.
*
* @param bool $customer_vat_exemption
* @param string $vat_country
* @param string $vat_number
* @return bool
*/
add_filter('wc_aelia_eu_vat_assistant_customer_vat_exemption', function($customer_vat_exemption, $vat_country, $vat_number) {
if(!$customer_vat_exemption && (in_array($vat_country, ['GB', 'XI']))) {
// Calculate the cart total threshold of 135 GBP to the active currency
// @link https://www.ads-software.com/support/topic/faq-eu-vat-assistant-and-multiple-currencies/
$cart_total_threshold = apply('wc_aelia_eu_vat_assistant_convert', 135, 'GBP', get_woocommerce_currency());
// If the cart subtotal is above 135 GBP, apply a VAT exemption. The subtotal
// is the sum of the price of each product, excluding VAT. This subtotal does
// not include shipping costs, unless they are part of the product prices (in
// which case, they do count towards the threshold).
if(WC()->cart->get_subtotal() > $cart_total_threshold) {
$customer_vat_exemption = true;
}
}
return $customer_vat_exemption;
}, 50, 3);
The above should be sufficient to cover all the scenarios that we have been described.
]]>Summary of changes
In a nutshell, the UK and the Isle of Man will no longer be handled by the EU VAT Assistant, out of the box. Due to that, the plugin won’t collect or validate handle UK VAT numbers. Such features will be implemented as a separate addon, which will be made available from our site.
You should still be able to use the sales reports. The EU VAT Assistant will keep collecting VAT information, such as the tax paid against each order by UK customers, and show them in the reports. You can use the “UK” entries in the report to file returns for the UK. If you need a GBP amount, you can converting it using the exchange rates from the HMRC VAT Exchange Rates. Although this might not be
Change log
You can find the details about the most important changes below.
Functional changes
VAT Number Validation > VIES Validation
. The UK has left that system, therefore it’s no longer possible to enter a UK VAT number in field Requester country code for the VAT validation service
. If you are a UK business, you can now empty that field.Services
tab. The tab will be used to show the configuration settings for additional services, such as VAT number validators, which may be introduced by addons.Options
tab now includes a new Privacy
section. We introduced an option to delete the data collected by the EU VAT Assistant when a customer asks to erase their personal data.{{merchant_vat_number}}
, which is replaced by the VIES Requester VAT number. Addons will be able to replace the value with their own, e.g. to show a UK VAT number when selling to UK customers.
In the latest update, we also made some significant modifications to the EU VAT Assistant code. As always, we followed our policy of aiming for full backward compatibility, even after a major release. Our tests indicated that any custom code that followed our guidelines should keep working as it always did. If you, or your developers, wrote some custom code that is tightly coupled with the previous implementation, you might have to adapt it to the new version.
Below you can find a summary of what has changed in the code base.
Technical changes
Planned Brexit Addon
As anticipated, we are working on a “UK Addon for the EU VAT Assistant”, aimed at handling the aspects of Brexit. Note: due to the effort involved in such development, as well as the costs brought in by the maintenance of the EU VAT Assistant, the addon will be exclusively a paid product.
The full feature set of the UK Addon is still being defined, as we receive more information from the UK Revenue office. Among the planned features are the following:
{{merchant_vat_number}}
token automatically.
More features may be added, as the new regulations become clearer over time.
If you have any questions, please post them in this support section and we will answer you soon as possible. Thanks.
]]>When from Finland, the VAT fields shows up even if customer is not a company.
So I tried to hide the field so that the VAT field would only show up when something is typed into company field and it works but not when country is base (Estonia) country.
Then it shows the VAT field for a moment and then hides. Check the video: https://www.loom.com/share/4c74cf63969949e0a1f02a3e107ac9c5
Is it possible to add this option to future updates, that show VAT field only if company field is filled?
add_action( 'woocommerce_after_checkout_form', 'bbloomer_conditionally_hide_show_checkout_field1', 9999 );
function bbloomer_conditionally_hide_show_checkout_field1() {
wc_enqueue_js( "
jQuery('#billing_company').keyup(function() {
if (jQuery(this).val().length == 0) {
jQuery('#vat_number_field').hide();
} else {
jQuery('#vat_number_field').show();
}
}).keyup();
");
}
]]>Thanks
MG.
I think that I can use it for my work. I just think that I need something I cannot find. I would like to change the user role to a validated one (I can create this role in WordPress). So if someone is validated I could change the role.
Thanks
]]>