blob: dd67005ecf6a7a8852268221425c5e4063f85f72 [file] [log] [blame]
Rushabh Mehta60cfccb2015-02-17 10:36:54 +05301from frappe import _
2
3def get_data():
4 return [
5 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +05306 "label": _("Sales Pipeline"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +05307 "icon": "fa fa-star",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +05308 "items": [
9 {
10 "type": "doctype",
11 "name": "Lead",
12 "description": _("Database of potential customers."),
13 },
14 {
15 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053016 "name": "Opportunity",
17 "description": _("Potential opportunities for selling."),
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053018 },
19 {
20 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053021 "name": "Customer",
22 "description": _("Customer database."),
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053023 },
24 {
25 "type": "doctype",
26 "name": "Contact",
27 "description": _("All Contacts."),
28 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053029 ]
30 },
31 {
32 "label": _("Reports"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +053033 "icon": "fa fa-list",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053034 "items": [
35 {
Rohit Waghchaure6681b0d2017-04-14 16:49:22 +053036 "type": "report",
37 "is_query_report": True,
38 "name": "Lead Details",
39 "doctype": "Lead"
40 },
41 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053042 "type": "page",
43 "name": "sales-funnel",
44 "label": _("Sales Funnel"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +053045 "icon": "fa fa-bar-chart",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053046 },
47 {
48 "type": "report",
Rohit Waghchaure1c685092017-04-13 19:51:14 +053049 "name": "Prospects Engaged But Not Converted",
50 "doctype": "Lead",
51 "is_query_report": True
52 },
53 {
54 "type": "report",
Rohit Waghchaure6681b0d2017-04-14 16:49:22 +053055 "name": "Minutes to First Response for Opportunity",
56 "doctype": "Opportunity",
57 "is_query_report": True
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053058 },
59 {
60 "type": "report",
61 "is_query_report": True,
Kanchan Chauhan283b8c92016-11-01 13:05:11 +053062 "name": "Customer Addresses And Contacts",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053063 "doctype": "Contact"
64 },
65 {
66 "type": "report",
67 "is_query_report": True,
68 "name": "Inactive Customers",
69 "doctype": "Sales Order"
70 },
pawanc27d9f72017-04-25 19:01:27 +053071 {
72 "type": "report",
73 "is_query_report": True,
74 "name": "Campaign Efficiency",
75 "doctype": "Lead"
76 },
77 {
78 "type": "report",
79 "is_query_report": True,
80 "name": "Lead Owner Efficiency",
81 "doctype": "Lead"
82 }
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053083 ]
84 },
85 {
86 "label": _("Communication"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +053087 "icon": "fa fa-star",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053088 "items": [
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053089 {
90 "type": "doctype",
Anand Doshi1a2e6bf2015-08-14 16:52:55 +053091 "name": "Communication",
92 "description": _("Record of all communications of type email, phone, chat, visit, etc."),
93 },
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053094 ]
95 },
96 {
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053097 "label": _("Setup"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +053098 "icon": "fa fa-cog",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053099 "items": [
100 {
101 "type": "doctype",
102 "name": "Campaign",
103 "description": _("Sales campaigns."),
104 },
105 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530106 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530107 "label": _("Customer Group"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530108 "name": "Customer Group",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530109 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530110 "link": "Tree/Customer Group",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530111 "description": _("Manage Customer Group Tree."),
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530112 },
113 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530114 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530115 "label": _("Territory"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530116 "name": "Territory",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530117 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530118 "link": "Tree/Territory",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530119 "description": _("Manage Territory Tree."),
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530120 },
121 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530122 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530123 "label": _("Sales Person"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530124 "name": "Sales Person",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530125 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530126 "link": "Tree/Sales Person",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530127 "description": _("Manage Sales Person Tree."),
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530128 },
Harsh Patel22e6f8d2018-03-08 16:23:59 +0530129 {
130 "type": "doctype",
131 "name": "Lead Source",
132 "description": _("Track Leads by Lead Source.")
133 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530134 ]
135 },
136 {
137 "label": _("SMS"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530138 "icon": "fa fa-wrench",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530139 "items": [
140 {
141 "type": "doctype",
142 "name": "SMS Center",
143 "description":_("Send mass SMS to your contacts"),
144 },
145 {
146 "type": "doctype",
147 "name": "SMS Log",
148 "description":_("Logs for maintaining sms delivery status"),
149 },
Rushabh Mehta14ae4c32015-03-18 20:02:44 +0530150 {
151 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530152 "name": "SMS Settings",
153 "description": _("Setup SMS gateway settings")
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530154 }
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530155 ]
156 },
Rushabh Mehta67712402015-05-25 18:30:53 +0530157 {
158 "label": _("Help"),
159 "items": [
160 {
161 "type": "help",
162 "label": _("Lead to Quotation"),
163 "youtube_id": "TxYX4r4JAKA"
164 },
Sambhaji Kolatefd539912015-10-27 17:01:27 +0530165 {
166 "type": "help",
167 "label": _("Newsletters"),
168 "youtube_id": "muLKsCrrDRo"
169 },
Rushabh Mehta67712402015-05-25 18:30:53 +0530170 ]
171 },
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530172 ]