mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-13 01:34:10 +00:00
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:
@@ -71,8 +71,6 @@ class Gstr2Report(Gstr1Report):
|
||||
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:
|
||||
self.igst_invoices.append(d[0])
|
||||
if is_igst:
|
||||
break
|
||||
|
||||
def get_conditions(self):
|
||||
conditions = ""
|
||||
|
||||
Reference in New Issue
Block a user