-
-
Notifications
You must be signed in to change notification settings - Fork 167
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
Wrong tax calculation #781
Comments
Hello, I understood EN16931-1 that the line net amounts (qty*price/basis+charges-allowances) have to be rounded to two digits (where qty and price are not limited by digits, i.e. a XML type with ~19 decimals), the percentage is then applied on the (2 digit rounded)sum of all lines of the same tax case (specifically example 1 in EN16931) and again rounded to two digits? I believe itemTotalNetAmount should be the sum of the line totals, which should already been rounded to 2 digits, so why would we need another rounding there? |
@jstaerk you can see it in this xml structure, the invoice has a gross price of 19.99 but in the xml is a gross price of 20.00 because the tax rounding is wrong.
|
And please also check the following situation, which is probably due to the fact that a company calculates gross prices for its products (wants round final prices to customers). Exemplary invoice values:
The price of one single item on the invoice is 79.20 euros (gross). This results in a net price of 66.55 euros (79.20 € / 1.19 = 66.5546... € = 66.55 € rounded) and a tax (19%) of 12.65 euros (79.20 € - 66.55 €). In my opinion, the calculation is correct and other validators do not object to this either. However, Mustang reports the following error and aborts:
Can this be remedied? Or at least: Is it possible to bypass this (so that no fatal error will be raised = stop) or disable this check? |
@robertholfeld I'm closing this because the invoice is entirely correct, if you invoice 18,69 with 7% VAT that amounts to 19,9983€ which is correctly rounded as specified in EN16931 to 20€. Sorry guys but I cant provide that feature before it is specified and actually allowed :-( |
@jstaerk I can not follow you. The gross price of the invoice is 19.99€ not 20€. It should not make a difference of the price if i pay the products within one invoice or multiple invoices. With your rounding at the end its also not possible to cancel single positions of this invoice because then you get additional rounding problems. |
When multiple positions have the same tax amount then this amount is summarized with 4 digits and then rounded. This results into a wrong tax amount because the amount has to be rounded for each position.
For example a invoice with 4 positions:
So in this case the xml will create a tax amount of 1.3088 which is rounded to 2 digits 1.31 but we have a tax amount of 1.30
This can be fixed if in LineCalculator.java the itemTotalVATAmount will be scaled to 2 digits.
itemTotalVATAmount = itemTotalNetAmount.multiply(multiplicator).setScale(2, RoundingMode.HALF_UP);
The text was updated successfully, but these errors were encountered: