Customise gst rows into column

In your table where you have the below

<td style="width: 11%; text-align: right;"><font size = "1">{{

            "₹ {:,.2f}".format(cgst_amt[0])  }}<br><small>{{

            it_cgst_rate[0] }}%</small></font></td>

        <td style="width: 11%; text-align: right;"><font size = "1">{{

            "₹ {:,.2f}".format(sgst_amt[0])  }}<br><small>{{

            it_sgst_rate[0] }}%</small></font></td>

        <td style="width: 11%; text-align: right;"><font size = "1">{{

            "₹ {:,.2f}".format(igst_amt[0])  }}<br><small>{{

            it_igst_rate[0] }}%</small></font></td>

add in style display:none; for each and you would need to adjust the width of the other elements in reponse to that… you would need to play around with it to get the proper value

Remove this line in TOTAL

<TD WIDTH=20% align=right><B>{{ doc.get_formatted("base_grand_total", doc) }}</B></TD>

Thank you very much

I got desired output