brotherton-erpnext/erpnext/config/crm.py

150 lines
3.0 KiB
Python
Raw Normal View History

2015-02-17 05:06:54 +00:00
from frappe import _
def get_data():
return [
{
2016-03-08 12:36:21 +00:00
"label": _("Sales Pipeline"),
2016-12-07 05:38:48 +00:00
"icon": "fa fa-star",
2015-02-17 05:06:54 +00:00
"items": [
{
"type": "doctype",
"name": "Lead",
"description": _("Database of potential customers."),
},
{
"type": "doctype",
2016-03-08 12:36:21 +00:00
"name": "Opportunity",
"description": _("Potential opportunities for selling."),
2015-02-17 05:06:54 +00:00
},
{
"type": "doctype",
2016-03-08 12:36:21 +00:00
"name": "Customer",
"description": _("Customer database."),
2015-02-17 05:06:54 +00:00
},
{
"type": "doctype",
"name": "Contact",
"description": _("All Contacts."),
},
2016-03-08 12:36:21 +00:00
]
},
{
"label": _("Reports"),
2016-12-07 05:38:48 +00:00
"icon": "fa fa-list",
2016-03-08 12:36:21 +00:00
"items": [
2015-02-17 05:06:54 +00:00
{
2016-03-08 12:36:21 +00:00
"type": "page",
"name": "sales-funnel",
"label": _("Sales Funnel"),
2016-12-07 05:38:48 +00:00
"icon": "fa fa-bar-chart",
2015-02-17 05:06:54 +00:00
},
{
"type": "report",
"name": "Minutes to First Response for Opportunity",
"doctype": "Opportunity",
"is_query_report": True
},
2015-08-14 11:22:55 +00:00
{
2016-03-08 12:36:21 +00:00
"type": "report",
"is_query_report": True,
"name": "Lead Details",
"doctype": "Lead"
},
{
"type": "report",
"is_query_report": True,
"name": "Customer Addresses And Contacts",
2016-03-08 12:36:21 +00:00
"doctype": "Contact"
},
{
"type": "report",
"is_query_report": True,
"name": "Inactive Customers",
"doctype": "Sales Order"
2015-08-14 11:22:55 +00:00
},
2015-02-17 05:06:54 +00:00
]
},
{
2016-03-08 12:36:21 +00:00
"label": _("Communication"),
2016-12-07 05:38:48 +00:00
"icon": "fa fa-star",
2015-02-17 05:06:54 +00:00
"items": [
2015-07-22 05:58:21 +00:00
{
"type": "doctype",
2016-03-08 12:36:21 +00:00
"name": "Communication",
"description": _("Record of all communications of type email, phone, chat, visit, etc."),
},
2015-02-17 05:06:54 +00:00
]
},
{
"label": _("Setup"),
2016-12-07 05:38:48 +00:00
"icon": "fa fa-cog",
2015-02-17 05:06:54 +00:00
"items": [
{
"type": "doctype",
"name": "Campaign",
"description": _("Sales campaigns."),
},
{
"type": "doctype",
2015-02-17 05:06:54 +00:00
"label": _("Customer Group"),
"name": "Customer Group",
2016-12-07 05:38:48 +00:00
"icon": "fa fa-sitemap",
"link": "Tree/Customer Group",
2015-02-17 05:06:54 +00:00
"description": _("Manage Customer Group Tree."),
},
{
"type": "doctype",
2015-02-17 05:06:54 +00:00
"label": _("Territory"),
"name": "Territory",
2016-12-07 05:38:48 +00:00
"icon": "fa fa-sitemap",
"link": "Tree/Territory",
2015-02-17 05:06:54 +00:00
"description": _("Manage Territory Tree."),
},
{
"type": "doctype",
2015-02-17 05:06:54 +00:00
"label": _("Sales Person"),
"name": "Sales Person",
2016-12-07 05:38:48 +00:00
"icon": "fa fa-sitemap",
"link": "Tree/Sales Person",
2015-02-17 05:06:54 +00:00
"description": _("Manage Sales Person Tree."),
},
]
},
{
2016-03-08 12:36:21 +00:00
"label": _("SMS"),
2016-12-07 05:38:48 +00:00
"icon": "fa fa-wrench",
2015-02-17 05:06:54 +00:00
"items": [
{
2016-03-08 12:36:21 +00:00
"type": "doctype",
"name": "SMS Center",
"description":_("Send mass SMS to your contacts"),
2015-02-17 05:06:54 +00:00
},
{
2016-03-08 12:36:21 +00:00
"type": "doctype",
"name": "SMS Log",
"description":_("Logs for maintaining sms delivery status"),
2015-02-17 05:06:54 +00:00
},
{
2016-03-08 12:36:21 +00:00
"type": "doctype",
"name": "SMS Settings",
"description": _("Setup SMS gateway settings")
}
2015-02-17 05:06:54 +00:00
]
},
{
"label": _("Help"),
"items": [
{
"type": "help",
"label": _("Lead to Quotation"),
"youtube_id": "TxYX4r4JAKA"
},
{
"type": "help",
"label": _("Newsletters"),
"youtube_id": "muLKsCrrDRo"
},
]
},
2015-02-17 05:06:54 +00:00
]