blob: 660f78cc91138648edb68f4294daee56a006ebb7 [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 {
rohitwaghchauredd092e32017-09-15 16:16:36 +053036 "type": "doctype",
Bassam Ramadan574cd462018-09-06 15:32:25 +020037 "name": "Cashier Closing",
38 "description": _("Cashier Closing")
39 },
40 {
41 "type": "doctype",
Zarrarf2df7f32018-05-08 16:06:36 +053042 "name": "Auto Repeat",
43 "label": _("Auto Repeat"),
rohitwaghchauredd092e32017-09-15 16:16:36 +053044 "description": _("To make recurring documents")
45 },
46 {
Zarrar2cadb1e2018-08-06 14:46:16 +053047 "type": "doctype",
48 "name": "Loyalty Program",
49 "label": _("Loyalty Program"),
50 "description": _("To make Customer based incentive schemes.")
51 },
52 {
53 "type": "doctype",
54 "name": "Loyalty Point Entry",
55 "label": _("Loyalty Point Entry"),
56 "description": _("To view logs of Loyalty Points assigned to a Customer.")
57 },
58 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053059 "type": "report",
60 "name": "Accounts Receivable",
Rushabh Mehta919a74a2017-06-22 16:37:04 +053061 "doctype": "Sales Invoice",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053062 "is_query_report": True
63 },
64 {
65 "type": "report",
66 "name": "Accounts Payable",
67 "doctype": "Purchase Invoice",
68 "is_query_report": True
69 },
70 ]
71
72 },
73 {
74 "label": _("Company and Accounts"),
75 "items": [
76 {
77 "type": "doctype",
78 "name": "Company",
79 "description": _("Company (not Customer or Supplier) master.")
80 },
81 {
82 "type": "doctype",
83 "name": "Journal Entry",
84 "description": _("Accounting journal entries.")
85 },
86 {
Saurabh52ec0ed2016-07-05 18:02:38 +053087 "type": "doctype",
88 "name": "Account",
Rushabh Mehta2167ff52016-12-07 11:08:48 +053089 "icon": "fa fa-sitemap",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053090 "label": _("Chart of Accounts"),
Saurabh17022732016-06-21 13:19:17 +053091 "route": "Tree/Account",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053092 "description": _("Tree of financial accounts."),
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053093 },
94 {
95 "type": "report",
96 "name":"General Ledger",
97 "doctype": "GL Entry",
98 "is_query_report": True,
99 },
100 ]
101 },
102 {
103 "label": _("Masters"),
104 "items": [
105 {
106 "type": "doctype",
Anand Doshi08ef4672014-05-08 11:43:18 +0530107 "name": "Customer",
108 "description": _("Customer database.")
109 },
110 {
111 "type": "doctype",
112 "name": "Supplier",
113 "description": _("Supplier database.")
114 },
115 {
Saurabh3ba22672015-12-21 18:24:49 +0530116 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530117 "name": "Item",
Nabin Hait9501a1e2016-03-30 15:06:19 +0530118 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530119 ]
120 },
121 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530122 "label": _("Accounting Statements"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530123 "items": [
124 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530125 "type": "report",
126 "name": "Trial Balance",
127 "doctype": "GL Entry",
128 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530129 },
ankitjavalkarworkb0cffac2014-07-22 15:02:59 +0530130 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530131 "type": "report",
132 "name": "Balance Sheet",
133 "doctype": "GL Entry",
134 "is_query_report": True
ankitjavalkarworkb0cffac2014-07-22 15:02:59 +0530135 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530136 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530137 "type": "report",
138 "name": "Cash Flow",
139 "doctype": "GL Entry",
140 "is_query_report": True
Anand Doshi08ef4672014-05-08 11:43:18 +0530141 },
Ankit Javalkar8e7ca412014-09-12 15:18:53 +0530142 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530143 "type": "report",
144 "name": "Profit and Loss Statement",
145 "doctype": "GL Entry",
146 "is_query_report": True
147 },
rohitwaghchaureefff6e52018-04-18 10:52:07 +0530148 {
149 "type": "report",
150 "name": "Consolidated Financial Statement",
151 "doctype": "GL Entry",
152 "is_query_report": True
153 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530154 ]
155 },
156 {
157 "label": _("Banking and Payments"),
158 "items": [
159 {
Ankit Javalkar8e7ca412014-09-12 15:18:53 +0530160 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530161 "label": _("Update Bank Transaction Dates"),
162 "name": "Bank Reconciliation",
163 "description": _("Update bank payment dates with journals.")
164 },
165 {
166 "type": "doctype",
167 "label": _("Match Payments with Invoices"),
168 "name": "Payment Reconciliation",
169 "description": _("Match non-linked Invoices and Payments.")
170 },
171 {
172 "type": "report",
173 "name": "Bank Reconciliation Statement",
174 "is_query_report": True,
175 "doctype": "Journal Entry"
176 },
177 {
178 "type": "report",
179 "name": "Bank Clearance Summary",
180 "is_query_report": True,
181 "doctype": "Journal Entry"
182 },
Ishan Loya09fe8e02017-04-25 14:26:33 +0530183 {
184 "type": "doctype",
185 "name": "Bank Guarantee",
186 "doctype": "Bank Guarantee"
187 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530188 ]
189 },
190 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530191 "label": _("Taxes"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530192 "items": [
193 {
194 "type": "doctype",
Rushabh Mehtabcdea3e2015-05-06 18:45:47 +0530195 "name": "Sales Taxes and Charges Template",
Anand Doshi08ef4672014-05-08 11:43:18 +0530196 "description": _("Tax template for selling transactions.")
197 },
198 {
199 "type": "doctype",
Rushabh Mehtabcdea3e2015-05-06 18:45:47 +0530200 "name": "Purchase Taxes and Charges Template",
Anand Doshi08ef4672014-05-08 11:43:18 +0530201 "description": _("Tax template for buying transactions.")
202 },
203 {
204 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530205 "name": "Tax Rule",
206 "description": _("Tax Rule for transactions.")
207 },
208 {
Zarrar2cadb1e2018-08-06 14:46:16 +0530209 "type": "doctype",
210 "name": "Tax Withholding Category",
211 "description": _("Tax Withholding rates to be applied on transactions.")
212 },
213 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530214 "type": "report",
215 "name": "Sales Register",
216 "doctype": "Sales Invoice",
217 "is_query_report": True
218 },
219 {
220 "type": "report",
221 "name": "Purchase Register",
222 "doctype": "Purchase Invoice",
223 "is_query_report": True
224 },
225 ]
226 },
227 {
Rushabh Mehta919a74a2017-06-22 16:37:04 +0530228 "label": _("Goods and Services Tax (GST India)"),
229 "items": [
230 {
231 "type": "doctype",
Rushabh Mehta00ae4242017-06-27 17:31:41 +0530232 "name": "GST Settings",
233 },
234 {
235 "type": "doctype",
Rushabh Mehta919a74a2017-06-22 16:37:04 +0530236 "name": "GST HSN Code",
237 },
238 {
239 "type": "report",
240 "name": "GST Sales Register",
241 "is_query_report": True
242 },
243 {
244 "type": "report",
245 "name": "GST Purchase Register",
246 "is_query_report": True
247 },
248 {
249 "type": "report",
250 "name": "GST Itemised Sales Register",
251 "is_query_report": True
252 },
253 {
254 "type": "report",
255 "name": "GST Itemised Purchase Register",
256 "is_query_report": True
257 },
258 ]
259 },
260 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530261 "label": _("Budget and Cost Center"),
262 "items": [
263 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530264 "type": "doctype",
265 "name": "Cost Center",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530266 "icon": "fa fa-sitemap",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530267 "label": _("Chart of Cost Centers"),
Saurabhec8babe2016-06-21 15:55:54 +0530268 "route": "Tree/Cost Center",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530269 "description": _("Tree of financial Cost Centers."),
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530270 },
271 {
Nabin Haitb9bc7d62016-05-16 14:38:47 +0530272 "type": "doctype",
273 "name": "Budget",
274 "description": _("Define budget for a financial year.")
275 },
276 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530277 "type": "report",
278 "name": "Budget Variance Report",
279 "is_query_report": True,
280 "doctype": "Cost Center"
281 },
282 {
283 "type":"doctype",
284 "name": "Monthly Distribution",
285 "description": _("Seasonality for setting budgets, targets etc.")
286 },
287 ]
288 },
289 {
290 "label": _("Tools"),
291 "items": [
292 {
293 "type": "doctype",
294 "name": "Period Closing Voucher",
295 "description": _("Close Balance Sheet and book Profit or Loss.")
296 },
Nabin Hait70f05df2016-04-25 18:49:17 +0530297 {
298 "type": "doctype",
Saurabh066ae8e2016-07-05 12:41:20 +0530299 "name": "Cheque Print Template",
300 "description": _("Setup cheque dimensions for printing")
301 },
Rushabh Mehtad3f5d092017-11-15 16:29:53 +0530302 {
303 "type": "doctype",
304 "name": "Opening Invoice Creation Tool",
305 "description": _("Make Opening Sales and Purchase Invoices")
306 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530307 ]
308 },
309 {
310 "label": _("Setup"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530311 "icon": "fa fa-cog",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530312 "items": [
313 {
314 "type": "doctype",
315 "name": "Accounts Settings",
316 "description": _("Default settings for accounting transactions.")
Anand Doshi08ef4672014-05-08 11:43:18 +0530317 },
318 {
319 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530320 "name": "Fiscal Year",
321 "description": _("Financial / accounting year.")
Anand Doshi08ef4672014-05-08 11:43:18 +0530322 },
323 {
324 "type": "doctype",
325 "name": "Currency",
326 "description": _("Enable / disable currencies.")
327 },
328 {
329 "type": "doctype",
330 "name": "Currency Exchange",
331 "description": _("Currency exchange rate master.")
332 },
333 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530334 "type": "doctype",
335 "name": "Payment Gateway Account",
336 "description": _("Setup Gateway accounts.")
337 },
338 {
339 "type": "doctype",
Nabin Hait7d4fd352017-10-05 12:20:33 +0530340 "name": "POS Settings",
341 "description": _("Setup mode of POS (Online / Offline)")
342 },
343 {
344 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530345 "name": "POS Profile",
346 "label": _("Point-of-Sale Profile"),
Nabin Hait7d4fd352017-10-05 12:20:33 +0530347 "description": _("Setup default values for POS Invoices")
Anand Doshi08ef4672014-05-08 11:43:18 +0530348 },
349 {
350 "type": "doctype",
351 "name":"Terms and Conditions",
352 "label": _("Terms and Conditions Template"),
353 "description": _("Template of terms or contract.")
354 },
355 {
356 "type": "doctype",
357 "name":"Mode of Payment",
358 "description": _("e.g. Bank, Cash, Credit Card")
359 },
360 {
361 "type": "doctype",
362 "name":"C-Form",
363 "description": _("C-Form records"),
364 "country": "India"
365 }
366 ]
367 },
368 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530369 "label": _("To Bill"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530370 "items": [
371 {
372 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530373 "name": "Ordered Items To Be Billed",
374 "is_query_report": True,
375 "doctype": "Sales Invoice"
376 },
377 {
378 "type": "report",
379 "name": "Delivered Items To Be Billed",
380 "is_query_report": True,
381 "doctype": "Sales Invoice"
382 },
383 {
384 "type": "report",
385 "name": "Purchase Order Items To Be Billed",
386 "is_query_report": True,
387 "doctype": "Purchase Invoice"
388 },
389 {
390 "type": "report",
391 "name": "Received Items To Be Billed",
392 "is_query_report": True,
393 "doctype": "Purchase Invoice"
394 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530395 ]
396
397 },
398 {
399 "label": _("Analytics"),
400 "items": [
401 {
Anand Doshi08ef4672014-05-08 11:43:18 +0530402 "type": "report",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530403 "name": "Gross Profit",
404 "doctype": "Sales Invoice",
405 "is_query_report": True
406 },
407 {
408 "type": "report",
409 "name": "Purchase Invoice Trends",
Anand Doshi08ef4672014-05-08 11:43:18 +0530410 "is_query_report": True,
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530411 "doctype": "Purchase Invoice"
412 },
413 {
414 "type": "report",
415 "name": "Sales Invoice Trends",
416 "is_query_report": True,
417 "doctype": "Sales Invoice"
418 },
419 ]
420 },
421 {
422 "label": _("Other Reports"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530423 "icon": "fa fa-table",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530424 "items": [
425 {
426 "type": "report",
427 "name": "Trial Balance for Party",
428 "doctype": "GL Entry",
429 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530430 },
431 {
432 "type": "report",
Nabin Haitfd23fa72016-11-21 16:57:39 +0530433 "name": "Profitability Analysis",
434 "doctype": "GL Entry",
435 "is_query_report": True,
436 },
437 {
438 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530439 "name": "Payment Period Based On Invoice Date",
440 "is_query_report": True,
Nabin Hait23d2a532014-12-25 17:14:18 +0530441 "doctype": "Journal Entry"
Anand Doshi08ef4672014-05-08 11:43:18 +0530442 },
443 {
444 "type": "report",
445 "name": "Sales Partners Commission",
446 "is_query_report": True,
447 "doctype": "Sales Invoice"
448 },
449 {
450 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530451 "name": "Item-wise Sales Register",
452 "is_query_report": True,
453 "doctype": "Sales Invoice"
454 },
455 {
456 "type": "report",
457 "name": "Item-wise Purchase Register",
458 "is_query_report": True,
459 "doctype": "Purchase Invoice"
460 },
461 {
462 "type": "report",
Nabin Haite6370862014-10-30 15:50:03 +0530463 "name": "Accounts Receivable Summary",
464 "doctype": "Sales Invoice",
465 "is_query_report": True
466 },
467 {
468 "type": "report",
ankitjavalkarworke6e65b02014-11-04 14:36:50 +0530469 "name": "Accounts Payable Summary",
470 "doctype": "Purchase Invoice",
471 "is_query_report": True
472 },
473 {
474 "type": "report",
Nabin Haite6370862014-10-30 15:50:03 +0530475 "is_query_report": True,
476 "name": "Customer Credit Balance",
477 "doctype": "Customer"
478 },
pawane61a2752017-11-02 17:53:24 +0530479 {
480 "type": "report",
481 "is_query_report": True,
pawan8d1d64a2017-11-03 21:52:07 +0530482 "name": "Sales Payment Summary",
pawane61a2752017-11-02 17:53:24 +0530483 "doctype": "Sales Invoice"
Shreya Shah51034542018-06-05 10:44:36 +0530484 },
485 {
486 "type": "report",
487 "is_query_report": True,
488 "name": "Address And Contacts",
489 "doctype": "Address"
pawane61a2752017-11-02 17:53:24 +0530490 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530491 ]
492 },
Rushabh Mehta67712402015-05-25 18:30:53 +0530493 {
Ameya Shenoy5c33a042018-02-12 11:32:47 +0530494 "label": _("Share Management"),
495 "icon": "fa fa-microchip ",
496 "items": [
497 {
498 "type": "doctype",
499 "name":"Shareholder",
500 "description": _("List of available Shareholders with folio numbers")
501 },
502 {
503 "type": "doctype",
504 "name":"Share Transfer",
505 "description": _("List of all share transactions"),
506 },
507 {
508 "type": "report",
509 "name": "Share Ledger",
510 "doctype": "Share Transfer",
511 "is_query_report": True
512 },
513 {
514 "type": "report",
515 "name": "Share Balance",
516 "doctype": "Share Transfer",
517 "is_query_report": True
518 }
519 ]
520 },
521 {
Saurabh3d825e52018-07-13 17:41:36 +0530522 "label": _("Subscription Management"),
523 "icon": "fa fa-microchip ",
524 "items": [
525 {
526 "type": "doctype",
527 "name":"Subscriber",
528 },
529 {
530 "type": "doctype",
531 "name":"Subscription Plan",
532 },
533 {
534 "type": "doctype",
535 "name":"Subscription"
536 },
537 {
538 "type": "doctype",
539 "name": "Subscription Settings"
540 }
541 ]
542 },
543 {
Rushabh Mehta67712402015-05-25 18:30:53 +0530544 "label": _("Help"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530545 "icon": "fa fa-facetime-video",
Rushabh Mehta67712402015-05-25 18:30:53 +0530546 "items": [
547 {
548 "type": "help",
549 "label": _("Chart of Accounts"),
550 "youtube_id": "DyR-DST-PyA"
551 },
552 {
553 "type": "help",
554 "label": _("Opening Accounting Balance"),
555 "youtube_id": "kdgM20Q-q68"
556 },
557 {
558 "type": "help",
559 "label": _("Setting up Taxes"),
560 "youtube_id": "nQ1zZdPgdaQ"
561 }
562 ]
563 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530564 ]