-
Notifications
You must be signed in to change notification settings - Fork 17
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
Taxes missing at all? #4
Comments
Hi @papillon6 I think we should add configuration to choose needed behaviour. |
The Problem here is the sorting, Magento is a bit buggy here. You have to play a bit with the values. Multiple values could be needed and could be used by "," as separator. E.g. Take a look into sales config for examples: |
Well as I figured out, this will only fix the tax usage in general, but not the tax calculation for the fee amount. For this it seems you have to add the tax in the collect method, which worked for me so far. Maybe there is a better way. |
Any news on this problem? |
Actually there is no solution yet @crysix |
Hi Yvoronoy, |
Is there a way to add the proper amount to the taxes and the total so that calculations are correct? Right now the extra fee is like a totally separate amount added to the total and does not respect any taxes, which creates problems with various payment processors (e.g. I'm personally having problems with myPos). |
Hi yvoronoy,
i think i found a bug. The extra fee is just added "on top" of all costs, without respecting taxes. Here a short example.
First without extra fee - standard functions of magento:
subtotal (without tax): 10€
shipping (without tax): 5€
/---------------------------------
tax (19%): 2,85€
/---------------------------------
total (including tax): 17,85€
Now i add an extra fee of 5€. What your extension does:
subtotal (without tax): 10€
shipping (without tax): 5€
/---------------------------------
tax (19%): 2,85€
extra fee: 5€
/---------------------------------
total (including tax): 22,85€
That's obviously wrong, because the extra fee is calculated without any taxes.
What it should do:
subtotal (without tax): 10€
shipping (without tax): 5€
extra fee (without tax): 5€
/---------------------------------
tax (19%): 3,80€
/---------------------------------
total (including tax): 23,80€
Did i miss a configuration-option?
Regards!
The text was updated successfully, but these errors were encountered: