Skip to content

Commit

Permalink
fix(India): Incorrect taxable in GSTR-3B report
Browse files Browse the repository at this point in the history
  • Loading branch information
deepeshgarg007 committed Jun 9, 2022
1 parent 25f9d58 commit 20f568c
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,11 +244,10 @@ def get_outward_items(self, doctype):
)

for d in item_details:
if d.item_code not in self.invoice_items.get(d.parent, {}):
self.invoice_items.setdefault(d.parent, {}).setdefault(d.item_code, 0.0)
self.invoice_items[d.parent][d.item_code] += d.get("taxable_value", 0) or d.get(
"base_net_amount", 0
)
self.invoice_items.setdefault(d.parent, {}).setdefault(d.item_code, 0.0)
self.invoice_items[d.parent][d.item_code] += d.get("taxable_value", 0) or d.get(
"base_net_amount", 0
)

if d.is_nil_exempt and d.item_code not in self.is_nil_exempt:
self.is_nil_exempt.append(d.item_code)
Expand Down Expand Up @@ -335,14 +334,16 @@ def get_outward_tax_details(self, doctype):

def set_outward_taxable_supplies(self):
inter_state_supply_details = {}

invoice_list = {}
for inv, items_based_on_rate in self.items_based_on_tax_rate.items():
gst_category = self.invoice_detail_map.get(inv, {}).get("gst_category")
place_of_supply = (
self.invoice_detail_map.get(inv, {}).get("place_of_supply") or "00-Other Territory"
)
export_type = self.invoice_detail_map.get(inv, {}).get("export_type")

invoice_list.setdefault(inv, 0.0)

for rate, items in items_based_on_rate.items():
for item_code, taxable_value in self.invoice_items.get(inv).items():
if item_code in items:
Expand All @@ -361,7 +362,6 @@ def set_outward_taxable_supplies(self):
else:
self.report_dict["sup_details"]["osup_det"]["iamt"] += taxable_value * rate / 100
self.report_dict["sup_details"]["osup_det"]["txval"] += taxable_value

if (
gst_category in ["Unregistered", "Registered Composition", "UIN Holders"]
and self.gst_details.get("gst_state") != place_of_supply.split("-")[1]
Expand All @@ -374,10 +374,12 @@ def set_outward_taxable_supplies(self):
inter_state_supply_details[(gst_category, place_of_supply)]["iamt"] += (
taxable_value * rate / 100
)
invoice_list[inv] += taxable_value

if self.invoice_cess.get(inv):
self.report_dict["sup_details"]["osup_det"]["csamt"] += flt(self.invoice_cess.get(inv), 2)

print({k: v for k, v in sorted(invoice_list.items(), key=lambda item: item[1])})
self.set_inter_state_supply(inter_state_supply_details)

def set_supplies_liable_to_reverse_charge(self):
Expand Down

0 comments on commit 20f568c

Please sign in to comment.