fix: update standard dropdown items from hooks while install and after migrate
This commit is contained in:
parent
8e703dd723
commit
6cc22d8795
@ -3,6 +3,7 @@
|
|||||||
|
|
||||||
import frappe
|
import frappe
|
||||||
from frappe.model.document import Document
|
from frappe.model.document import Document
|
||||||
|
|
||||||
from crm.install import after_install
|
from crm.install import after_install
|
||||||
|
|
||||||
|
|
||||||
@ -10,3 +11,28 @@ class FCRMSettings(Document):
|
|||||||
@frappe.whitelist()
|
@frappe.whitelist()
|
||||||
def restore_defaults(self, force=False):
|
def restore_defaults(self, force=False):
|
||||||
after_install(force)
|
after_install(force)
|
||||||
|
|
||||||
|
|
||||||
|
def after_migrate():
|
||||||
|
sync_table("dropdown_items", "standard_dropdown_items")
|
||||||
|
|
||||||
|
|
||||||
|
def sync_table(key, hook):
|
||||||
|
crm_settings = FCRMSettings("FCRM Settings")
|
||||||
|
existing_items = {d.name1: d for d in crm_settings.get(key)}
|
||||||
|
new_standard_items = {}
|
||||||
|
|
||||||
|
# add new items
|
||||||
|
count = 0 # maintain count because list may come from seperate apps
|
||||||
|
for item in frappe.get_hooks(hook):
|
||||||
|
if item.get("name1") not in existing_items:
|
||||||
|
crm_settings.append(key, item, count)
|
||||||
|
new_standard_items[item.get("name1")] = True
|
||||||
|
count += 1
|
||||||
|
|
||||||
|
# remove unused items
|
||||||
|
items = crm_settings.get(key)
|
||||||
|
items = [item for item in items if not (item.is_standard and (item.name1 not in new_standard_items))]
|
||||||
|
crm_settings.set(key, items)
|
||||||
|
|
||||||
|
crm_settings.save()
|
||||||
|
|||||||
146
crm/hooks.py
146
crm/hooks.py
@ -57,7 +57,7 @@ add_to_apps_screen = [
|
|||||||
|
|
||||||
# website user home page (by Role)
|
# website user home page (by Role)
|
||||||
# role_home_page = {
|
# role_home_page = {
|
||||||
# "Role": "home_page"
|
# "Role": "home_page"
|
||||||
# }
|
# }
|
||||||
|
|
||||||
website_route_rules = [
|
website_route_rules = [
|
||||||
@ -75,8 +75,8 @@ website_route_rules = [
|
|||||||
|
|
||||||
# add methods and filters to jinja environment
|
# add methods and filters to jinja environment
|
||||||
# jinja = {
|
# jinja = {
|
||||||
# "methods": "crm.utils.jinja_methods",
|
# "methods": "crm.utils.jinja_methods",
|
||||||
# "filters": "crm.utils.jinja_filters"
|
# "filters": "crm.utils.jinja_filters"
|
||||||
# }
|
# }
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
@ -118,11 +118,11 @@ before_uninstall = "crm.uninstall.before_uninstall"
|
|||||||
# Permissions evaluated in scripted ways
|
# Permissions evaluated in scripted ways
|
||||||
|
|
||||||
# permission_query_conditions = {
|
# permission_query_conditions = {
|
||||||
# "Event": "frappe.desk.doctype.event.event.get_permission_query_conditions",
|
# "Event": "frappe.desk.doctype.event.event.get_permission_query_conditions",
|
||||||
# }
|
# }
|
||||||
#
|
#
|
||||||
# has_permission = {
|
# has_permission = {
|
||||||
# "Event": "frappe.desk.doctype.event.event.has_permission",
|
# "Event": "frappe.desk.doctype.event.event.has_permission",
|
||||||
# }
|
# }
|
||||||
|
|
||||||
# DocType Class
|
# DocType Class
|
||||||
@ -155,32 +155,34 @@ doc_events = {
|
|||||||
"on_update": ["crm.api.whatsapp.on_update"],
|
"on_update": ["crm.api.whatsapp.on_update"],
|
||||||
},
|
},
|
||||||
"CRM Deal": {
|
"CRM Deal": {
|
||||||
"on_update": ["crm.fcrm.doctype.erpnext_crm_settings.erpnext_crm_settings.create_customer_in_erpnext"],
|
"on_update": [
|
||||||
|
"crm.fcrm.doctype.erpnext_crm_settings.erpnext_crm_settings.create_customer_in_erpnext"
|
||||||
|
],
|
||||||
},
|
},
|
||||||
"User": {
|
"User": {
|
||||||
"before_validate": ["crm.api.demo.validate_user"],
|
"before_validate": ["crm.api.demo.validate_user"],
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
# Scheduled Tasks
|
# Scheduled Tasks
|
||||||
# ---------------
|
# ---------------
|
||||||
|
|
||||||
# scheduler_events = {
|
# scheduler_events = {
|
||||||
# "all": [
|
# "all": [
|
||||||
# "crm.tasks.all"
|
# "crm.tasks.all"
|
||||||
# ],
|
# ],
|
||||||
# "daily": [
|
# "daily": [
|
||||||
# "crm.tasks.daily"
|
# "crm.tasks.daily"
|
||||||
# ],
|
# ],
|
||||||
# "hourly": [
|
# "hourly": [
|
||||||
# "crm.tasks.hourly"
|
# "crm.tasks.hourly"
|
||||||
# ],
|
# ],
|
||||||
# "weekly": [
|
# "weekly": [
|
||||||
# "crm.tasks.weekly"
|
# "crm.tasks.weekly"
|
||||||
# ],
|
# ],
|
||||||
# "monthly": [
|
# "monthly": [
|
||||||
# "crm.tasks.monthly"
|
# "crm.tasks.monthly"
|
||||||
# ],
|
# ],
|
||||||
# }
|
# }
|
||||||
|
|
||||||
# Testing
|
# Testing
|
||||||
@ -192,14 +194,14 @@ doc_events = {
|
|||||||
# ------------------------------
|
# ------------------------------
|
||||||
#
|
#
|
||||||
# override_whitelisted_methods = {
|
# override_whitelisted_methods = {
|
||||||
# "frappe.desk.doctype.event.event.get_events": "crm.event.get_events"
|
# "frappe.desk.doctype.event.event.get_events": "crm.event.get_events"
|
||||||
# }
|
# }
|
||||||
#
|
#
|
||||||
# each overriding function accepts a `data` argument;
|
# each overriding function accepts a `data` argument;
|
||||||
# generated from the base implementation of the doctype dashboard,
|
# generated from the base implementation of the doctype dashboard,
|
||||||
# along with any modifications made in other Frappe apps
|
# along with any modifications made in other Frappe apps
|
||||||
# override_doctype_dashboards = {
|
# override_doctype_dashboards = {
|
||||||
# "Task": "crm.task.get_dashboard_data"
|
# "Task": "crm.task.get_dashboard_data"
|
||||||
# }
|
# }
|
||||||
|
|
||||||
# exempt linked doctypes from being automatically cancelled
|
# exempt linked doctypes from being automatically cancelled
|
||||||
@ -225,29 +227,87 @@ doc_events = {
|
|||||||
# --------------------
|
# --------------------
|
||||||
|
|
||||||
# user_data_fields = [
|
# user_data_fields = [
|
||||||
# {
|
# {
|
||||||
# "doctype": "{doctype_1}",
|
# "doctype": "{doctype_1}",
|
||||||
# "filter_by": "{filter_by}",
|
# "filter_by": "{filter_by}",
|
||||||
# "redact_fields": ["{field_1}", "{field_2}"],
|
# "redact_fields": ["{field_1}", "{field_2}"],
|
||||||
# "partial": 1,
|
# "partial": 1,
|
||||||
# },
|
# },
|
||||||
# {
|
# {
|
||||||
# "doctype": "{doctype_2}",
|
# "doctype": "{doctype_2}",
|
||||||
# "filter_by": "{filter_by}",
|
# "filter_by": "{filter_by}",
|
||||||
# "partial": 1,
|
# "partial": 1,
|
||||||
# },
|
# },
|
||||||
# {
|
# {
|
||||||
# "doctype": "{doctype_3}",
|
# "doctype": "{doctype_3}",
|
||||||
# "strict": False,
|
# "strict": False,
|
||||||
# },
|
# },
|
||||||
# {
|
# {
|
||||||
# "doctype": "{doctype_4}"
|
# "doctype": "{doctype_4}"
|
||||||
# }
|
# }
|
||||||
# ]
|
# ]
|
||||||
|
|
||||||
# Authentication and authorization
|
# Authentication and authorization
|
||||||
# --------------------------------
|
# --------------------------------
|
||||||
|
|
||||||
# auth_hooks = [
|
# auth_hooks = [
|
||||||
# "crm.auth.validate"
|
# "crm.auth.validate"
|
||||||
# ]
|
# ]
|
||||||
|
|
||||||
|
after_migrate = ["crm.fcrm.doctype.fcrm_settings.fcrm_settings.after_migrate"]
|
||||||
|
|
||||||
|
standard_dropdown_items = [
|
||||||
|
{
|
||||||
|
"name1": "app_selector",
|
||||||
|
"label": "Apps",
|
||||||
|
"type": "Route",
|
||||||
|
"route": "#",
|
||||||
|
"is_standard": 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name1": "support_link",
|
||||||
|
"label": "Support",
|
||||||
|
"type": "Route",
|
||||||
|
"icon": "life-buoy",
|
||||||
|
"route": "https://t.me/frappecrm",
|
||||||
|
"is_standard": 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name1": "docs_link",
|
||||||
|
"label": "Docs",
|
||||||
|
"type": "Route",
|
||||||
|
"icon": "book-open",
|
||||||
|
"route": "https://docs.frappe.io/crm",
|
||||||
|
"is_standard": 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name1": "toggle_theme",
|
||||||
|
"label": "Toggle theme",
|
||||||
|
"type": "Route",
|
||||||
|
"icon": "moon",
|
||||||
|
"route": "#",
|
||||||
|
"is_standard": 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name1": "settings",
|
||||||
|
"label": "Settings",
|
||||||
|
"type": "Route",
|
||||||
|
"icon": "settings",
|
||||||
|
"route": "#",
|
||||||
|
"is_standard": 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name1": "separator",
|
||||||
|
"label": "",
|
||||||
|
"type": "Separator",
|
||||||
|
"is_standard": 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name1": "logout",
|
||||||
|
"label": "Log out",
|
||||||
|
"type": "Route",
|
||||||
|
"icon": "log-out",
|
||||||
|
"route": "#",
|
||||||
|
"is_standard": 1,
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|||||||
@ -18,6 +18,7 @@ def after_install(force=False):
|
|||||||
add_email_template_custom_fields()
|
add_email_template_custom_fields()
|
||||||
add_default_industries()
|
add_default_industries()
|
||||||
add_default_lead_sources()
|
add_default_lead_sources()
|
||||||
|
add_standard_dropdown_items()
|
||||||
frappe.db.commit()
|
frappe.db.commit()
|
||||||
|
|
||||||
|
|
||||||
@ -333,3 +334,18 @@ def add_default_lead_sources():
|
|||||||
doc = frappe.new_doc("CRM Lead Source")
|
doc = frappe.new_doc("CRM Lead Source")
|
||||||
doc.source_name = source
|
doc.source_name = source
|
||||||
doc.insert()
|
doc.insert()
|
||||||
|
|
||||||
|
|
||||||
|
def add_standard_dropdown_items():
|
||||||
|
crm_settings = frappe.get_single("FCRM Settings")
|
||||||
|
|
||||||
|
# don't add dropdown items if they're already present
|
||||||
|
if crm_settings.dropdown_items:
|
||||||
|
return
|
||||||
|
|
||||||
|
crm_settings.dropdown_items = []
|
||||||
|
|
||||||
|
for item in frappe.get_hooks("standard_dropdown_items"):
|
||||||
|
crm_settings.append("dropdown_items", item)
|
||||||
|
|
||||||
|
crm_settings.save()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user