fix: Place of supply fix

This commit is contained in:
Deepesh Garg 2020-08-08 22:33:18 +05:30
parent 5ac2fd94f0
commit d4ecf426b7

View File

@ -337,7 +337,7 @@ class GSTR3BReport(Document):
if state_number != value.get('place_of_supply').split("-")[0]: if state_number != value.get('place_of_supply').split("-")[0]:
inter_state_supply_details.setdefault((value.get('gst_category'), value.get('place_of_supply')), { inter_state_supply_details.setdefault((value.get('gst_category'), value.get('place_of_supply')), {
"txval": 0.0, "txval": 0.0,
"pos": d.place_of_supply.split("-")[0], "pos": value.get('place_of_supply').split("-")[0],
"iamt": 0.0 "iamt": 0.0
}) })