From 8a562266ade3815f676d1c2452905db171eac69c Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 15 Feb 2018 18:40:18 +0530 Subject: [PATCH] Update set_b2c_limit.py --- erpnext/patches/v10_0/set_b2c_limit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/patches/v10_0/set_b2c_limit.py b/erpnext/patches/v10_0/set_b2c_limit.py index 81c0d4a6f8c..5d964e681ab 100644 --- a/erpnext/patches/v10_0/set_b2c_limit.py +++ b/erpnext/patches/v10_0/set_b2c_limit.py @@ -6,7 +6,7 @@ import frappe def execute(): frappe.reload_doc("regional", "doctype", "gst_settings") - frappe.reload_doc("regional", "doctype", "gst_account") + frappe.reload_doc("accounts", "doctype", "gst_account") gst_settings = frappe.get_doc("GST Settings") gst_settings.b2c_limit = 250000 gst_settings.save()