blob: 5ac46bd7b8078d02c6f7433ec15f5f66e4da3ef2 [file] [log] [blame]
Aditya Hasef3c22f32019-01-22 18:22:20 +05301from __future__ import unicode_literals
Rushabh Mehta60cfccb2015-02-17 10:36:54 +05302from frappe import _
3
4def get_data():
5 return [
6 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +05307 "label": _("Sales Pipeline"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +05308 "icon": "fa fa-star",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +05309 "items": [
10 {
11 "type": "doctype",
12 "name": "Lead",
13 "description": _("Database of potential customers."),
14 },
15 {
16 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053017 "name": "Opportunity",
18 "description": _("Potential opportunities for selling."),
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053019 },
20 {
21 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053022 "name": "Customer",
23 "description": _("Customer database."),
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053024 },
25 {
26 "type": "doctype",
27 "name": "Contact",
28 "description": _("All Contacts."),
29 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053030 ]
31 },
32 {
33 "label": _("Reports"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +053034 "icon": "fa fa-list",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053035 "items": [
36 {
Rohit Waghchaure6681b0d2017-04-14 16:49:22 +053037 "type": "report",
38 "is_query_report": True,
39 "name": "Lead Details",
40 "doctype": "Lead"
41 },
42 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053043 "type": "page",
44 "name": "sales-funnel",
45 "label": _("Sales Funnel"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +053046 "icon": "fa fa-bar-chart",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053047 },
48 {
49 "type": "report",
Rohit Waghchaure1c685092017-04-13 19:51:14 +053050 "name": "Prospects Engaged But Not Converted",
51 "doctype": "Lead",
52 "is_query_report": True
53 },
54 {
55 "type": "report",
Rohit Waghchaure6681b0d2017-04-14 16:49:22 +053056 "name": "Minutes to First Response for Opportunity",
57 "doctype": "Opportunity",
58 "is_query_report": True
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053059 },
60 {
61 "type": "report",
62 "is_query_report": True,
Kanchan Chauhan283b8c92016-11-01 13:05:11 +053063 "name": "Customer Addresses And Contacts",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053064 "doctype": "Contact"
65 },
66 {
67 "type": "report",
68 "is_query_report": True,
69 "name": "Inactive Customers",
70 "doctype": "Sales Order"
71 },
pawanc27d9f72017-04-25 19:01:27 +053072 {
73 "type": "report",
74 "is_query_report": True,
75 "name": "Campaign Efficiency",
76 "doctype": "Lead"
77 },
78 {
79 "type": "report",
80 "is_query_report": True,
81 "name": "Lead Owner Efficiency",
82 "doctype": "Lead"
83 }
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053084 ]
85 },
86 {
87 "label": _("Communication"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +053088 "icon": "fa fa-star",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053089 "items": [
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053090 {
91 "type": "doctype",
Anand Doshi1a2e6bf2015-08-14 16:52:55 +053092 "name": "Communication",
93 "description": _("Record of all communications of type email, phone, chat, visit, etc."),
94 },
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053095 ]
96 },
97 {
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053098 "label": _("Setup"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +053099 "icon": "fa fa-cog",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530100 "items": [
101 {
102 "type": "doctype",
103 "name": "Campaign",
104 "description": _("Sales campaigns."),
105 },
106 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530107 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530108 "label": _("Customer Group"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530109 "name": "Customer Group",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530110 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530111 "link": "Tree/Customer Group",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530112 "description": _("Manage Customer Group Tree."),
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530113 },
114 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530115 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530116 "label": _("Territory"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530117 "name": "Territory",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530118 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530119 "link": "Tree/Territory",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530120 "description": _("Manage Territory Tree."),
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530121 },
122 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530123 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530124 "label": _("Sales Person"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530125 "name": "Sales Person",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530126 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530127 "link": "Tree/Sales Person",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530128 "description": _("Manage Sales Person Tree."),
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530129 },
Harsh Patel22e6f8d2018-03-08 16:23:59 +0530130 {
131 "type": "doctype",
132 "name": "Lead Source",
133 "description": _("Track Leads by Lead Source.")
134 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530135 ]
136 },
137 {
138 "label": _("SMS"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530139 "icon": "fa fa-wrench",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530140 "items": [
141 {
142 "type": "doctype",
143 "name": "SMS Center",
144 "description":_("Send mass SMS to your contacts"),
145 },
146 {
147 "type": "doctype",
148 "name": "SMS Log",
149 "description":_("Logs for maintaining sms delivery status"),
150 },
Rushabh Mehta14ae4c32015-03-18 20:02:44 +0530151 {
152 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530153 "name": "SMS Settings",
154 "description": _("Setup SMS gateway settings")
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530155 }
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530156 ]
157 },
Rushabh Mehta67712402015-05-25 18:30:53 +0530158 {
159 "label": _("Help"),
160 "items": [
161 {
162 "type": "help",
163 "label": _("Lead to Quotation"),
164 "youtube_id": "TxYX4r4JAKA"
165 },
Sambhaji Kolatefd539912015-10-27 17:01:27 +0530166 {
167 "type": "help",
168 "label": _("Newsletters"),
169 "youtube_id": "muLKsCrrDRo"
170 },
Rushabh Mehta67712402015-05-25 18:30:53 +0530171 ]
172 },
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530173 ]