blob: 1f0cdf64b6470ca69da16e7e64c24cb3dd213ca3 [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 },
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +053030 {
31 "type": "doctype",
32 "name": "Communication",
33 "description": _("Record of all communications of type email, phone, chat, visit, etc."),
34 },
35 {
36 "type": "doctype",
37 "name": "Lead Source",
38 "description": _("Track Leads by Lead Source.")
39 },
40 ]
41 },
42 {
43 "label": _("Support"),
44 "items": [
45 {
46 "type": "doctype",
47 "name": "Issue",
48 "description": _("Support queries from customers."),
49 },
50 {
51 "type": "doctype",
52 "name": "Communication",
53 "description": _("Communication log."),
54 },
55 {
56 "type": "doctype",
57 "name": "Warranty Claim",
58 "description": _("Warranty Claim against Serial No."),
59 },
60 {
61 "type": "doctype",
62 "name": "Serial No",
63 "description": _("Single unit of an Item."),
64 },
65 {
66 "type": "page",
67 "name": "support-analytics",
68 "label": _("Support Analytics"),
69 "icon": "fa fa-bar-chart"
70 },
71 {
72 "type": "report",
73 "name": "Minutes to First Response for Issues",
74 "doctype": "Issue",
75 "is_query_report": True
76 },
77 {
78 "type": "report",
79 "name": "Support Hours",
80 "doctype": "Issue",
81 "is_query_report": True
82 },
83 ]
84 },
85 {
86 "label": _("Maintenance"),
87 "icon": "fa fa-star",
88 "items": [
89 {
90 "type": "doctype",
91 "name": "Maintenance Schedule",
92 "description": _("Plan for maintenance visits."),
93 },
94 {
95 "type": "doctype",
96 "name": "Maintenance Visit",
97 "description": _("Visit report for maintenance call."),
98 },
99 {
100 "type": "report",
101 "name": "Maintenance Schedules",
102 "is_query_report": True,
103 "doctype": "Maintenance Schedule"
104 },
105 {
106 "type": "doctype",
107 "name": "Warranty Claim",
108 "description": _("Warranty Claim against Serial No."),
109 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530110 ]
111 },
112 {
113 "label": _("Reports"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530114 "icon": "fa fa-list",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530115 "items": [
116 {
Rohit Waghchaure6681b0d2017-04-14 16:49:22 +0530117 "type": "report",
118 "is_query_report": True,
119 "name": "Lead Details",
120 "doctype": "Lead"
121 },
122 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530123 "type": "page",
124 "name": "sales-funnel",
125 "label": _("Sales Funnel"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530126 "icon": "fa fa-bar-chart",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530127 },
128 {
129 "type": "report",
Rohit Waghchaure1c685092017-04-13 19:51:14 +0530130 "name": "Prospects Engaged But Not Converted",
131 "doctype": "Lead",
132 "is_query_report": True
133 },
134 {
135 "type": "report",
Rohit Waghchaure6681b0d2017-04-14 16:49:22 +0530136 "name": "Minutes to First Response for Opportunity",
137 "doctype": "Opportunity",
138 "is_query_report": True
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530139 },
140 {
141 "type": "report",
142 "is_query_report": True,
Kanchan Chauhan283b8c92016-11-01 13:05:11 +0530143 "name": "Customer Addresses And Contacts",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530144 "doctype": "Contact"
145 },
146 {
147 "type": "report",
148 "is_query_report": True,
149 "name": "Inactive Customers",
150 "doctype": "Sales Order"
151 },
pawanc27d9f72017-04-25 19:01:27 +0530152 {
153 "type": "report",
154 "is_query_report": True,
155 "name": "Campaign Efficiency",
156 "doctype": "Lead"
157 },
158 {
159 "type": "report",
160 "is_query_report": True,
161 "name": "Lead Owner Efficiency",
162 "doctype": "Lead"
163 }
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530164 ]
165 },
166 {
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530167 "label": _("Setup"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530168 "icon": "fa fa-cog",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530169 "items": [
170 {
171 "type": "doctype",
172 "name": "Campaign",
173 "description": _("Sales campaigns."),
174 },
175 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530176 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530177 "label": _("Customer Group"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530178 "name": "Customer Group",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530179 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530180 "link": "Tree/Customer Group",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530181 "description": _("Manage Customer Group Tree."),
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530182 },
183 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530184 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530185 "label": _("Territory"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530186 "name": "Territory",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530187 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530188 "link": "Tree/Territory",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530189 "description": _("Manage Territory Tree."),
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530190 },
191 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530192 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530193 "label": _("Sales Person"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530194 "name": "Sales Person",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530195 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530196 "link": "Tree/Sales Person",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530197 "description": _("Manage Sales Person Tree."),
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530198 },
Harsh Patel22e6f8d2018-03-08 16:23:59 +0530199 {
200 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530201 "name": "SMS Center",
202 "description":_("Send mass SMS to your contacts"),
203 },
204 {
205 "type": "doctype",
206 "name": "SMS Log",
207 "description":_("Logs for maintaining sms delivery status"),
208 },
Rushabh Mehta14ae4c32015-03-18 20:02:44 +0530209 {
210 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530211 "name": "SMS Settings",
212 "description": _("Setup SMS gateway settings")
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530213 }
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530214 ]
215 },
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530216 # {
217 # "label": _("Help"),
218 # "items": [
219 # {
220 # "type": "help",
221 # "label": _("Lead to Quotation"),
222 # "youtube_id": "TxYX4r4JAKA"
223 # },
224 # {
225 # "type": "help",
226 # "label": _("Newsletters"),
227 # "youtube_id": "muLKsCrrDRo"
228 # },
229 # ]
230 # },
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530231 ]