it's my xml file.
<div class="col-xs-6 pull-left">
<table class="table">
<tr>
<td>Tax</td>
<td>Base</td>
<td>Amount</td>
</tr>
<tr class="tax-col">
<t t-foreach="doc.order_line" t-as="i">
<tr t-if="i.product_uom_qty">
<td class="text-left">
<!-- <span t-esc="', '.join(map(lambda h: (h.description or h.name), i.tax_id))"/> -->
<!-- <span t-field="i.tax_id"/> -->
<span t-field="doc.account_tax.name"/>
</td>
<td class="text-left">
<span t-field="doc.amount_untaxed"
t-field-options='{"widget": "monetary", "display_currency": "doc.pricelist_id.currency_id"}'/>
</td>
<td>
<span t-field="i.price_tax"/>
</td>
</tr>
</t>
</tr>
</table>
</div>
here i have to get tax from product wise, and i have 2 different taxes VAT and CST and appling the tax on 2 different products.