Skip to content

Commit

Permalink
fix: correct taxes for overseas customer
Browse files Browse the repository at this point in the history
  • Loading branch information
ljain112 committed Dec 31, 2024
1 parent cdd0d2b commit 749c04b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion india_compliance/gst_india/overrides/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,9 @@ def get_gst_details(party_details, doctype, company, *, update_place_of_supply=F
or (
is_sales_transaction
and is_export_without_payment_of_gst(
frappe._dict({**party_details, "doctype": doctype})
party_details.copy().update(
doctype=doctype, place_of_supply=gst_details.place_of_supply
)
)
)
or (
Expand Down

0 comments on commit 749c04b

Please sign in to comment.