First 2 digit validation would disregard NA values

This commit is contained in:
Aditya Duggal 2017-07-08 13:35:01 +05:30
parent ab59e4769b
commit 0e285265b1

View File

@ -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}")