blob: ee3b9c1ec10934da19c5443764b638f29fe81af7 [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 {
36 "type": "page",
37 "name": "sales-funnel",
38 "label": _("Sales Funnel"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +053039 "icon": "fa fa-bar-chart",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053040 },
41 {
42 "type": "report",
Rushabh Mehta4cf914d2016-06-22 11:21:56 +053043 "name": "Minutes to First Response for Opportunity",
44 "doctype": "Opportunity",
45 "is_query_report": True
46 },
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",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053055 "is_query_report": True,
56 "name": "Lead Details",
57 "doctype": "Lead"
58 },
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 },
71 ]
72 },
73 {
74 "label": _("Communication"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +053075 "icon": "fa fa-star",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053076 "items": [
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053077 {
78 "type": "doctype",
Anand Doshi1a2e6bf2015-08-14 16:52:55 +053079 "name": "Communication",
80 "description": _("Record of all communications of type email, phone, chat, visit, etc."),
81 },
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053082 ]
83 },
84 {
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053085 "label": _("Setup"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +053086 "icon": "fa fa-cog",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053087 "items": [
88 {
89 "type": "doctype",
90 "name": "Campaign",
91 "description": _("Sales campaigns."),
92 },
93 {
Saurabh52ec0ed2016-07-05 18:02:38 +053094 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053095 "label": _("Customer Group"),
Saurabh52ec0ed2016-07-05 18:02:38 +053096 "name": "Customer Group",
Rushabh Mehta2167ff52016-12-07 11:08:48 +053097 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +053098 "link": "Tree/Customer Group",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053099 "description": _("Manage Customer Group Tree."),
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530100 },
101 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530102 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530103 "label": _("Territory"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530104 "name": "Territory",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530105 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530106 "link": "Tree/Territory",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530107 "description": _("Manage Territory Tree."),
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530108 },
109 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530110 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530111 "label": _("Sales Person"),
Saurabh52ec0ed2016-07-05 18:02:38 +0530112 "name": "Sales Person",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530113 "icon": "fa fa-sitemap",
Saurabh17022732016-06-21 13:19:17 +0530114 "link": "Tree/Sales Person",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530115 "description": _("Manage Sales Person Tree."),
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530116 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530117 ]
118 },
119 {
120 "label": _("SMS"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530121 "icon": "fa fa-wrench",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530122 "items": [
123 {
124 "type": "doctype",
125 "name": "SMS Center",
126 "description":_("Send mass SMS to your contacts"),
127 },
128 {
129 "type": "doctype",
130 "name": "SMS Log",
131 "description":_("Logs for maintaining sms delivery status"),
132 },
Rushabh Mehta14ae4c32015-03-18 20:02:44 +0530133 {
134 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530135 "name": "SMS Settings",
136 "description": _("Setup SMS gateway settings")
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530137 }
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530138 ]
139 },
Rushabh Mehta67712402015-05-25 18:30:53 +0530140 {
141 "label": _("Help"),
142 "items": [
143 {
144 "type": "help",
145 "label": _("Lead to Quotation"),
146 "youtube_id": "TxYX4r4JAKA"
147 },
Sambhaji Kolatefd539912015-10-27 17:01:27 +0530148 {
149 "type": "help",
150 "label": _("Newsletters"),
151 "youtube_id": "muLKsCrrDRo"
152 },
Rushabh Mehta67712402015-05-25 18:30:53 +0530153 ]
154 },
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530155 ]