Skip to content

Commit

Permalink
fix: remove check digit validation for transporter id
Browse files Browse the repository at this point in the history
(cherry picked from commit 8cfa209)
  • Loading branch information
vishakhdesai authored and mergify[bot] committed Apr 29, 2024
1 parent d63e4aa commit 193c1a8
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 193c1a8

Please sign in to comment.