diff --git a/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html b/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html
index 4bf0de1ad21..77a9b63dfef 100644
--- a/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html
+++ b/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html
@@ -111,21 +111,21 @@
| {{__("Suppliies made to Composition Taxable Persons")}} |
- {% for row in data.inter_sup.unreg_details %}
+ {% for row in data.inter_sup.comp_details %}
{% if row %}
{{ row.pos }}
{% endif %}
{% endfor %}
|
- {% for row in data.inter_sup.unreg_details %}
+ {% for row in data.inter_sup.comp_details %}
{% if row %}
{{ flt(row.txval, 2) }}
{% endif %}
{% endfor %}
|
- {% for row in data.inter_sup.unreg_details %}
+ {% for row in data.inter_sup.comp_details %}
{% if row %}
{{ flt(row.iamt, 2) }}
{% endif %}
@@ -135,21 +135,21 @@
|
| {{__("Supplies made to UIN holders")}} |
- {% for row in data.inter_sup.unreg_details %}
+ {% for row in data.inter_sup.uin_details %}
{% if row %}
{{ row.pos }}
{% endif %}
{% endfor %}
|
- {% for row in data.inter_sup.unreg_details %}
+ {% for row in data.inter_sup.uin_details %}
{% if row %}
{{ flt(row.txval, 2) }}
{% endif %}
{% endfor %}
|
- {% for row in data.inter_sup.unreg_details %}
+ {% for row in data.inter_sup.uin_details %}
{% if row %}
{{ flt(row.iamt, 2) }}
{% endif %}
|