-
Notifications
You must be signed in to change notification settings - Fork 62
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
Shipping tax displayed seperatly in grandtotal -> how to change? #316
Comments
In the totals block taxes included in shipping costs are displayed seperatly. In order views or cart the taxes for shipping are combined with the product taxes. So this is correct (taxes for shipping added to the 19%): Subtotal €26.50: And this is the grandtotal in invoice PDF: Subtotal: 26,50 € How i add the shipping tax to the other 19% taxes? Do i have to change Abstract.php (function insertTotals)? |
I understand your issue and I think it would be much better if the shipping taxes would be included in the 7% / 19% taxes, but this is how Magento handles it. You may be able to change this with a hack in the |
Had the same issue. Just add a model to your config.xml
Your Grandtotal.php should have:
Luckily the origin |
@nige-one serious? If you return |
We should add a section to the FAQ for this. Me personally wanted this feature at least once :-) |
If this works reliably in all versions, we should implement a configuration option for it and should default it to "yes". In theory, it is a requirement in Germany to show the exact tax amount. So this is the last bit of making our PDFs valid for Germany. |
I guess returning a |
Would be great to add this option and set it to yes by default. |
@nige-one will you implement this or should I try to do it? |
Not sure if this makes sense because this behaviour results from Magento core. Look at Firegento_PDF relies on Magento's total block rendering, since My first solution is still my favorite one. But of instead of returning 0 you have to return an empty array of course.
To make it an option in Firegento_PDF I think using @sprankhub maybe we can talk this through before implementing it?!? |
If your idea/fix results in the situation that taxes are splitted by tax rate, I think it is great! Since we already rewrite |
No description provided.
The text was updated successfully, but these errors were encountered: