blob: d9faf6dd738dd8de7f5e9f06677b8d3bf2058f32 [file] [log] [blame]
Anand Doshid57e7932015-02-24 12:24:53 +05301from __future__ import unicode_literals
Anand Doshif5794f12014-03-03 15:05:28 +05302from frappe import _
3
Anand Doshi08ef4672014-05-08 11:43:18 +05304def get_data():
5 return [
6 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +05307 "label": _("Billing"),
Anand Doshi08ef4672014-05-08 11:43:18 +05308 "items": [
9 {
10 "type": "doctype",
Anand Doshi08ef4672014-05-08 11:43:18 +053011 "name": "Sales Invoice",
12 "description": _("Bills raised to Customers.")
13 },
14 {
15 "type": "doctype",
16 "name": "Purchase Invoice",
17 "description": _("Bills raised by Suppliers.")
18 },
19 {
20 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053021 "name": "Payment Request",
22 "description": _("Payment Request")
23 },
24 {
Nabin Haite4bbb692016-07-04 16:16:24 +053025 "type": "doctype",
26 "name": "Payment Entry",
27 "description": _("Bank/Cash transactions against party or for internal transfer")
28 },
29 {
Nabin Hait3bb1a422016-08-02 16:41:10 +053030 "type": "page",
31 "name": "pos",
32 "label": _("POS"),
33 "description": _("Point of Sale")
34 },
35 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053036 "type": "report",
37 "name": "Accounts Receivable",
Nabin Haite4bbb692016-07-04 16:16:24 +053038 "doctype": "Sales Invoice",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053039 "is_query_report": True
40 },
41 {
42 "type": "report",
43 "name": "Accounts Payable",
44 "doctype": "Purchase Invoice",
45 "is_query_report": True
46 },
47 ]
48
49 },
50 {
51 "label": _("Company and Accounts"),
52 "items": [
53 {
54 "type": "doctype",
55 "name": "Company",
56 "description": _("Company (not Customer or Supplier) master.")
57 },
58 {
59 "type": "doctype",
60 "name": "Journal Entry",
61 "description": _("Accounting journal entries.")
62 },
63 {
Saurabh52ec0ed2016-07-05 18:02:38 +053064 "type": "doctype",
65 "name": "Account",
Rushabh Mehta2167ff52016-12-07 11:08:48 +053066 "icon": "fa fa-sitemap",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053067 "label": _("Chart of Accounts"),
Saurabh17022732016-06-21 13:19:17 +053068 "route": "Tree/Account",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053069 "description": _("Tree of financial accounts."),
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053070 },
71 {
72 "type": "report",
73 "name":"General Ledger",
74 "doctype": "GL Entry",
75 "is_query_report": True,
76 },
77 ]
78 },
79 {
80 "label": _("Masters"),
81 "items": [
82 {
83 "type": "doctype",
Anand Doshi08ef4672014-05-08 11:43:18 +053084 "name": "Customer",
85 "description": _("Customer database.")
86 },
87 {
88 "type": "doctype",
89 "name": "Supplier",
90 "description": _("Supplier database.")
91 },
92 {
Saurabh3ba22672015-12-21 18:24:49 +053093 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053094 "name": "Item",
Anand Doshi08ef4672014-05-08 11:43:18 +053095 },
Nabin Hait9501a1e2016-03-30 15:06:19 +053096 {
97 "type": "doctype",
98 "name": "Asset",
99 },
100 {
101 "type": "doctype",
102 "name": "Asset Category",
103 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530104 ]
105 },
106 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530107 "label": _("Accounting Statements"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530108 "items": [
109 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530110 "type": "report",
111 "name": "Trial Balance",
112 "doctype": "GL Entry",
113 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530114 },
ankitjavalkarworkb0cffac2014-07-22 15:02:59 +0530115 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530116 "type": "report",
117 "name": "Balance Sheet",
118 "doctype": "GL Entry",
119 "is_query_report": True
ankitjavalkarworkb0cffac2014-07-22 15:02:59 +0530120 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530121 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530122 "type": "report",
123 "name": "Cash Flow",
124 "doctype": "GL Entry",
125 "is_query_report": True
Anand Doshi08ef4672014-05-08 11:43:18 +0530126 },
Ankit Javalkar8e7ca412014-09-12 15:18:53 +0530127 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530128 "type": "report",
129 "name": "Profit and Loss Statement",
130 "doctype": "GL Entry",
131 "is_query_report": True
132 },
133 ]
134 },
135 {
136 "label": _("Banking and Payments"),
137 "items": [
138 {
Ankit Javalkar8e7ca412014-09-12 15:18:53 +0530139 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530140 "label": _("Update Bank Transaction Dates"),
141 "name": "Bank Reconciliation",
142 "description": _("Update bank payment dates with journals.")
143 },
144 {
145 "type": "doctype",
146 "label": _("Match Payments with Invoices"),
147 "name": "Payment Reconciliation",
148 "description": _("Match non-linked Invoices and Payments.")
149 },
150 {
151 "type": "report",
152 "name": "Bank Reconciliation Statement",
153 "is_query_report": True,
154 "doctype": "Journal Entry"
155 },
156 {
157 "type": "report",
158 "name": "Bank Clearance Summary",
159 "is_query_report": True,
160 "doctype": "Journal Entry"
161 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530162 ]
163 },
164 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530165 "label": _("Taxes"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530166 "items": [
167 {
168 "type": "doctype",
Rushabh Mehtabcdea3e2015-05-06 18:45:47 +0530169 "name": "Sales Taxes and Charges Template",
Anand Doshi08ef4672014-05-08 11:43:18 +0530170 "description": _("Tax template for selling transactions.")
171 },
172 {
173 "type": "doctype",
Rushabh Mehtabcdea3e2015-05-06 18:45:47 +0530174 "name": "Purchase Taxes and Charges Template",
Anand Doshi08ef4672014-05-08 11:43:18 +0530175 "description": _("Tax template for buying transactions.")
176 },
177 {
178 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530179 "name": "Tax Rule",
180 "description": _("Tax Rule for transactions.")
181 },
182 {
183 "type": "report",
184 "name": "Sales Register",
185 "doctype": "Sales Invoice",
186 "is_query_report": True
187 },
188 {
189 "type": "report",
190 "name": "Purchase Register",
191 "doctype": "Purchase Invoice",
192 "is_query_report": True
193 },
194 ]
195 },
196 {
197 "label": _("Budget and Cost Center"),
198 "items": [
199 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530200 "type": "doctype",
201 "name": "Cost Center",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530202 "icon": "fa fa-sitemap",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530203 "label": _("Chart of Cost Centers"),
Saurabhec8babe2016-06-21 15:55:54 +0530204 "route": "Tree/Cost Center",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530205 "description": _("Tree of financial Cost Centers."),
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530206 },
207 {
Nabin Haitb9bc7d62016-05-16 14:38:47 +0530208 "type": "doctype",
209 "name": "Budget",
210 "description": _("Define budget for a financial year.")
211 },
212 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530213 "type": "report",
214 "name": "Budget Variance Report",
215 "is_query_report": True,
216 "doctype": "Cost Center"
217 },
218 {
219 "type":"doctype",
220 "name": "Monthly Distribution",
221 "description": _("Seasonality for setting budgets, targets etc.")
222 },
223 ]
224 },
225 {
226 "label": _("Tools"),
227 "items": [
228 {
229 "type": "doctype",
230 "name": "Period Closing Voucher",
231 "description": _("Close Balance Sheet and book Profit or Loss.")
232 },
Nabin Hait70f05df2016-04-25 18:49:17 +0530233 {
234 "type": "doctype",
235 "name": "Asset Movement",
236 "description": _("Transfer an asset from one warehouse to another")
237 },
Saurabh066ae8e2016-07-05 12:41:20 +0530238 {
239 "type": "doctype",
240 "name": "Cheque Print Template",
241 "description": _("Setup cheque dimensions for printing")
242 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530243 ]
244 },
245 {
246 "label": _("Setup"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530247 "icon": "fa fa-cog",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530248 "items": [
249 {
250 "type": "doctype",
251 "name": "Accounts Settings",
252 "description": _("Default settings for accounting transactions.")
Anand Doshi08ef4672014-05-08 11:43:18 +0530253 },
254 {
255 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530256 "name": "Fiscal Year",
257 "description": _("Financial / accounting year.")
Anand Doshi08ef4672014-05-08 11:43:18 +0530258 },
259 {
260 "type": "doctype",
261 "name": "Currency",
262 "description": _("Enable / disable currencies.")
263 },
264 {
265 "type": "doctype",
266 "name": "Currency Exchange",
267 "description": _("Currency exchange rate master.")
268 },
269 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530270 "type": "doctype",
271 "name": "Payment Gateway Account",
272 "description": _("Setup Gateway accounts.")
273 },
274 {
275 "type": "doctype",
276 "name": "POS Profile",
277 "label": _("Point-of-Sale Profile"),
278 "description": _("Rules to calculate shipping amount for a sale")
Anand Doshi08ef4672014-05-08 11:43:18 +0530279 },
280 {
281 "type": "doctype",
282 "name":"Terms and Conditions",
283 "label": _("Terms and Conditions Template"),
284 "description": _("Template of terms or contract.")
285 },
286 {
287 "type": "doctype",
288 "name":"Mode of Payment",
289 "description": _("e.g. Bank, Cash, Credit Card")
290 },
291 {
292 "type": "doctype",
293 "name":"C-Form",
294 "description": _("C-Form records"),
295 "country": "India"
296 }
297 ]
298 },
299 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530300 "label": _("To Bill"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530301 "items": [
302 {
303 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530304 "name": "Ordered Items To Be Billed",
305 "is_query_report": True,
306 "doctype": "Sales Invoice"
307 },
308 {
309 "type": "report",
310 "name": "Delivered Items To Be Billed",
311 "is_query_report": True,
312 "doctype": "Sales Invoice"
313 },
314 {
315 "type": "report",
316 "name": "Purchase Order Items To Be Billed",
317 "is_query_report": True,
318 "doctype": "Purchase Invoice"
319 },
320 {
321 "type": "report",
322 "name": "Received Items To Be Billed",
323 "is_query_report": True,
324 "doctype": "Purchase Invoice"
325 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530326 ]
327
328 },
329 {
330 "label": _("Analytics"),
331 "items": [
332 {
Anand Doshi08ef4672014-05-08 11:43:18 +0530333 "type": "report",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530334 "name": "Gross Profit",
335 "doctype": "Sales Invoice",
336 "is_query_report": True
337 },
338 {
339 "type": "report",
340 "name": "Purchase Invoice Trends",
Anand Doshi08ef4672014-05-08 11:43:18 +0530341 "is_query_report": True,
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530342 "doctype": "Purchase Invoice"
343 },
344 {
345 "type": "report",
346 "name": "Sales Invoice Trends",
347 "is_query_report": True,
348 "doctype": "Sales Invoice"
349 },
350 ]
351 },
352 {
353 "label": _("Other Reports"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530354 "icon": "fa fa-table",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530355 "items": [
356 {
357 "type": "report",
Nabin Haitcd0e8ce2016-04-09 16:06:28 +0530358 "name": "Asset Depreciation Ledger",
359 "doctype": "Asset",
360 "is_query_report": True,
361 },
362 {
363 "type": "report",
364 "name": "Asset Depreciations and Balances",
365 "doctype": "Asset",
366 "is_query_report": True,
367 },
368 {
369 "type": "report",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530370 "name": "Trial Balance for Party",
371 "doctype": "GL Entry",
372 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530373 },
374 {
375 "type": "report",
Nabin Haitfd23fa72016-11-21 16:57:39 +0530376 "name": "Profitability Analysis",
377 "doctype": "GL Entry",
378 "is_query_report": True,
379 },
380 {
381 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530382 "name": "Payment Period Based On Invoice Date",
383 "is_query_report": True,
Nabin Hait23d2a532014-12-25 17:14:18 +0530384 "doctype": "Journal Entry"
Anand Doshi08ef4672014-05-08 11:43:18 +0530385 },
386 {
387 "type": "report",
388 "name": "Sales Partners Commission",
389 "is_query_report": True,
390 "doctype": "Sales Invoice"
391 },
392 {
393 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530394 "name": "Item-wise Sales Register",
395 "is_query_report": True,
396 "doctype": "Sales Invoice"
397 },
398 {
399 "type": "report",
400 "name": "Item-wise Purchase Register",
401 "is_query_report": True,
402 "doctype": "Purchase Invoice"
403 },
404 {
405 "type": "report",
Nabin Haite6370862014-10-30 15:50:03 +0530406 "name": "Accounts Receivable Summary",
407 "doctype": "Sales Invoice",
408 "is_query_report": True
409 },
410 {
411 "type": "report",
ankitjavalkarworke6e65b02014-11-04 14:36:50 +0530412 "name": "Accounts Payable Summary",
413 "doctype": "Purchase Invoice",
414 "is_query_report": True
415 },
416 {
417 "type": "report",
Nabin Haite6370862014-10-30 15:50:03 +0530418 "is_query_report": True,
419 "name": "Customer Credit Balance",
420 "doctype": "Customer"
421 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530422 ]
423 },
Rushabh Mehta67712402015-05-25 18:30:53 +0530424 {
425 "label": _("Help"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530426 "icon": "fa fa-facetime-video",
Rushabh Mehta67712402015-05-25 18:30:53 +0530427 "items": [
428 {
429 "type": "help",
430 "label": _("Chart of Accounts"),
431 "youtube_id": "DyR-DST-PyA"
432 },
433 {
434 "type": "help",
435 "label": _("Opening Accounting Balance"),
436 "youtube_id": "kdgM20Q-q68"
437 },
438 {
439 "type": "help",
440 "label": _("Setting up Taxes"),
441 "youtube_id": "nQ1zZdPgdaQ"
442 }
443 ]
444 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530445 ]