Skip to content

Commit

Permalink
Merge pull request #2836 from vorasmit/overseas-tax
Browse files Browse the repository at this point in the history
fix: correct categorisation of is_export and fetching taxes accordingly
  • Loading branch information
vorasmit authored Dec 12, 2024
2 parents 231650e + ae4792e commit c503988
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion india_compliance/gst_india/overrides/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -925,7 +925,12 @@ def get_gst_details(party_details, doctype, company, *, update_place_of_supply=F
== party_details.get(party_gstin_field)
) # Internal transfer
)
or (is_sales_transaction and is_export_without_payment_of_gst(party_details))
or (
is_sales_transaction
and is_export_without_payment_of_gst(
frappe._dict({**party_details, "doctype": doctype})
)
)
or (
not is_sales_transaction
and (
Expand Down

0 comments on commit c503988

Please sign in to comment.