blob: 09c2a65633b4f214a4fdc0db3cbd9a99028f22f8 [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."),
Prateeksha Singh063af4e2019-02-06 17:02:41 +053014 "onboard": 1,
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053015 },
16 {
17 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053018 "name": "Opportunity",
19 "description": _("Potential opportunities for selling."),
Prateeksha Singh063af4e2019-02-06 17:02:41 +053020 "onboard": 1,
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053021 },
22 {
23 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053024 "name": "Customer",
25 "description": _("Customer database."),
Prateeksha Singh063af4e2019-02-06 17:02:41 +053026 "onboard": 1,
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053027 },
28 {
29 "type": "doctype",
30 "name": "Contact",
31 "description": _("All Contacts."),
Prateeksha Singh063af4e2019-02-06 17:02:41 +053032 "onboard": 1,
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053033 },
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +053034 {
35 "type": "doctype",
36 "name": "Communication",
37 "description": _("Record of all communications of type email, phone, chat, visit, etc."),
38 },
39 {
40 "type": "doctype",
41 "name": "Lead Source",
42 "description": _("Track Leads by Lead Source.")
43 },
Harshit56d03a42019-08-23 11:34:25 +053044 {
45 "type": "doctype",
46 "name": "Contract",
47 "description": _("Helps you keep tracks of Contracts based on Supplier, Customer and Employee"),
48 },
0Pranav18fda5a2019-11-15 11:58:21 +053049 {
50 "type": "doctype",
51 "name": "Appointment",
52 "description" : _("Helps you manage appointments with your leads"),
53 },
Pranav Nachnekarfc5d8fc2019-11-25 12:24:32 +000054 {
55 "type": "doctype",
Pranav Nachnekard63ad3b2019-11-25 11:20:47 +000056 "name": "Newsletter",
57 "label": _("Newsletter"),
58 }
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +053059 ]
60 },
61 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053062 "label": _("Reports"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +053063 "icon": "fa fa-list",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053064 "items": [
65 {
Rohit Waghchaure6681b0d2017-04-14 16:49:22 +053066 "type": "report",
67 "is_query_report": True,
68 "name": "Lead Details",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053069 "doctype": "Lead",
70 "onboard": 1,
Rohit Waghchaure6681b0d2017-04-14 16:49:22 +053071 },
72 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053073 "type": "page",
74 "name": "sales-funnel",
75 "label": _("Sales Funnel"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +053076 "icon": "fa fa-bar-chart",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053077 "onboard": 1,
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053078 },
79 {
80 "type": "report",
Rohit Waghchaure1c685092017-04-13 19:51:14 +053081 "name": "Prospects Engaged But Not Converted",
82 "doctype": "Lead",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053083 "is_query_report": True,
84 "onboard": 1,
Rohit Waghchaure1c685092017-04-13 19:51:14 +053085 },
86 {
87 "type": "report",
Rohit Waghchaure6681b0d2017-04-14 16:49:22 +053088 "name": "Minutes to First Response for Opportunity",
89 "doctype": "Opportunity",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053090 "is_query_report": True,
91 "dependencies": ["Opportunity"]
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053092 },
93 {
94 "type": "report",
95 "is_query_report": True,
Kanchan Chauhan283b8c92016-11-01 13:05:11 +053096 "name": "Customer Addresses And Contacts",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053097 "doctype": "Contact",
98 "dependencies": ["Customer"]
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053099 },
100 {
101 "type": "report",
102 "is_query_report": True,
103 "name": "Inactive Customers",
Prateeksha Singh063af4e2019-02-06 17:02:41 +0530104 "doctype": "Sales Order",
105 "dependencies": ["Sales Order"]
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530106 },
pawanc27d9f72017-04-25 19:01:27 +0530107 {
108 "type": "report",
109 "is_query_report": True,
110 "name": "Campaign Efficiency",
Prateeksha Singh063af4e2019-02-06 17:02:41 +0530111 "doctype": "Lead",
112 "dependencies": ["Lead"]
pawanc27d9f72017-04-25 19:01:27 +0530113 },
114 {
115 "type": "report",
116 "is_query_report": True,
117 "name": "Lead Owner Efficiency",
Prateeksha Singh063af4e2019-02-06 17:02:41 +0530118 "doctype": "Lead",
119 "dependencies": ["Lead"]
Deepesh Garga4928f62020-02-06 12:50:25 +0530120 },
121 {
122 "type": "report",
123 "is_query_report": True,
124 "name": "Territory-wise Sales",
125 "doctype": "Opportunity",
126 "dependencies": ["Opportunity"]
pawanc27d9f72017-04-25 19:01:27 +0530127 }
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530128 ]
129 },
130 {
Prateeksha Singh9d4a1832019-02-11 15:14:50 +0530131 "label": _("Settings"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530132 "icon": "fa fa-cog",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530133 "items": [
134 {
135 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530136 "label": _("Customer Group"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530137 "name": "Customer Group",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530138 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530139 "link": "Tree/Customer Group",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530140 "description": _("Manage Customer Group Tree."),
Prateeksha Singh063af4e2019-02-06 17:02:41 +0530141 "onboard": 1,
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530142 },
143 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530144 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530145 "label": _("Territory"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530146 "name": "Territory",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530147 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530148 "link": "Tree/Territory",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530149 "description": _("Manage Territory Tree."),
Prateeksha Singh063af4e2019-02-06 17:02:41 +0530150 "onboard": 1,
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530151 },
152 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530153 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530154 "label": _("Sales Person"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530155 "name": "Sales Person",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530156 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530157 "link": "Tree/Sales Person",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530158 "description": _("Manage Sales Person Tree."),
Prateeksha Singh063af4e2019-02-06 17:02:41 +0530159 "onboard": 1,
160 },
161 {
162 "type": "doctype",
163 "name": "Campaign",
164 "description": _("Sales campaigns."),
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530165 },
Harsh Patel22e6f8d2018-03-08 16:23:59 +0530166 {
167 "type": "doctype",
Rucha Mahabalb54459e2019-07-22 03:23:40 +0530168 "name": "Email Campaign",
169 "description": _("Sends Mails to lead or contact based on a Campaign schedule"),
170 },
171 {
172 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530173 "name": "SMS Center",
174 "description":_("Send mass SMS to your contacts"),
175 },
176 {
177 "type": "doctype",
178 "name": "SMS Log",
179 "description":_("Logs for maintaining sms delivery status"),
180 },
Rushabh Mehta14ae4c32015-03-18 20:02:44 +0530181 {
182 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530183 "name": "SMS Settings",
184 "description": _("Setup SMS gateway settings")
Pranav Nachnekard63ad3b2019-11-25 11:20:47 +0000185 },
186 {
187 "type": "doctype",
188 "label": _("Email Group"),
189 "name": "Email Group",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530190 }
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530191 ]
192 },
Prateeksha Singh34234072019-02-07 09:18:24 +0530193 {
Prateeksha Singh34234072019-02-07 09:18:24 +0530194 "label": _("Maintenance"),
195 "icon": "fa fa-star",
196 "items": [
197 {
198 "type": "doctype",
199 "name": "Maintenance Schedule",
200 "description": _("Plan for maintenance visits."),
201 "onboard": 1,
202 },
203 {
204 "type": "doctype",
205 "name": "Maintenance Visit",
206 "description": _("Visit report for maintenance call."),
207 },
208 {
209 "type": "report",
210 "name": "Maintenance Schedules",
211 "is_query_report": True,
212 "doctype": "Maintenance Schedule"
213 },
214 {
215 "type": "doctype",
216 "name": "Warranty Claim",
217 "description": _("Warranty Claim against Serial No."),
218 },
219 ]
220 },
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530221 # {
222 # "label": _("Help"),
223 # "items": [
224 # {
225 # "type": "help",
226 # "label": _("Lead to Quotation"),
227 # "youtube_id": "TxYX4r4JAKA"
228 # },
229 # {
230 # "type": "help",
231 # "label": _("Newsletters"),
232 # "youtube_id": "muLKsCrrDRo"
233 # },
234 # ]
235 # },
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530236 ]