blob: 088a1196785ffba97836707c97edce24019d54c7 [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",
37 "name": "Subscription",
38 "label": _("Subscription"),
39 "description": _("To make recurring documents")
40 },
41 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053042 "type": "report",
43 "name": "Accounts Receivable",
Rushabh Mehta919a74a2017-06-22 16:37:04 +053044 "doctype": "Sales Invoice",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053045 "is_query_report": True
46 },
47 {
48 "type": "report",
49 "name": "Accounts Payable",
50 "doctype": "Purchase Invoice",
51 "is_query_report": True
52 },
53 ]
54
55 },
56 {
57 "label": _("Company and Accounts"),
58 "items": [
59 {
60 "type": "doctype",
61 "name": "Company",
62 "description": _("Company (not Customer or Supplier) master.")
63 },
64 {
65 "type": "doctype",
66 "name": "Journal Entry",
67 "description": _("Accounting journal entries.")
68 },
69 {
Saurabh52ec0ed2016-07-05 18:02:38 +053070 "type": "doctype",
71 "name": "Account",
Rushabh Mehta2167ff52016-12-07 11:08:48 +053072 "icon": "fa fa-sitemap",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053073 "label": _("Chart of Accounts"),
Saurabh17022732016-06-21 13:19:17 +053074 "route": "Tree/Account",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053075 "description": _("Tree of financial accounts."),
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053076 },
77 {
78 "type": "report",
79 "name":"General Ledger",
80 "doctype": "GL Entry",
81 "is_query_report": True,
82 },
83 ]
84 },
85 {
86 "label": _("Masters"),
87 "items": [
88 {
89 "type": "doctype",
Anand Doshi08ef4672014-05-08 11:43:18 +053090 "name": "Customer",
91 "description": _("Customer database.")
92 },
93 {
94 "type": "doctype",
95 "name": "Supplier",
96 "description": _("Supplier database.")
97 },
98 {
Saurabh3ba22672015-12-21 18:24:49 +053099 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530100 "name": "Item",
Nabin Hait9501a1e2016-03-30 15:06:19 +0530101 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530102 ]
103 },
104 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530105 "label": _("Accounting Statements"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530106 "items": [
107 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530108 "type": "report",
109 "name": "Trial Balance",
110 "doctype": "GL Entry",
111 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530112 },
ankitjavalkarworkb0cffac2014-07-22 15:02:59 +0530113 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530114 "type": "report",
115 "name": "Balance Sheet",
116 "doctype": "GL Entry",
117 "is_query_report": True
ankitjavalkarworkb0cffac2014-07-22 15:02:59 +0530118 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530119 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530120 "type": "report",
121 "name": "Cash Flow",
122 "doctype": "GL Entry",
123 "is_query_report": True
Anand Doshi08ef4672014-05-08 11:43:18 +0530124 },
Ankit Javalkar8e7ca412014-09-12 15:18:53 +0530125 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530126 "type": "report",
127 "name": "Profit and Loss Statement",
128 "doctype": "GL Entry",
129 "is_query_report": True
130 },
131 ]
132 },
133 {
134 "label": _("Banking and Payments"),
135 "items": [
136 {
Ankit Javalkar8e7ca412014-09-12 15:18:53 +0530137 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530138 "label": _("Update Bank Transaction Dates"),
139 "name": "Bank Reconciliation",
140 "description": _("Update bank payment dates with journals.")
141 },
142 {
143 "type": "doctype",
144 "label": _("Match Payments with Invoices"),
145 "name": "Payment Reconciliation",
146 "description": _("Match non-linked Invoices and Payments.")
147 },
148 {
149 "type": "report",
150 "name": "Bank Reconciliation Statement",
151 "is_query_report": True,
152 "doctype": "Journal Entry"
153 },
154 {
155 "type": "report",
156 "name": "Bank Clearance Summary",
157 "is_query_report": True,
158 "doctype": "Journal Entry"
159 },
Ishan Loya09fe8e02017-04-25 14:26:33 +0530160 {
161 "type": "doctype",
162 "name": "Bank Guarantee",
163 "doctype": "Bank Guarantee"
164 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530165 ]
166 },
167 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530168 "label": _("Taxes"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530169 "items": [
170 {
171 "type": "doctype",
Rushabh Mehtabcdea3e2015-05-06 18:45:47 +0530172 "name": "Sales Taxes and Charges Template",
Anand Doshi08ef4672014-05-08 11:43:18 +0530173 "description": _("Tax template for selling transactions.")
174 },
175 {
176 "type": "doctype",
Rushabh Mehtabcdea3e2015-05-06 18:45:47 +0530177 "name": "Purchase Taxes and Charges Template",
Anand Doshi08ef4672014-05-08 11:43:18 +0530178 "description": _("Tax template for buying transactions.")
179 },
180 {
181 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530182 "name": "Tax Rule",
183 "description": _("Tax Rule for transactions.")
184 },
185 {
186 "type": "report",
187 "name": "Sales Register",
188 "doctype": "Sales Invoice",
189 "is_query_report": True
190 },
191 {
192 "type": "report",
193 "name": "Purchase Register",
194 "doctype": "Purchase Invoice",
195 "is_query_report": True
196 },
197 ]
198 },
199 {
Rushabh Mehta919a74a2017-06-22 16:37:04 +0530200 "label": _("Goods and Services Tax (GST India)"),
201 "items": [
202 {
203 "type": "doctype",
Rushabh Mehta00ae4242017-06-27 17:31:41 +0530204 "name": "GST Settings",
205 },
206 {
207 "type": "doctype",
Rushabh Mehta919a74a2017-06-22 16:37:04 +0530208 "name": "GST HSN Code",
209 },
210 {
211 "type": "report",
212 "name": "GST Sales Register",
213 "is_query_report": True
214 },
215 {
216 "type": "report",
217 "name": "GST Purchase Register",
218 "is_query_report": True
219 },
220 {
221 "type": "report",
222 "name": "GST Itemised Sales Register",
223 "is_query_report": True
224 },
225 {
226 "type": "report",
227 "name": "GST Itemised Purchase Register",
228 "is_query_report": True
229 },
230 ]
231 },
232 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530233 "label": _("Budget and Cost Center"),
234 "items": [
235 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530236 "type": "doctype",
237 "name": "Cost Center",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530238 "icon": "fa fa-sitemap",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530239 "label": _("Chart of Cost Centers"),
Saurabhec8babe2016-06-21 15:55:54 +0530240 "route": "Tree/Cost Center",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530241 "description": _("Tree of financial Cost Centers."),
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530242 },
243 {
Nabin Haitb9bc7d62016-05-16 14:38:47 +0530244 "type": "doctype",
245 "name": "Budget",
246 "description": _("Define budget for a financial year.")
247 },
248 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530249 "type": "report",
250 "name": "Budget Variance Report",
251 "is_query_report": True,
252 "doctype": "Cost Center"
253 },
254 {
255 "type":"doctype",
256 "name": "Monthly Distribution",
257 "description": _("Seasonality for setting budgets, targets etc.")
258 },
259 ]
260 },
261 {
262 "label": _("Tools"),
263 "items": [
264 {
265 "type": "doctype",
266 "name": "Period Closing Voucher",
267 "description": _("Close Balance Sheet and book Profit or Loss.")
268 },
Nabin Hait70f05df2016-04-25 18:49:17 +0530269 {
270 "type": "doctype",
Saurabh066ae8e2016-07-05 12:41:20 +0530271 "name": "Cheque Print Template",
272 "description": _("Setup cheque dimensions for printing")
273 },
Rushabh Mehtad3f5d092017-11-15 16:29:53 +0530274 {
275 "type": "doctype",
276 "name": "Opening Invoice Creation Tool",
277 "description": _("Make Opening Sales and Purchase Invoices")
278 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530279 ]
280 },
281 {
282 "label": _("Setup"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530283 "icon": "fa fa-cog",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530284 "items": [
285 {
286 "type": "doctype",
287 "name": "Accounts Settings",
288 "description": _("Default settings for accounting transactions.")
Anand Doshi08ef4672014-05-08 11:43:18 +0530289 },
290 {
291 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530292 "name": "Fiscal Year",
293 "description": _("Financial / accounting year.")
Anand Doshi08ef4672014-05-08 11:43:18 +0530294 },
295 {
296 "type": "doctype",
297 "name": "Currency",
298 "description": _("Enable / disable currencies.")
299 },
300 {
301 "type": "doctype",
302 "name": "Currency Exchange",
303 "description": _("Currency exchange rate master.")
304 },
305 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530306 "type": "doctype",
307 "name": "Payment Gateway Account",
308 "description": _("Setup Gateway accounts.")
309 },
310 {
311 "type": "doctype",
Nabin Hait7d4fd352017-10-05 12:20:33 +0530312 "name": "POS Settings",
313 "description": _("Setup mode of POS (Online / Offline)")
314 },
315 {
316 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530317 "name": "POS Profile",
318 "label": _("Point-of-Sale Profile"),
Nabin Hait7d4fd352017-10-05 12:20:33 +0530319 "description": _("Setup default values for POS Invoices")
Anand Doshi08ef4672014-05-08 11:43:18 +0530320 },
321 {
322 "type": "doctype",
323 "name":"Terms and Conditions",
324 "label": _("Terms and Conditions Template"),
325 "description": _("Template of terms or contract.")
326 },
327 {
328 "type": "doctype",
329 "name":"Mode of Payment",
330 "description": _("e.g. Bank, Cash, Credit Card")
331 },
332 {
333 "type": "doctype",
334 "name":"C-Form",
335 "description": _("C-Form records"),
336 "country": "India"
337 }
338 ]
339 },
340 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530341 "label": _("To Bill"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530342 "items": [
343 {
344 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530345 "name": "Ordered Items To Be Billed",
346 "is_query_report": True,
347 "doctype": "Sales Invoice"
348 },
349 {
350 "type": "report",
351 "name": "Delivered Items To Be Billed",
352 "is_query_report": True,
353 "doctype": "Sales Invoice"
354 },
355 {
356 "type": "report",
357 "name": "Purchase Order Items To Be Billed",
358 "is_query_report": True,
359 "doctype": "Purchase Invoice"
360 },
361 {
362 "type": "report",
363 "name": "Received Items To Be Billed",
364 "is_query_report": True,
365 "doctype": "Purchase Invoice"
366 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530367 ]
368
369 },
370 {
371 "label": _("Analytics"),
372 "items": [
373 {
Anand Doshi08ef4672014-05-08 11:43:18 +0530374 "type": "report",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530375 "name": "Gross Profit",
376 "doctype": "Sales Invoice",
377 "is_query_report": True
378 },
379 {
380 "type": "report",
381 "name": "Purchase Invoice Trends",
Anand Doshi08ef4672014-05-08 11:43:18 +0530382 "is_query_report": True,
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530383 "doctype": "Purchase Invoice"
384 },
385 {
386 "type": "report",
387 "name": "Sales Invoice Trends",
388 "is_query_report": True,
389 "doctype": "Sales Invoice"
390 },
391 ]
392 },
393 {
394 "label": _("Other Reports"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530395 "icon": "fa fa-table",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530396 "items": [
397 {
398 "type": "report",
399 "name": "Trial Balance for Party",
400 "doctype": "GL Entry",
401 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530402 },
403 {
404 "type": "report",
Nabin Haitfd23fa72016-11-21 16:57:39 +0530405 "name": "Profitability Analysis",
406 "doctype": "GL Entry",
407 "is_query_report": True,
408 },
409 {
410 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530411 "name": "Payment Period Based On Invoice Date",
412 "is_query_report": True,
Nabin Hait23d2a532014-12-25 17:14:18 +0530413 "doctype": "Journal Entry"
Anand Doshi08ef4672014-05-08 11:43:18 +0530414 },
415 {
416 "type": "report",
417 "name": "Sales Partners Commission",
418 "is_query_report": True,
419 "doctype": "Sales Invoice"
420 },
421 {
422 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530423 "name": "Item-wise Sales Register",
424 "is_query_report": True,
425 "doctype": "Sales Invoice"
426 },
427 {
428 "type": "report",
429 "name": "Item-wise Purchase Register",
430 "is_query_report": True,
431 "doctype": "Purchase Invoice"
432 },
433 {
434 "type": "report",
Nabin Haite6370862014-10-30 15:50:03 +0530435 "name": "Accounts Receivable Summary",
436 "doctype": "Sales Invoice",
437 "is_query_report": True
438 },
439 {
440 "type": "report",
ankitjavalkarworke6e65b02014-11-04 14:36:50 +0530441 "name": "Accounts Payable Summary",
442 "doctype": "Purchase Invoice",
443 "is_query_report": True
444 },
445 {
446 "type": "report",
Nabin Haite6370862014-10-30 15:50:03 +0530447 "is_query_report": True,
448 "name": "Customer Credit Balance",
449 "doctype": "Customer"
450 },
pawane61a2752017-11-02 17:53:24 +0530451 {
452 "type": "report",
453 "is_query_report": True,
pawan8d1d64a2017-11-03 21:52:07 +0530454 "name": "Sales Payment Summary",
pawane61a2752017-11-02 17:53:24 +0530455 "doctype": "Sales Invoice"
456 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530457 ]
458 },
Rushabh Mehta67712402015-05-25 18:30:53 +0530459 {
Ameya Shenoy5c33a042018-02-12 11:32:47 +0530460 "label": _("Share Management"),
461 "icon": "fa fa-microchip ",
462 "items": [
463 {
464 "type": "doctype",
465 "name":"Shareholder",
466 "description": _("List of available Shareholders with folio numbers")
467 },
468 {
469 "type": "doctype",
470 "name":"Share Transfer",
471 "description": _("List of all share transactions"),
472 },
473 {
474 "type": "report",
475 "name": "Share Ledger",
476 "doctype": "Share Transfer",
477 "is_query_report": True
478 },
479 {
480 "type": "report",
481 "name": "Share Balance",
482 "doctype": "Share Transfer",
483 "is_query_report": True
484 }
485 ]
486 },
487 {
Rushabh Mehta67712402015-05-25 18:30:53 +0530488 "label": _("Help"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530489 "icon": "fa fa-facetime-video",
Rushabh Mehta67712402015-05-25 18:30:53 +0530490 "items": [
491 {
492 "type": "help",
493 "label": _("Chart of Accounts"),
494 "youtube_id": "DyR-DST-PyA"
495 },
496 {
497 "type": "help",
498 "label": _("Opening Accounting Balance"),
499 "youtube_id": "kdgM20Q-q68"
500 },
501 {
502 "type": "help",
503 "label": _("Setting up Taxes"),
504 "youtube_id": "nQ1zZdPgdaQ"
505 }
506 ]
507 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530508 ]