Skip to content

Commit

Permalink
Merge pull request #2090 from resilient-tech/mergify/bp/version-15-ho…
Browse files Browse the repository at this point in the history
…tfix/pr-2088

fix: Remove check digit validation for transporter id (backport #2088)
  • Loading branch information
mergify[bot] authored Apr 29, 2024
2 parents ed318e1 + 4cee560 commit 8a57a86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion india_compliance/gst_india/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def validate_gstin(
title=_("Invalid {0}").format(label),
)

if not (is_transporter_id and gstin.startswith("88")):
if not is_transporter_id:
validate_gstin_check_digit(gstin, label)

if is_tcs_gstin and not TCS.match(gstin):
Expand Down

0 comments on commit 8a57a86

Please sign in to comment.