Open
Description
In J9wdQdgDYRXSBc9Dp.pdf the total amount was rounded to ONE digit behind the comma after adding the vat.
27.75 * 1,07 = 29,6925 != 29,70
And of course if you try to calculate the vat via the brutto-amount (29,70 * 0.07 / 1,07) you get 1,942990654 which rounds to 1,94 and not 1,95.
Because of this, the our data and the data on the bill does not match. So of course while generating data for ml the process "add_prices" did not find the correct price for the vat.
Question now is:
Is this enough reason to implement some sort of rounding step, which takes such cases into account?