-- HikaShop version -- : 2.6.2
-- Joomla version -- : 3.6.4
I have a client whose site is calculating taxes for a specific region (6% tax in Florida, US).
For the most part its working but it's always off by a small amount. Looking at this closer, I think it has to do with a rounding error or something. For instance, look at the screenshot below:
Notice that each item is $0.29 + $0.02 Tax. That's a rounding on the $0.3074 cents per item that it should be. When you multiply that .0025 difference 800 times, it adds up!
Expectation: (800 * 0.29) * 1.06 = $245.92
Actual: (800 * 0.31) = $248.00
Am I doing something wrong?