Hi,
still using Odoo 8 I miss it to have the possible different taxes under subtotal of affers, invoices aso.
In Germany we have a tax rate of 7% and one of 19%.
If I offer a product with 7% and one with 19% in the same offer there is only the total sum of taxes calculated and shown with the folloing line in the template:
<td>Taxes</td>
<td class="text-right">
<span t-field="o.amount_tax" t-field-options="{"widget": "monetary", "display_currency": "o.pricelist_id.currency_id"}"/>
</td>
How can I get something like a loop to compute each necessary tax and have it printed?
<tr t-foreach="o.amount_tax" ....> could be a start
Thanks for any help