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