From ea2038489fd6b225154eb0d11bf9ce5eb5983e14 Mon Sep 17 00:00:00 2001 From: Subin Tom Date: Mon, 11 Oct 2021 11:11:01 +0530 Subject: [PATCH] fix: 'Taxjar' type fix --- erpnext/patches/v13_0/custom_fields_for_taxjar_integration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/patches/v13_0/custom_fields_for_taxjar_integration.py b/erpnext/patches/v13_0/custom_fields_for_taxjar_integration.py index ae129f6b05..4f38af4523 100644 --- a/erpnext/patches/v13_0/custom_fields_for_taxjar_integration.py +++ b/erpnext/patches/v13_0/custom_fields_for_taxjar_integration.py @@ -12,7 +12,7 @@ def execute(): if not company: return - frappe.reload_doctype("Taxjar Settings", force=True) + frappe.reload_doctype("TaxJar Settings", force=True) TAXJAR_CREATE_TRANSACTIONS = frappe.db.get_single_value("TaxJar Settings", "taxjar_create_transactions") TAXJAR_CALCULATE_TAX = frappe.db.get_single_value("TaxJar Settings", "taxjar_calculate_tax")