mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-15 11:09:17 +00:00
Merge pull request #9732 from adityaduggal/gstin_NA
First 2 digit validation would disregard NA values
This commit is contained in:
@@ -19,6 +19,6 @@ def validate_gstin_for_india(doc, method):
|
|||||||
|
|
||||||
if doc.gst_state:
|
if doc.gst_state:
|
||||||
doc.gst_state_number = state_numbers[doc.gst_state]
|
doc.gst_state_number = state_numbers[doc.gst_state]
|
||||||
if doc.gst_state_number != doc.gstin[:2]:
|
if doc.gstin != "NA" and doc.gst_state_number != doc.gstin[:2]:
|
||||||
frappe.throw(_("First 2 digits of GSTIN should match with State number {0}")
|
frappe.throw(_("First 2 digits of GSTIN should match with State number {0}")
|
||||||
.format(doc.gst_state_number))
|
.format(doc.gst_state_number))
|
||||||
Reference in New Issue
Block a user