<th class="text-left">CGST</th>
<th class="text-left">SGST</th>
<th class="text-left">IGST</th>
</tr>
{%- for row in doc.items -%}
<tr>
<td class="sgst{{loop.index}}">Nil</td>
<td class="cgst{{loop.index}}">Nil</td>
<td class="igst{{loop.index}}">Nil</td>
</tr>
{%- endfor -%}
</tbody>
Hi
I expected this update v8.3 to include tax breakups in quatations also
any possibilities
i have coded an html one
this is the code
but its not rendering in pdf(values only)
regards
hemanth
<table class="table table-bordered">
<tbody>
<tr>
<th class="text-left">CGST</th>
<th class="text-left">SGST</th>
<th class="text-left">IGST</th>
</tr>
{%- for row in doc.items -%}
<tr>
<td class="sgst{{loop.index}}">Nil</td>
<td class="cgst{{loop.index}}">Nil</td>
<td class="igst{{loop.index}}">Nil</td>
</tr>
{%- endfor -%}
</tbody>
Please check out this link and the discussion around it:
Hi,
I have created some code for calculating tax at item level. Here is the link for it. This method checks for the tax rate at item level first, and calculates the tax amount based on that. If the tax rate is not found at item level, it calculates the tax at invoice level. Have added some custom fields on that for state and gstin and HSN code on Sales Invoice. Though, the code is a little long, it works for me. Maybe, ERPNext might come up with some simpler code… Till then, you can check this …
Thanks
Jay