Skip to content

Commit

Permalink
Merge pull request #2849 from vorasmit/backport-2836-v14
Browse files Browse the repository at this point in the history
fix: correct categorisation of is_export and fetching taxes accordingly (backport #2836)
  • Loading branch information
vorasmit authored Dec 12, 2024
2 parents d695939 + 1844fcf commit 567e30e
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 @@ -956,7 +956,12 @@ def get_gst_details(party_details, doctype, company, *, update_place_of_supply=F
# Taxes Not Applicable
if (
(destination_gstin and destination_gstin == source_gstin) # 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 567e30e

Please sign in to comment.