Create price list only if setup complete
diff --git a/erpnext/patches/v4_0/create_price_list_if_missing.py b/erpnext/patches/v4_0/create_price_list_if_missing.py
index eeeae19..eea1fd9 100644
--- a/erpnext/patches/v4_0/create_price_list_if_missing.py
+++ b/erpnext/patches/v4_0/create_price_list_if_missing.py
@@ -7,6 +7,10 @@
from frappe.utils.nestedset import get_root_of
def execute():
+ # setup not complete
+ if not frappe.db.sql("""select name from tabCompany limit 1"""):
+ return
+
if not frappe.db.sql("select name from `tabPrice List` where buying=1"):
create_price_list(_("Standard Buying"), buying=1)