-
Notifications
You must be signed in to change notification settings - Fork 171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[4.x]: Tax removal on order level broken #3386
Comments
Related to this: The EU Tax rate handling here commerce/src/adjusters/Tax.php Lines 326 to 353 in b159275
is incomplete. You are only allowed to remove the VAT when the customer is in another EU country. E.g. When the shop country is Belgium and the customer country is France and the customer provided a valid EU Vat ID then the VAT can be removed. When the customer's country is Belgium, too, the VAT cannot be removed. Anyway, it would also be good to know if Commerce has removed the VAT because then we are required to notify the customer that it is her/his responsibility to pay the VAT with the reverse charge mechanism ( see https://taxation-customs.ec.europa.eu/vat-invoicing-rules_en#:~:text=Customer%20liable%20for%20the%20tax%20(i.e.%20under%20the%20reverse%2Dcharge%20procedure)%20%E2%80%93%20the%20words%20%E2%80%98Reverse%20charge%E2%80%99. ) |
Thanks for reporting this. Apologies for not responding. We are looking into deprecating the use of order level and shipping level taxes, due to the complexity it adds to the tax calulation. It also makes sense as we also look to move shipping costs to be a taxable line item cost. Order level taxes should dont make sense since they don't have a tax category, and nearly all jurisdictions have a tax rate per product type anyway. Why do you use order level taxes if the same rate can be applied to all items? We recommend you cease using order level tax rates if this is causing you issues for your jurisdictions/markets. As of Commerce 3.1, discounts now only apply at an item level so it would also fix any disconnect with discounts you mentioned. In the meantime since Commerce 5.3 you can also create your own tax ID validator (or extend ours) which would let you conditionally validate the tax ID depending on the context. @d--j I have also added a discussion item here for your input on options for removing tax: This would allow you to set the rate to zero so that the tax adjustment shows up with a zero amount if certain conditions are met. @WHITE-developer could you please send your current DB backup, composer.json and composer.lock with steps to reproduce your issue (with reference to the Order/Cart number affected) and also reference this issue. We will try to look into if there is a simple fix while still using order level taxes. |
What happened?
Description
On an order when you have a valid EU vat-id the tax doesn't get removed on order level because it gets removed by the discount logic.
Steps to reproduce
Expected behavior
Negative tax applied on order level
Actual behavior
Tax line just removed https://github.com/craftcms/commerce/blob/develop/src/adjusters/Discount.php#L139
Solution?
getTotalTax() / getTotalTaxIncluded()
andgetTotalDiscount()
more logical in its values.Craft CMS version
4.7.3
Craft Commerce version
4.4.1.1
PHP version
8.3.2
Operating system and version
No response
Database type and version
No response
Image driver and version
No response
Installed plugins and versions
No response
The text was updated successfully, but these errors were encountered: