Questions tagged [tax]
Denotes questions about tax management and how to apply taxes to Magento.
682 questions
0 votes
0 answers
36 views
M2 - VAT validation sometimes "fails", valid EU VAT numbers still charged VAT
I am running a Magento 2.4.7-p3 webshop (Netherlands based). VAT validation is configured to use the default Magento VIES integration. Most (9/10) of the time it works correctly: A customer enters a ...
1 vote
2 answers
257 views
Magento 2 - how to create order programmatically with custom price AND tax amount for each line item (not percent)
I created a module that creates an order programmatically and I can also set the custom price. This is part of my code: foreach($orderData['products'] as $product) { try ...
0 votes
3 answers
78 views
Remover tax from cart
I can clear the Tax when the subtotal is below USD800 when the front-end currency was in USD. However, if changed to another currency (e.g. HKD), the subtotal will change to 3,336.17 (HKD) instead of ...
0 votes
0 answers
34 views
Magento 2.4.4: Bug in the tax calculation for customers with a VAT number
I am experiencing a problem with Magento 2.4.4: I have created two customer groups: Bronze and Bronze_Vies (for European customers with valid VAT number). The Bronze_Vies group should be tax-free, but:...
0 votes
1 answer
14 views
Magento FPT enabled breaks backend product view
When i enable the configuration tax/weee/enable to yes i am not able to view product page in backend. The following error is thrown: Call to a member function getId() on null Exception in /var/www/...
0 votes
0 answers
28 views
In Magento 2, I used the Magento 2 TaxCloud extension, but after placing an order, the tax shows as a random amount or sometimes as 0
<?php /** * Taxcloud_Magento2 * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.txt. * It ...
0 votes
1 answer
79 views
Magento 2 How to export Fixed product taxes value in csv file
How can I export a products with attributes of type "Fixed Product Tax"? I tried to create one on a product manually and export it, but nothing appeared in the generated CSV. How can I ...
0 votes
1 answer
69 views
Final price in cart page counting tax before applying coupon code
Final Price : 100, so 3 % tax on this 100 = > 103 should be final price, fine. Now apply coupon code to get 50 % discount , so tax on 50 : 1.5 {3 % } Issue : Now Final price is 53 [ 50 + 3 ], it is ...
1 vote
0 answers
78 views
Magento 2 - mini-cart - tax / price issue - after returning from checkout
I have a question about the minicart. In my Magento 2.4.3 I have different tax classes per store view. When I change the store view, the prices also change with the respective tax rate (also in the ...
0 votes
1 answer
47 views
Magento 2 : How To Find Magento Tax Setting
How to find the order is inclusive of tax or exclusive of tax through REST API?
1 vote
1 answer
81 views
Add Product to cart with 0 price and remove FPT from this product Magento 2.4.5
I making a promo on Magento 2.4.5 Like buy any specific 5 products and get 1 free. We have products having FPT on them. I want to add this FPT product to cart with 0 price and 0 FPT when someone buy 5 ...
0 votes
2 answers
383 views
Tax calculation showing wrong in magento2
Total is 607.77 and TAX is 6%, it's 36.4662 But magento showing 37.67 Can anyone help me how i can get 36.4662 insted 37.67? Admin side tax settings: Thanks in advanced.
0 votes
1 answer
40 views
How to get ordered product CGST, SGST & IGST from order in magento 2
how to get this amount? I try - foreach ($_order->getAllVisibleItems() as $item) { $productId = $item->getProductId(); $productName = $item->getName(); $productSku = $item->getSku(); $...
0 votes
0 answers
59 views
Magento 2.3.2. Why is my VAT Tax Rate Changing without me changing it?
Bizarre problem here. I live in the UK so have VAT rates set at 20%. All vatable products are assigned 'M2E Product Tax Class' which has been assigned the tax rate of 20%. All has been hunky dory for ...
0 votes
1 answer
162 views
Setup particular product tax in all countries
I want to add a 5% additional tax to a particular simple product in all countries. I looked into Fixed Product Tax, but that only allows to choose from one country at a time. If I wanted to add the ...