Merge pull request #24173 from deepeshgarg007/tax_category_typo_v13

fix: Typo in tax category doctype query
This commit is contained in:
Deepesh Garg 2020-12-17 18:51:45 +05:30 committed by GitHub
commit a42f245399
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: