fix: Supply type for overseas invoices with payment of tax
(cherry picked from commit d7cb269e0c)
This commit is contained in:
@@ -130,7 +130,10 @@ def get_transaction_details(invoice):
|
|||||||
elif invoice.gst_category == "SEZ":
|
elif invoice.gst_category == "SEZ":
|
||||||
supply_type = "SEZWOP"
|
supply_type = "SEZWOP"
|
||||||
elif invoice.gst_category == "Overseas":
|
elif invoice.gst_category == "Overseas":
|
||||||
|
if invoice.export_type == "Without Payment of Tax":
|
||||||
supply_type = "EXPWOP"
|
supply_type = "EXPWOP"
|
||||||
|
else:
|
||||||
|
supply_type = "EXPWP"
|
||||||
elif invoice.gst_category == "Deemed Export":
|
elif invoice.gst_category == "Deemed Export":
|
||||||
supply_type = "DEXP"
|
supply_type = "DEXP"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user