blob: fc09b599a235318e7bb81f870d64a8f4ea9f2a18 [file] [log] [blame]
Anand Doshif5794f12014-03-03 15:05:28 +05301from frappe import _
2
Anand Doshi08ef4672014-05-08 11:43:18 +05303def get_data():
4 return [
5 {
6 "label": _("Documents"),
7 "icon": "icon-star",
8 "items": [
9 {
10 "type": "doctype",
Anand Doshi08ef4672014-05-08 11:43:18 +053011 "name": "Customer",
12 "description": _("Customer database."),
13 },
14 {
15 "type": "doctype",
Anand Doshi08ef4672014-05-08 11:43:18 +053016 "name": "Quotation",
17 "description": _("Quotes to Leads or Customers."),
18 },
19 {
20 "type": "doctype",
21 "name": "Sales Order",
22 "description": _("Confirmed orders from Customers."),
23 },
24 {
25 "type": "doctype",
26 "name": "Contact",
27 "description": _("All Contacts."),
28 },
29 {
30 "type": "doctype",
31 "name": "Address",
32 "description": _("All Addresses."),
33 },
34 {
35 "type": "doctype",
36 "name": "Item",
37 "description": _("All Products or Services."),
38 },
39 ]
40 },
41 {
42 "label": _("Tools"),
43 "icon": "icon-wrench",
44 "items": [
45 {
46 "type": "doctype",
47 "name": "SMS Center",
48 "description":_("Send mass SMS to your contacts"),
49 },
Rushabh Mehta85ff3bc2014-07-22 14:43:14 +053050 {
51 "type": "doctype",
52 "name": "Newsletter",
53 "description": _("Newsletters to contacts, leads."),
54 },
Anand Doshi08ef4672014-05-08 11:43:18 +053055 ]
56 },
57 {
58 "label": _("Setup"),
59 "icon": "icon-cog",
60 "items": [
61 {
62 "type": "doctype",
63 "name": "Selling Settings",
64 "description": _("Default settings for selling transactions.")
65 },
66 {
67 "type": "doctype",
68 "name": "Campaign",
69 "description": _("Sales campaigns."),
70 },
71 {
72 "type": "page",
73 "label": _("Customer Group"),
74 "name": "Sales Browser",
75 "icon": "icon-sitemap",
76 "link": "Sales Browser/Customer Group",
77 "description": _("Manage Customer Group Tree."),
78 "doctype": "Customer Group",
79 },
80 {
81 "type": "page",
82 "label": _("Territory"),
83 "name": "Sales Browser",
84 "icon": "icon-sitemap",
85 "link": "Sales Browser/Territory",
86 "description": _("Manage Territory Tree."),
87 "doctype": "Territory",
88 },
89 {
Anand Doshi11ada532014-06-27 21:02:55 +053090 "type": "doctype",
91 "name": "Sales Partner",
92 "description": _("Manage Sales Partners."),
93 },
94 {
Anand Doshi08ef4672014-05-08 11:43:18 +053095 "type": "page",
96 "label": _("Sales Person"),
97 "name": "Sales Browser",
98 "icon": "icon-sitemap",
99 "link": "Sales Browser/Sales Person",
100 "description": _("Manage Sales Person Tree."),
101 "doctype": "Sales Person",
102 },
103 {
104 "type": "page",
105 "name": "Sales Browser",
106 "icon": "icon-sitemap",
107 "label": _("Item Group Tree"),
108 "link": "Sales Browser/Item Group",
109 "description": _("Tree of Item Groups."),
110 "doctype": "Item Group",
111 },
112 {
113 "type": "doctype",
114 "name":"Terms and Conditions",
115 "label": _("Terms and Conditions Template"),
116 "description": _("Template of terms or contract.")
117 },
118 {
119 "type": "doctype",
120 "name": "Sales Taxes and Charges Master",
121 "description": _("Tax template for selling transactions.")
122 },
123 {
124 "type": "doctype",
125 "name": "Shipping Rule",
126 "description": _("Rules for adding shipping costs.")
127 },
128 {
129 "type": "doctype",
130 "name": "Price List",
131 "description": _("Price List master.")
132 },
133 {
134 "type": "doctype",
135 "name": "Item Price",
136 "description": _("Multiple Item prices."),
137 "route": "Report/Item Price"
138 },
139 {
140 "type": "doctype",
141 "name": "Pricing Rule",
142 "description": _("Rules for applying pricing and discount.")
143 },
144 {
145 "type": "doctype",
146 "name": "Sales BOM",
147 "description": _("Bundle items at time of sale."),
148 },
149 {
150 "type": "doctype",
Rushabh Mehta5cdc8e52014-09-15 16:59:38 +0530151 "name": "Email Account",
Anand Doshi08ef4672014-05-08 11:43:18 +0530152 "description": _("Setup incoming server for sales email id. (e.g. sales@example.com)")
153 },
154 {
155 "type": "doctype",
156 "name": "Industry Type",
157 "description": _("Track Leads by Industry Type.")
158 },
Nabin Haite7546e22014-05-28 16:25:54 +0530159 {
160 "type": "doctype",
161 "name": "SMS Settings",
162 "description": _("Setup SMS gateway settings")
163 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530164 ]
165 },
166 {
167 "label": _("Main Reports"),
168 "icon": "icon-table",
169 "items": [
170 {
171 "type": "page",
172 "name": "sales-analytics",
173 "label": _("Sales Analytics"),
174 "icon": "icon-bar-chart",
175 },
176 {
177 "type": "page",
178 "name": "sales-funnel",
179 "label": _("Sales Funnel"),
180 "icon": "icon-bar-chart",
181 },
182 {
183 "type": "report",
184 "is_query_report": True,
185 "name": "Customer Acquisition and Loyalty",
186 "doctype": "Customer",
187 "icon": "icon-bar-chart",
188 },
189 ]
190 },
191 {
192 "label": _("Standard Reports"),
193 "icon": "icon-list",
194 "items": [
195 {
196 "type": "report",
197 "is_query_report": True,
198 "name": "Lead Details",
199 "doctype": "Lead"
200 },
201 {
202 "type": "report",
203 "is_query_report": True,
Anand Doshie8c5cb82014-07-14 13:10:24 +0530204 "name": "Customer Addresses and Contacts",
Anand Doshi08ef4672014-05-08 11:43:18 +0530205 "doctype": "Contact"
206 },
207 {
208 "type": "report",
209 "is_query_report": True,
210 "name": "Ordered Items To Be Delivered",
211 "doctype": "Sales Order"
212 },
213 {
214 "type": "report",
215 "is_query_report": True,
216 "name": "Sales Person-wise Transaction Summary",
217 "doctype": "Sales Order"
218 },
219 {
220 "type": "report",
221 "is_query_report": True,
222 "name": "Item-wise Sales History",
223 "doctype": "Item"
224 },
225 {
226 "type": "report",
227 "is_query_report": True,
228 "name": "Territory Target Variance (Item Group-Wise)",
229 "route": "query-report/Territory Target Variance Item Group-Wise",
230 "doctype": "Territory"
231 },
232 {
233 "type": "report",
234 "is_query_report": True,
235 "name": "Sales Person Target Variance (Item Group-Wise)",
236 "route": "query-report/Sales Person Target Variance Item Group-Wise",
237 "doctype": "Sales Person",
238 },
239 {
240 "type": "report",
241 "is_query_report": True,
242 "name": "Customers Not Buying Since Long Time",
243 "doctype": "Sales Order"
244 },
245 {
246 "type": "report",
247 "is_query_report": True,
Nabin Haitb7438892014-06-05 16:14:28 +0530248 "name": "Quotation Trends",
Anand Doshi08ef4672014-05-08 11:43:18 +0530249 "doctype": "Quotation"
250 },
251 {
252 "type": "report",
253 "is_query_report": True,
254 "name": "Sales Order Trends",
255 "doctype": "Sales Order"
256 },
257 {
258 "type": "report",
259 "is_query_report": True,
260 "name": "Available Stock for Packing Items",
261 "doctype": "Item",
262 },
263 {
264 "type": "report",
265 "is_query_report": True,
266 "name": "Pending SO Items For Purchase Request",
267 "doctype": "Sales Order"
268 },
Nabin Hait7dbcee82014-10-30 15:49:17 +0530269 {
270 "type": "report",
271 "is_query_report": True,
272 "name": "Customer Credit Balance",
273 "doctype": "Customer"
274 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530275 ]
276 },
277 ]