From beb873a9b1cfd787b89b6d9a5a1990e38680e12f Mon Sep 17 00:00:00 2001 From: Casey Date: Wed, 18 Feb 2026 11:09:05 -0600 Subject: [PATCH] update fixtures and install.py --- custom_ui/install.py | 1 + 1 file changed, 1 insertion(+) diff --git a/custom_ui/install.py b/custom_ui/install.py index 441459c..f174979 100644 --- a/custom_ui/install.py +++ b/custom_ui/install.py @@ -1727,6 +1727,7 @@ def create_companies(): # Idempotency check if frappe.db.exists("Company", {"name": company["company_name"]}): continue + print(f"❌ Company '{company['company_name']}' does not exist. Creating...") doc: Company = frappe.get_doc({ "doctype": "Company", "company_name": company["company_name"],