#dacoin-vat-calculation
1 messages ยท Page 1 of 1 (latest)
This case by example
dacoin-vat-calculation
Could you help me understand what it is you'd expect to see?
With a 20% inclusive TVA, I was expected 10,99ร0,2 = 2.2
TVA calculated on the amountDue, but seems like it's not
Ah, so an inclusive rate means it's already included in the subtotal shown.
If this were an exclusive rate, then the math would be:
19.99 x 0.2 = ~4.00
But since it's inclusive the math is a touch more complex:
16.66 + 3.33 = 19.99 (price + tax = subtotal)
16.66 x .2 = 3.33 (tax is 20%)
Ok thanks! It's clear ๐
Happy to help!