First 2 digit validation would disregard NA values
This commit is contained in:
parent
ab59e4769b
commit
0e285265b1
@ -17,7 +17,7 @@ def validate_gstin_for_india(doc, method):
|
||||
if doc.state in states:
|
||||
doc.gst_state = doc.state
|
||||
|
||||
if doc.gst_state:
|
||||
if doc.gst_state and doc.gstin != "NA":
|
||||
doc.gst_state_number = state_numbers[doc.gst_state]
|
||||
if doc.gst_state_number != doc.gstin[:2]:
|
||||
frappe.throw(_("First 2 digits of GSTIN should match with State number {0}")
|
||||
|
Loading…
x
Reference in New Issue
Block a user