Merge pull request #27481 from deepeshgarg007/gstin_filter_issue_v13

fix: GSTR-1 Reports not showing any data
This commit is contained in:
Deepesh Garg
2021-09-14 16:59:18 +05:30
committed by GitHub
parent 49fa06f849
commit d5f4160260

View File

@@ -96,6 +96,7 @@ class Gstr1Report(object):
def get_b2c_data(self): def get_b2c_data(self):
b2cs_output = {} b2cs_output = {}
if self.invoices:
for inv, items_based_on_rate in self.items_based_on_tax_rate.items(): for inv, items_based_on_rate in self.items_based_on_tax_rate.items():
invoice_details = self.invoices.get(inv) invoice_details = self.invoices.get(inv)
for rate, items in items_based_on_rate.items(): for rate, items in items_based_on_rate.items():
@@ -173,6 +174,7 @@ class Gstr1Report(object):
company_gstins = get_company_gstin_number(self.filters.get('company'), all_gstins=True) company_gstins = get_company_gstin_number(self.filters.get('company'), all_gstins=True)
if company_gstins:
self.filters.update({ self.filters.update({
'company_gstins': company_gstins 'company_gstins': company_gstins
}) })
@@ -1050,6 +1052,7 @@ def get_company_gstin_number(company, address=None, all_gstins=False):
["Dynamic Link", "link_doctype", "=", "Company"], ["Dynamic Link", "link_doctype", "=", "Company"],
["Dynamic Link", "link_name", "=", company], ["Dynamic Link", "link_name", "=", company],
["Dynamic Link", "parenttype", "=", "Address"], ["Dynamic Link", "parenttype", "=", "Address"],
["gstin", "!=", '']
] ]
gstin = frappe.get_all("Address", filters=filters, pluck="gstin", order_by="is_primary_address desc") gstin = frappe.get_all("Address", filters=filters, pluck="gstin", order_by="is_primary_address desc")
if gstin and not all_gstins: if gstin and not all_gstins: