Fixed IGST ISSUE (#14975)

* Fixed IGST ISSUE

the flag was not getting reset causing only the first IGST value to be shown and the rest went into SGST and CGST this fixes it

* Update gstr_2.py
This commit is contained in:
darthguru 2018-07-23 11:52:26 +05:30 committed by Nabin Hait
parent 1e90dafef8
commit f2d4e33eb5

View File

@ -71,8 +71,6 @@ class Gstr2Report(Gstr1Report):
is_igst = True if d[1] in self.gst_accounts.igst_account else False is_igst = True if d[1] in self.gst_accounts.igst_account else False
if is_igst and d[0] not in self.igst_invoices: if is_igst and d[0] not in self.igst_invoices:
self.igst_invoices.append(d[0]) self.igst_invoices.append(d[0])
if is_igst:
break
def get_conditions(self): def get_conditions(self):
conditions = "" conditions = ""