blob: eba6c7a02a5706b66d603953c2e8820152440d30 [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 },
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +053049 ]
50 },
51 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053052 "label": _("Reports"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +053053 "icon": "fa fa-list",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053054 "items": [
55 {
Rohit Waghchaure6681b0d2017-04-14 16:49:22 +053056 "type": "report",
57 "is_query_report": True,
58 "name": "Lead Details",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053059 "doctype": "Lead",
60 "onboard": 1,
Rohit Waghchaure6681b0d2017-04-14 16:49:22 +053061 },
62 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053063 "type": "page",
64 "name": "sales-funnel",
65 "label": _("Sales Funnel"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +053066 "icon": "fa fa-bar-chart",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053067 "onboard": 1,
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053068 },
69 {
70 "type": "report",
Rohit Waghchaure1c685092017-04-13 19:51:14 +053071 "name": "Prospects Engaged But Not Converted",
72 "doctype": "Lead",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053073 "is_query_report": True,
74 "onboard": 1,
Rohit Waghchaure1c685092017-04-13 19:51:14 +053075 },
76 {
77 "type": "report",
Rohit Waghchaure6681b0d2017-04-14 16:49:22 +053078 "name": "Minutes to First Response for Opportunity",
79 "doctype": "Opportunity",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053080 "is_query_report": True,
81 "dependencies": ["Opportunity"]
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053082 },
83 {
84 "type": "report",
85 "is_query_report": True,
Kanchan Chauhan283b8c92016-11-01 13:05:11 +053086 "name": "Customer Addresses And Contacts",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053087 "doctype": "Contact",
88 "dependencies": ["Customer"]
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053089 },
90 {
91 "type": "report",
92 "is_query_report": True,
93 "name": "Inactive Customers",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053094 "doctype": "Sales Order",
95 "dependencies": ["Sales Order"]
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053096 },
pawanc27d9f72017-04-25 19:01:27 +053097 {
98 "type": "report",
99 "is_query_report": True,
100 "name": "Campaign Efficiency",
Prateeksha Singh063af4e2019-02-06 17:02:41 +0530101 "doctype": "Lead",
102 "dependencies": ["Lead"]
pawanc27d9f72017-04-25 19:01:27 +0530103 },
104 {
105 "type": "report",
106 "is_query_report": True,
107 "name": "Lead Owner Efficiency",
Prateeksha Singh063af4e2019-02-06 17:02:41 +0530108 "doctype": "Lead",
109 "dependencies": ["Lead"]
pawanc27d9f72017-04-25 19:01:27 +0530110 }
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530111 ]
112 },
113 {
Prateeksha Singh9d4a1832019-02-11 15:14:50 +0530114 "label": _("Settings"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530115 "icon": "fa fa-cog",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530116 "items": [
117 {
118 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530119 "label": _("Customer Group"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530120 "name": "Customer Group",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530121 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530122 "link": "Tree/Customer Group",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530123 "description": _("Manage Customer Group Tree."),
Prateeksha Singh063af4e2019-02-06 17:02:41 +0530124 "onboard": 1,
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530125 },
126 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530127 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530128 "label": _("Territory"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530129 "name": "Territory",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530130 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530131 "link": "Tree/Territory",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530132 "description": _("Manage Territory Tree."),
Prateeksha Singh063af4e2019-02-06 17:02:41 +0530133 "onboard": 1,
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530134 },
135 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530136 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530137 "label": _("Sales Person"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530138 "name": "Sales Person",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530139 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530140 "link": "Tree/Sales Person",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530141 "description": _("Manage Sales Person Tree."),
Prateeksha Singh063af4e2019-02-06 17:02:41 +0530142 "onboard": 1,
143 },
144 {
145 "type": "doctype",
146 "name": "Campaign",
147 "description": _("Sales campaigns."),
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530148 },
Harsh Patel22e6f8d2018-03-08 16:23:59 +0530149 {
150 "type": "doctype",
Rucha Mahabalb54459e2019-07-22 03:23:40 +0530151 "name": "Email Campaign",
152 "description": _("Sends Mails to lead or contact based on a Campaign schedule"),
153 },
154 {
155 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530156 "name": "SMS Center",
157 "description":_("Send mass SMS to your contacts"),
158 },
159 {
160 "type": "doctype",
161 "name": "SMS Log",
162 "description":_("Logs for maintaining sms delivery status"),
163 },
Rushabh Mehta14ae4c32015-03-18 20:02:44 +0530164 {
165 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530166 "name": "SMS Settings",
167 "description": _("Setup SMS gateway settings")
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530168 }
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530169 ]
170 },
Prateeksha Singh34234072019-02-07 09:18:24 +0530171 {
Prateeksha Singh34234072019-02-07 09:18:24 +0530172 "label": _("Maintenance"),
173 "icon": "fa fa-star",
174 "items": [
175 {
176 "type": "doctype",
177 "name": "Maintenance Schedule",
178 "description": _("Plan for maintenance visits."),
179 "onboard": 1,
180 },
181 {
182 "type": "doctype",
183 "name": "Maintenance Visit",
184 "description": _("Visit report for maintenance call."),
185 },
186 {
187 "type": "report",
188 "name": "Maintenance Schedules",
189 "is_query_report": True,
190 "doctype": "Maintenance Schedule"
191 },
192 {
193 "type": "doctype",
194 "name": "Warranty Claim",
195 "description": _("Warranty Claim against Serial No."),
196 },
197 ]
198 },
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530199 # {
200 # "label": _("Help"),
201 # "items": [
202 # {
203 # "type": "help",
204 # "label": _("Lead to Quotation"),
205 # "youtube_id": "TxYX4r4JAKA"
206 # },
207 # {
208 # "type": "help",
209 # "label": _("Newsletters"),
210 # "youtube_id": "muLKsCrrDRo"
211 # },
212 # ]
213 # },
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530214 ]