blob: d7a6b2e2be3337a9ac4d3feb1806f3cb0b7e2e89 [file] [log] [blame]
Rushabh Mehta60cfccb2015-02-17 10:36:54 +05301from frappe import _
2
3def get_data():
4 return [
5 {
6 "label": _("Documents"),
7 "icon": "icon-star",
8 "items": [
9 {
10 "type": "doctype",
11 "name": "Lead",
12 "description": _("Database of potential customers."),
13 },
14 {
15 "type": "doctype",
16 "name": "Customer",
17 "description": _("Customer database."),
18 },
19 {
20 "type": "doctype",
21 "name": "Opportunity",
22 "description": _("Potential opportunities for selling."),
23 },
24 {
25 "type": "doctype",
26 "name": "Contact",
27 "description": _("All Contacts."),
28 },
29 {
30 "type": "doctype",
31 "name": "Newsletter",
32 "description": _("Newsletters to contacts, leads."),
33 },
34 ]
35 },
36 {
37 "label": _("Tools"),
38 "icon": "icon-wrench",
39 "items": [
40 {
41 "type": "doctype",
42 "name": "SMS Center",
43 "description":_("Send mass SMS to your contacts"),
44 },
Nabin Hait098760f2015-07-22 11:28:21 +053045 {
46 "type": "doctype",
47 "name": "SMS Log",
48 "description":_("Logs for maintaining sms delivery status"),
49 }
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053050 ]
51 },
52 {
53 "label": _("Setup"),
54 "icon": "icon-cog",
55 "items": [
56 {
57 "type": "doctype",
58 "name": "Campaign",
59 "description": _("Sales campaigns."),
60 },
61 {
62 "type": "page",
63 "label": _("Customer Group"),
64 "name": "Sales Browser",
65 "icon": "icon-sitemap",
66 "link": "Sales Browser/Customer Group",
67 "description": _("Manage Customer Group Tree."),
68 "doctype": "Customer Group",
69 },
70 {
71 "type": "page",
72 "label": _("Territory"),
73 "name": "Sales Browser",
74 "icon": "icon-sitemap",
75 "link": "Sales Browser/Territory",
76 "description": _("Manage Territory Tree."),
77 "doctype": "Territory",
78 },
79 {
80 "type": "page",
81 "label": _("Sales Person"),
82 "name": "Sales Browser",
83 "icon": "icon-sitemap",
84 "link": "Sales Browser/Sales Person",
85 "description": _("Manage Sales Person Tree."),
86 "doctype": "Sales Person",
87 },
88 {
89 "type": "doctype",
Rushabh Mehta14ae4c32015-03-18 20:02:44 +053090 "name": "Newsletter List",
91 "description": _("Newsletter Mailing List"),
92 },
93 {
94 "type": "doctype",
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053095 "name": "SMS Settings",
96 "description": _("Setup SMS gateway settings")
97 },
98 ]
99 },
100 {
101 "label": _("Main Reports"),
102 "icon": "icon-table",
103 "items": [
104 {
105 "type": "page",
106 "name": "sales-funnel",
107 "label": _("Sales Funnel"),
108 "icon": "icon-bar-chart",
109 },
110 ]
111 },
112 {
113 "label": _("Standard Reports"),
114 "icon": "icon-list",
115 "items": [
116 {
117 "type": "report",
118 "is_query_report": True,
119 "name": "Lead Details",
120 "doctype": "Lead"
121 },
122 {
123 "type": "report",
124 "is_query_report": True,
125 "name": "Customer Addresses and Contacts",
126 "doctype": "Contact"
127 },
128 {
129 "type": "report",
130 "is_query_report": True,
131 "name": "Customers Not Buying Since Long Time",
132 "doctype": "Sales Order"
133 },
134 ]
135 },
Rushabh Mehta67712402015-05-25 18:30:53 +0530136 {
137 "label": _("Help"),
138 "items": [
139 {
140 "type": "help",
141 "label": _("Lead to Quotation"),
142 "youtube_id": "TxYX4r4JAKA"
143 },
144 ]
145 },
Rushabh Mehta60cfccb2015-02-17 10:36:54 +0530146 ]