From 1b0edbc8b38e8ca1cb6d365f3dbf2701670cfdbf Mon Sep 17 00:00:00 2001
From: Deepesh Garg <42651287+deepeshgarg007@users.noreply.github.com>
Date: Sat, 13 Apr 2019 18:37:08 +0530
Subject: [PATCH] fix: GSTR3b 3b template fix (#17224)
---
.../doctype/gstr_3b_report/gstr_3b_report.html | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
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 %}
|