diff --git a/custom_ui/hooks.py b/custom_ui/hooks.py index d0bb25a..44853f5 100644 --- a/custom_ui/hooks.py +++ b/custom_ui/hooks.py @@ -255,8 +255,7 @@ fixtures = [ # These don't have reliable flags → export all {"dt": "Custom Field"}, - {"dt": "Property Setter", - "filters": [["name", "not in", ["Service Appointment-service_address", "Service Appointment-customer", "Service Appointment-project", "Service Appointment-project_template", "Service Appointment"]],]}, + {"dt": "Property Setter"}, {"dt": "Client Script"}, {"dt": "Server Script"}, # {"dt": "Item"} diff --git a/custom_ui/install.py b/custom_ui/install.py index f6547f7..19b44b5 100644 --- a/custom_ui/install.py +++ b/custom_ui/install.py @@ -8,7 +8,6 @@ import holidays from datetime import date, timedelta from erpnext.accounts.doctype.account.chart_of_accounts.chart_of_accounts import create_charts from erpnext.setup.doctype.company.company import Company -from erpnext.setup.setup_wizard.setup_wizard import setup_defaults def after_install(): # create_module() # add_custom_fields() @@ -33,8 +32,6 @@ def after_install(): print("\nāœ… Custom UI installation complete. Please run `bench migrate` to apply changes to the database and refresh metadata.\n") def after_migrate(): - print("\nšŸ”§ Running post-migrate setup for Custom UI...\n") - setup_defaults() add_custom_fields() # update_onsite_meeting_fields() frappe.db.commit()