mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-19 13:09:17 +00:00
fix: GSTR3b 3b template fix (#17224)
This commit is contained in:
@@ -111,21 +111,21 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td>{{__("Suppliies made to Composition Taxable Persons")}}</td>
|
<td>{{__("Suppliies made to Composition Taxable Persons")}}</td>
|
||||||
<td class="right">
|
<td class="right">
|
||||||
{% for row in data.inter_sup.unreg_details %}
|
{% for row in data.inter_sup.comp_details %}
|
||||||
{% if row %}
|
{% if row %}
|
||||||
{{ row.pos }}<br>
|
{{ row.pos }}<br>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</td>
|
</td>
|
||||||
<td class="right">
|
<td class="right">
|
||||||
{% for row in data.inter_sup.unreg_details %}
|
{% for row in data.inter_sup.comp_details %}
|
||||||
{% if row %}
|
{% if row %}
|
||||||
{{ flt(row.txval, 2) }}<br>
|
{{ flt(row.txval, 2) }}<br>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</td>
|
</td>
|
||||||
<td class="right">
|
<td class="right">
|
||||||
{% for row in data.inter_sup.unreg_details %}
|
{% for row in data.inter_sup.comp_details %}
|
||||||
{% if row %}
|
{% if row %}
|
||||||
{{ flt(row.iamt, 2) }}<br>
|
{{ flt(row.iamt, 2) }}<br>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@@ -135,21 +135,21 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td>{{__("Supplies made to UIN holders")}}</td>
|
<td>{{__("Supplies made to UIN holders")}}</td>
|
||||||
<td class="right">
|
<td class="right">
|
||||||
{% for row in data.inter_sup.unreg_details %}
|
{% for row in data.inter_sup.uin_details %}
|
||||||
{% if row %}
|
{% if row %}
|
||||||
{{ row.pos }}<br>
|
{{ row.pos }}<br>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</td>
|
</td>
|
||||||
<td class="right">
|
<td class="right">
|
||||||
{% for row in data.inter_sup.unreg_details %}
|
{% for row in data.inter_sup.uin_details %}
|
||||||
{% if row %}
|
{% if row %}
|
||||||
{{ flt(row.txval, 2) }}<br>
|
{{ flt(row.txval, 2) }}<br>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</td>
|
</td>
|
||||||
<td class="right">
|
<td class="right">
|
||||||
{% for row in data.inter_sup.unreg_details %}
|
{% for row in data.inter_sup.uin_details %}
|
||||||
{% if row %}
|
{% if row %}
|
||||||
{{ flt(row.iamt, 2) }}<br>
|
{{ flt(row.iamt, 2) }}<br>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
Reference in New Issue
Block a user