fix: Typo in tax category doctype query
This commit is contained in:
parent
7e641f457c
commit
b074334dcf
@ -53,7 +53,7 @@ def validate_gstin_for_india(doc, method):
|
|||||||
.format(doc.gst_state_number))
|
.format(doc.gst_state_number))
|
||||||
|
|
||||||
def validate_tax_category(doc, method):
|
def validate_tax_category(doc, method):
|
||||||
if doc.get('gst_state') and frappe.db.get_value('Tax category', {'gst_state': doc.gst_state, 'is_inter_state': doc.is_inter_state}):
|
if doc.get('gst_state') and frappe.db.get_value('Tax Category', {'gst_state': doc.gst_state, 'is_inter_state': doc.is_inter_state}):
|
||||||
if doc.is_inter_state:
|
if doc.is_inter_state:
|
||||||
frappe.throw(_("Inter State tax category for GST State {0} already exists").format(doc.gst_state))
|
frappe.throw(_("Inter State tax category for GST State {0} already exists").format(doc.gst_state))
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user