364 lines
13 KiB
Python
364 lines
13 KiB
Python
# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors
|
|
# MIT License. See license.txt
|
|
import click
|
|
import frappe
|
|
from frappe.custom.doctype.custom_field.custom_field import create_custom_fields
|
|
|
|
from crm.fcrm.doctype.crm_products.crm_products import create_product_details_script
|
|
|
|
|
|
def before_install():
|
|
pass
|
|
|
|
|
|
def after_install(force=False):
|
|
add_default_lead_statuses()
|
|
add_default_deal_statuses()
|
|
add_default_communication_statuses()
|
|
add_default_fields_layout(force)
|
|
add_property_setter()
|
|
add_email_template_custom_fields()
|
|
add_default_industries()
|
|
add_default_lead_sources()
|
|
add_standard_dropdown_items()
|
|
add_default_scripts()
|
|
frappe.db.commit()
|
|
|
|
|
|
def add_default_lead_statuses():
|
|
statuses = {
|
|
"New": {
|
|
"color": "gray",
|
|
"position": 1,
|
|
},
|
|
"Contacted": {
|
|
"color": "orange",
|
|
"position": 2,
|
|
},
|
|
"Nurture": {
|
|
"color": "blue",
|
|
"position": 3,
|
|
},
|
|
"Qualified": {
|
|
"color": "green",
|
|
"position": 4,
|
|
},
|
|
"Unqualified": {
|
|
"color": "red",
|
|
"position": 5,
|
|
},
|
|
"Junk": {
|
|
"color": "purple",
|
|
"position": 6,
|
|
},
|
|
}
|
|
|
|
for status in statuses:
|
|
if frappe.db.exists("CRM Lead Status", status):
|
|
continue
|
|
|
|
doc = frappe.new_doc("CRM Lead Status")
|
|
doc.lead_status = status
|
|
doc.color = statuses[status]["color"]
|
|
doc.position = statuses[status]["position"]
|
|
doc.insert()
|
|
|
|
|
|
def add_default_deal_statuses():
|
|
statuses = {
|
|
"Qualification": {
|
|
"color": "gray",
|
|
"position": 1,
|
|
},
|
|
"Demo/Making": {
|
|
"color": "orange",
|
|
"position": 2,
|
|
},
|
|
"Proposal/Quotation": {
|
|
"color": "blue",
|
|
"position": 3,
|
|
},
|
|
"Negotiation": {
|
|
"color": "yellow",
|
|
"position": 4,
|
|
},
|
|
"Ready to Close": {
|
|
"color": "purple",
|
|
"position": 5,
|
|
},
|
|
"Won": {
|
|
"color": "green",
|
|
"position": 6,
|
|
},
|
|
"Lost": {
|
|
"color": "red",
|
|
"position": 7,
|
|
},
|
|
}
|
|
|
|
for status in statuses:
|
|
if frappe.db.exists("CRM Deal Status", status):
|
|
continue
|
|
|
|
doc = frappe.new_doc("CRM Deal Status")
|
|
doc.deal_status = status
|
|
doc.color = statuses[status]["color"]
|
|
doc.position = statuses[status]["position"]
|
|
doc.insert()
|
|
|
|
|
|
def add_default_communication_statuses():
|
|
statuses = ["Open", "Replied"]
|
|
|
|
for status in statuses:
|
|
if frappe.db.exists("CRM Communication Status", status):
|
|
continue
|
|
|
|
doc = frappe.new_doc("CRM Communication Status")
|
|
doc.status = status
|
|
doc.insert()
|
|
|
|
|
|
def add_default_fields_layout(force=False):
|
|
quick_entry_layouts = {
|
|
"CRM Lead-Quick Entry": {
|
|
"doctype": "CRM Lead",
|
|
"layout": '[{"name": "person_section", "columns": [{"name": "column_5jrk", "fields": ["salutation", "email"]}, {"name": "column_5CPV", "fields": ["first_name", "mobile_no"]}, {"name": "column_gXOy", "fields": ["last_name", "gender"]}]}, {"name": "organization_section", "columns": [{"name": "column_GHfX", "fields": ["organization", "territory"]}, {"name": "column_hXjS", "fields": ["website", "annual_revenue"]}, {"name": "column_RDNA", "fields": ["no_of_employees", "industry"]}]}, {"name": "lead_section", "columns": [{"name": "column_EO1H", "fields": ["status"]}, {"name": "column_RWBe", "fields": ["lead_owner"]}]}]',
|
|
},
|
|
"CRM Deal-Quick Entry": {
|
|
"doctype": "CRM Deal",
|
|
"layout": '[{"name": "organization_section", "hidden": true, "editable": false, "columns": [{"name": "column_GpMP", "fields": ["organization"]}, {"name": "column_FPTn", "fields": []}]}, {"name": "organization_details_section", "editable": false, "columns": [{"name": "column_S3tQ", "fields": ["organization_name", "territory"]}, {"name": "column_KqV1", "fields": ["website", "annual_revenue"]}, {"name": "column_1r67", "fields": ["no_of_employees", "industry"]}]}, {"name": "contact_section", "hidden": true, "editable": false, "columns": [{"name": "column_CeXr", "fields": ["contact"]}, {"name": "column_yHbk", "fields": []}]}, {"name": "contact_details_section", "editable": false, "columns": [{"name": "column_ZTWr", "fields": ["salutation", "email"]}, {"name": "column_tabr", "fields": ["first_name", "mobile_no"]}, {"name": "column_Qjdx", "fields": ["last_name", "gender"]}]}, {"name": "deal_section", "columns": [{"name": "column_mdps", "fields": ["status"]}, {"name": "column_H40H", "fields": ["deal_owner"]}]}]',
|
|
},
|
|
"Contact-Quick Entry": {
|
|
"doctype": "Contact",
|
|
"layout": '[{"name": "salutation_section", "columns": [{"name": "column_eXks", "fields": ["salutation"]}]}, {"name": "full_name_section", "hideBorder": true, "columns": [{"name": "column_cSxf", "fields": ["first_name"]}, {"name": "column_yBc7", "fields": ["last_name"]}]}, {"name": "email_section", "hideBorder": true, "columns": [{"name": "column_tH3L", "fields": ["email_id"]}]}, {"name": "mobile_gender_section", "hideBorder": true, "columns": [{"name": "column_lrfI", "fields": ["mobile_no"]}, {"name": "column_Tx3n", "fields": ["gender"]}]}, {"name": "organization_section", "hideBorder": true, "columns": [{"name": "column_S0J8", "fields": ["company_name"]}]}, {"name": "designation_section", "hideBorder": true, "columns": [{"name": "column_bsO8", "fields": ["designation"]}]}, {"name": "address_section", "hideBorder": true, "columns": [{"name": "column_W3VY", "fields": ["address"]}]}]',
|
|
},
|
|
"CRM Organization-Quick Entry": {
|
|
"doctype": "CRM Organization",
|
|
"layout": '[{"name": "organization_section", "columns": [{"name": "column_zOuv", "fields": ["organization_name"]}]}, {"name": "website_revenue_section", "hideBorder": true, "columns": [{"name": "column_I5Dy", "fields": ["website"]}, {"name": "column_Rgss", "fields": ["annual_revenue"]}]}, {"name": "territory_section", "hideBorder": true, "columns": [{"name": "column_w6ap", "fields": ["territory"]}]}, {"name": "employee_industry_section", "hideBorder": true, "columns": [{"name": "column_u5tZ", "fields": ["no_of_employees"]}, {"name": "column_FFrT", "fields": ["industry"]}]}, {"name": "address_section", "hideBorder": true, "columns": [{"name": "column_O2dk", "fields": ["address"]}]}]',
|
|
},
|
|
"Address-Quick Entry": {
|
|
"doctype": "Address",
|
|
"layout": '[{"name": "details_section", "columns": [{"name": "column_uSSG", "fields": ["address_title", "address_type", "address_line1", "address_line2", "city", "state", "country", "pincode"]}]}]',
|
|
},
|
|
"CRM Call Log-Quick Entry": {
|
|
"doctype": "CRM Call Log",
|
|
"layout": '[{"name":"details_section","columns":[{"name":"column_uMSG","fields":["type","from","duration"]},{"name":"column_wiZT","fields":["to","status","caller","receiver"]}]}]',
|
|
},
|
|
}
|
|
|
|
sidebar_fields_layouts = {
|
|
"CRM Lead-Side Panel": {
|
|
"doctype": "CRM Lead",
|
|
"layout": '[{"label": "Details", "name": "details_section", "opened": true, "columns": [{"name": "column_kl92", "fields": ["organization", "website", "territory", "industry", "job_title", "source", "lead_owner"]}]}, {"label": "Person", "name": "person_section", "opened": true, "columns": [{"name": "column_XmW2", "fields": ["salutation", "first_name", "last_name", "email", "mobile_no"]}]}]',
|
|
},
|
|
"CRM Deal-Side Panel": {
|
|
"doctype": "CRM Deal",
|
|
"layout": '[{"label": "Contacts", "name": "contacts_section", "opened": true, "editable": false, "contacts": []}, {"label": "Organization Details", "name": "organization_section", "opened": true, "columns": [{"name": "column_na2Q", "fields": ["organization", "website", "territory", "annual_revenue", "close_date", "probability", "next_step", "deal_owner"]}]}]',
|
|
},
|
|
"Contact-Side Panel": {
|
|
"doctype": "Contact",
|
|
"layout": '[{"label": "Details", "name": "details_section", "opened": true, "columns": [{"name": "column_eIWl", "fields": ["salutation", "first_name", "last_name", "email_id", "mobile_no", "gender", "company_name", "designation", "address"]}]}]',
|
|
},
|
|
"CRM Organization-Side Panel": {
|
|
"doctype": "CRM Organization",
|
|
"layout": '[{"label": "Details", "name": "details_section", "opened": true, "columns": [{"name": "column_IJOV", "fields": ["organization_name", "website", "territory", "industry", "no_of_employees", "address"]}]}]',
|
|
},
|
|
}
|
|
|
|
data_fields_layouts = {
|
|
"CRM Lead-Data Fields": {
|
|
"doctype": "CRM Lead",
|
|
"layout": '[{"label": "Details", "name": "details_section", "opened": true, "columns": [{"name": "column_ZgLG", "fields": ["organization", "industry", "lead_owner"]}, {"name": "column_TbYq", "fields": ["website", "job_title"]}, {"name": "column_OKSX", "fields": ["territory", "source"]}]}, {"label": "Person", "name": "person_section", "opened": true, "columns": [{"name": "column_6c5g", "fields": ["salutation", "email"]}, {"name": "column_1n7Q", "fields": ["first_name", "mobile_no"]}, {"name": "column_cT6C", "fields": ["last_name"]}]}]',
|
|
},
|
|
"CRM Deal-Data Fields": {
|
|
"doctype": "CRM Deal",
|
|
"layout": '[{"label": "Details", "name": "details_section", "opened": true, "columns": [{"name": "column_z9XL", "fields": ["organization", "annual_revenue", "next_step"]}, {"name": "column_gM4w", "fields": ["website", "close_date", "deal_owner"]}, {"name": "column_gWmE", "fields": ["territory", "probability"]}]}]',
|
|
},
|
|
}
|
|
|
|
for layout in quick_entry_layouts:
|
|
if frappe.db.exists("CRM Fields Layout", layout):
|
|
if force:
|
|
frappe.delete_doc("CRM Fields Layout", layout)
|
|
else:
|
|
continue
|
|
|
|
doc = frappe.new_doc("CRM Fields Layout")
|
|
doc.type = "Quick Entry"
|
|
doc.dt = quick_entry_layouts[layout]["doctype"]
|
|
doc.layout = quick_entry_layouts[layout]["layout"]
|
|
doc.insert()
|
|
|
|
for layout in sidebar_fields_layouts:
|
|
if frappe.db.exists("CRM Fields Layout", layout):
|
|
if force:
|
|
frappe.delete_doc("CRM Fields Layout", layout)
|
|
else:
|
|
continue
|
|
|
|
doc = frappe.new_doc("CRM Fields Layout")
|
|
doc.type = "Side Panel"
|
|
doc.dt = sidebar_fields_layouts[layout]["doctype"]
|
|
doc.layout = sidebar_fields_layouts[layout]["layout"]
|
|
doc.insert()
|
|
|
|
for layout in data_fields_layouts:
|
|
if frappe.db.exists("CRM Fields Layout", layout):
|
|
if force:
|
|
frappe.delete_doc("CRM Fields Layout", layout)
|
|
else:
|
|
continue
|
|
|
|
doc = frappe.new_doc("CRM Fields Layout")
|
|
doc.type = "Data Fields"
|
|
doc.dt = data_fields_layouts[layout]["doctype"]
|
|
doc.layout = data_fields_layouts[layout]["layout"]
|
|
doc.insert()
|
|
|
|
|
|
def add_property_setter():
|
|
if not frappe.db.exists("Property Setter", {"name": "Contact-main-search_fields"}):
|
|
doc = frappe.new_doc("Property Setter")
|
|
doc.doctype_or_field = "DocType"
|
|
doc.doc_type = "Contact"
|
|
doc.property = "search_fields"
|
|
doc.property_type = "Data"
|
|
doc.value = "email_id"
|
|
doc.insert()
|
|
|
|
|
|
def add_email_template_custom_fields():
|
|
if not frappe.get_meta("Email Template").has_field("enabled"):
|
|
click.secho("* Installing Custom Fields in Email Template")
|
|
|
|
create_custom_fields(
|
|
{
|
|
"Email Template": [
|
|
{
|
|
"default": "0",
|
|
"fieldname": "enabled",
|
|
"fieldtype": "Check",
|
|
"label": "Enabled",
|
|
"insert_after": "",
|
|
},
|
|
{
|
|
"fieldname": "reference_doctype",
|
|
"fieldtype": "Link",
|
|
"label": "Doctype",
|
|
"options": "DocType",
|
|
"insert_after": "enabled",
|
|
},
|
|
]
|
|
}
|
|
)
|
|
|
|
frappe.clear_cache(doctype="Email Template")
|
|
|
|
|
|
def add_default_industries():
|
|
industries = [
|
|
"Accounting",
|
|
"Advertising",
|
|
"Aerospace",
|
|
"Agriculture",
|
|
"Airline",
|
|
"Apparel & Accessories",
|
|
"Automotive",
|
|
"Banking",
|
|
"Biotechnology",
|
|
"Broadcasting",
|
|
"Brokerage",
|
|
"Chemical",
|
|
"Computer",
|
|
"Consulting",
|
|
"Consumer Products",
|
|
"Cosmetics",
|
|
"Defense",
|
|
"Department Stores",
|
|
"Education",
|
|
"Electronics",
|
|
"Energy",
|
|
"Entertainment & Leisure, Executive Search",
|
|
"Financial Services",
|
|
"Food",
|
|
"Beverage & Tobacco",
|
|
"Grocery",
|
|
"Health Care",
|
|
"Internet Publishing",
|
|
"Investment Banking",
|
|
"Legal",
|
|
"Manufacturing",
|
|
"Motion Picture & Video",
|
|
"Music",
|
|
"Newspaper Publishers",
|
|
"Online Auctions",
|
|
"Pension Funds",
|
|
"Pharmaceuticals",
|
|
"Private Equity",
|
|
"Publishing",
|
|
"Real Estate",
|
|
"Retail & Wholesale",
|
|
"Securities & Commodity Exchanges",
|
|
"Service",
|
|
"Soap & Detergent",
|
|
"Software",
|
|
"Sports",
|
|
"Technology",
|
|
"Telecommunications",
|
|
"Television",
|
|
"Transportation",
|
|
"Venture Capital",
|
|
]
|
|
|
|
for industry in industries:
|
|
if frappe.db.exists("CRM Industry", industry):
|
|
continue
|
|
|
|
doc = frappe.new_doc("CRM Industry")
|
|
doc.industry = industry
|
|
doc.insert()
|
|
|
|
|
|
def add_default_lead_sources():
|
|
lead_sources = [
|
|
"Existing Customer",
|
|
"Reference",
|
|
"Advertisement",
|
|
"Cold Calling",
|
|
"Exhibition",
|
|
"Supplier Reference",
|
|
"Mass Mailing",
|
|
"Customer's Vendor",
|
|
"Campaign",
|
|
"Walk In",
|
|
]
|
|
|
|
for source in lead_sources:
|
|
if frappe.db.exists("CRM Lead Source", source):
|
|
continue
|
|
|
|
doc = frappe.new_doc("CRM Lead Source")
|
|
doc.source_name = source
|
|
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()
|
|
|
|
|
|
def add_default_scripts():
|
|
for doctype in ["CRM Lead", "CRM Deal"]:
|
|
create_product_details_script(doctype)
|