blob: cf1021948a5565e3fb02eae959122197246c2769 [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"]
pawanc27d9f72017-04-25 19:01:27 +0530120 }
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530121 ]
122 },
123 {
Prateeksha Singh9d4a1832019-02-11 15:14:50 +0530124 "label": _("Settings"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530125 "icon": "fa fa-cog",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530126 "items": [
127 {
128 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530129 "label": _("Customer Group"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530130 "name": "Customer Group",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530131 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530132 "link": "Tree/Customer Group",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530133 "description": _("Manage Customer Group Tree."),
Prateeksha Singh063af4e2019-02-06 17:02:41 +0530134 "onboard": 1,
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530135 },
136 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530137 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530138 "label": _("Territory"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530139 "name": "Territory",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530140 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530141 "link": "Tree/Territory",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530142 "description": _("Manage Territory Tree."),
Prateeksha Singh063af4e2019-02-06 17:02:41 +0530143 "onboard": 1,
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530144 },
145 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530146 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530147 "label": _("Sales Person"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530148 "name": "Sales Person",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530149 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530150 "link": "Tree/Sales Person",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530151 "description": _("Manage Sales Person Tree."),
Prateeksha Singh063af4e2019-02-06 17:02:41 +0530152 "onboard": 1,
153 },
154 {
155 "type": "doctype",
156 "name": "Campaign",
157 "description": _("Sales campaigns."),
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530158 },
Harsh Patel22e6f8d2018-03-08 16:23:59 +0530159 {
160 "type": "doctype",
Rucha Mahabalb54459e2019-07-22 03:23:40 +0530161 "name": "Email Campaign",
162 "description": _("Sends Mails to lead or contact based on a Campaign schedule"),
163 },
164 {
165 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530166 "name": "SMS Center",
167 "description":_("Send mass SMS to your contacts"),
168 },
169 {
170 "type": "doctype",
171 "name": "SMS Log",
172 "description":_("Logs for maintaining sms delivery status"),
173 },
Rushabh Mehta14ae4c32015-03-18 20:02:44 +0530174 {
175 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530176 "name": "SMS Settings",
177 "description": _("Setup SMS gateway settings")
Pranav Nachnekard63ad3b2019-11-25 11:20:47 +0000178 },
179 {
180 "type": "doctype",
181 "label": _("Email Group"),
182 "name": "Email Group",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530183 }
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530184 ]
185 },
Prateeksha Singh34234072019-02-07 09:18:24 +0530186 {
Prateeksha Singh34234072019-02-07 09:18:24 +0530187 "label": _("Maintenance"),
188 "icon": "fa fa-star",
189 "items": [
190 {
191 "type": "doctype",
192 "name": "Maintenance Schedule",
193 "description": _("Plan for maintenance visits."),
194 "onboard": 1,
195 },
196 {
197 "type": "doctype",
198 "name": "Maintenance Visit",
199 "description": _("Visit report for maintenance call."),
200 },
201 {
202 "type": "report",
203 "name": "Maintenance Schedules",
204 "is_query_report": True,
205 "doctype": "Maintenance Schedule"
206 },
207 {
208 "type": "doctype",
209 "name": "Warranty Claim",
210 "description": _("Warranty Claim against Serial No."),
211 },
212 ]
213 },
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530214 # {
215 # "label": _("Help"),
216 # "items": [
217 # {
218 # "type": "help",
219 # "label": _("Lead to Quotation"),
220 # "youtube_id": "TxYX4r4JAKA"
221 # },
222 # {
223 # "type": "help",
224 # "label": _("Newsletters"),
225 # "youtube_id": "muLKsCrrDRo"
226 # },
227 # ]
228 # },
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530229 ]