blob: cdce13ba356f8f370f77366c1d7678dcc34ff9e6 [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",
Anand Doshi08ef4672014-05-08 11:43:18 +0530101 },
Nabin Hait9501a1e2016-03-30 15:06:19 +0530102 {
103 "type": "doctype",
104 "name": "Asset",
105 },
106 {
107 "type": "doctype",
108 "name": "Asset Category",
109 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530110 ]
111 },
112 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530113 "label": _("Accounting Statements"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530114 "items": [
115 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530116 "type": "report",
117 "name": "Trial Balance",
118 "doctype": "GL Entry",
119 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530120 },
ankitjavalkarworkb0cffac2014-07-22 15:02:59 +0530121 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530122 "type": "report",
123 "name": "Balance Sheet",
124 "doctype": "GL Entry",
125 "is_query_report": True
ankitjavalkarworkb0cffac2014-07-22 15:02:59 +0530126 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530127 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530128 "type": "report",
129 "name": "Cash Flow",
130 "doctype": "GL Entry",
131 "is_query_report": True
Anand Doshi08ef4672014-05-08 11:43:18 +0530132 },
Ankit Javalkar8e7ca412014-09-12 15:18:53 +0530133 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530134 "type": "report",
135 "name": "Profit and Loss Statement",
136 "doctype": "GL Entry",
137 "is_query_report": True
138 },
139 ]
140 },
141 {
142 "label": _("Banking and Payments"),
143 "items": [
144 {
Ankit Javalkar8e7ca412014-09-12 15:18:53 +0530145 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530146 "label": _("Update Bank Transaction Dates"),
147 "name": "Bank Reconciliation",
148 "description": _("Update bank payment dates with journals.")
149 },
150 {
151 "type": "doctype",
152 "label": _("Match Payments with Invoices"),
153 "name": "Payment Reconciliation",
154 "description": _("Match non-linked Invoices and Payments.")
155 },
156 {
157 "type": "report",
158 "name": "Bank Reconciliation Statement",
159 "is_query_report": True,
160 "doctype": "Journal Entry"
161 },
162 {
163 "type": "report",
164 "name": "Bank Clearance Summary",
165 "is_query_report": True,
166 "doctype": "Journal Entry"
167 },
Ishan Loya09fe8e02017-04-25 14:26:33 +0530168 {
169 "type": "doctype",
170 "name": "Bank Guarantee",
171 "doctype": "Bank Guarantee"
172 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530173 ]
174 },
175 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530176 "label": _("Taxes"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530177 "items": [
178 {
179 "type": "doctype",
Rushabh Mehtabcdea3e2015-05-06 18:45:47 +0530180 "name": "Sales Taxes and Charges Template",
Anand Doshi08ef4672014-05-08 11:43:18 +0530181 "description": _("Tax template for selling transactions.")
182 },
183 {
184 "type": "doctype",
Rushabh Mehtabcdea3e2015-05-06 18:45:47 +0530185 "name": "Purchase Taxes and Charges Template",
Anand Doshi08ef4672014-05-08 11:43:18 +0530186 "description": _("Tax template for buying transactions.")
187 },
188 {
189 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530190 "name": "Tax Rule",
191 "description": _("Tax Rule for transactions.")
192 },
193 {
194 "type": "report",
195 "name": "Sales Register",
196 "doctype": "Sales Invoice",
197 "is_query_report": True
198 },
199 {
200 "type": "report",
201 "name": "Purchase Register",
202 "doctype": "Purchase Invoice",
203 "is_query_report": True
204 },
205 ]
206 },
207 {
Rushabh Mehta919a74a2017-06-22 16:37:04 +0530208 "label": _("Goods and Services Tax (GST India)"),
209 "items": [
210 {
211 "type": "doctype",
Rushabh Mehta00ae4242017-06-27 17:31:41 +0530212 "name": "GST Settings",
213 },
214 {
215 "type": "doctype",
Rushabh Mehta919a74a2017-06-22 16:37:04 +0530216 "name": "GST HSN Code",
217 },
218 {
219 "type": "report",
220 "name": "GST Sales Register",
221 "is_query_report": True
222 },
223 {
224 "type": "report",
225 "name": "GST Purchase Register",
226 "is_query_report": True
227 },
228 {
229 "type": "report",
230 "name": "GST Itemised Sales Register",
231 "is_query_report": True
232 },
233 {
234 "type": "report",
235 "name": "GST Itemised Purchase Register",
236 "is_query_report": True
237 },
238 ]
239 },
240 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530241 "label": _("Budget and Cost Center"),
242 "items": [
243 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530244 "type": "doctype",
245 "name": "Cost Center",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530246 "icon": "fa fa-sitemap",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530247 "label": _("Chart of Cost Centers"),
Saurabhec8babe2016-06-21 15:55:54 +0530248 "route": "Tree/Cost Center",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530249 "description": _("Tree of financial Cost Centers."),
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530250 },
251 {
Nabin Haitb9bc7d62016-05-16 14:38:47 +0530252 "type": "doctype",
253 "name": "Budget",
254 "description": _("Define budget for a financial year.")
255 },
256 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530257 "type": "report",
258 "name": "Budget Variance Report",
259 "is_query_report": True,
260 "doctype": "Cost Center"
261 },
262 {
263 "type":"doctype",
264 "name": "Monthly Distribution",
265 "description": _("Seasonality for setting budgets, targets etc.")
266 },
267 ]
268 },
269 {
270 "label": _("Tools"),
271 "items": [
272 {
273 "type": "doctype",
274 "name": "Period Closing Voucher",
275 "description": _("Close Balance Sheet and book Profit or Loss.")
276 },
Nabin Hait70f05df2016-04-25 18:49:17 +0530277 {
278 "type": "doctype",
279 "name": "Asset Movement",
280 "description": _("Transfer an asset from one warehouse to another")
281 },
Saurabh066ae8e2016-07-05 12:41:20 +0530282 {
283 "type": "doctype",
284 "name": "Cheque Print Template",
285 "description": _("Setup cheque dimensions for printing")
286 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530287 ]
288 },
289 {
290 "label": _("Setup"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530291 "icon": "fa fa-cog",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530292 "items": [
293 {
294 "type": "doctype",
295 "name": "Accounts Settings",
296 "description": _("Default settings for accounting transactions.")
Anand Doshi08ef4672014-05-08 11:43:18 +0530297 },
298 {
299 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530300 "name": "Fiscal Year",
301 "description": _("Financial / accounting year.")
Anand Doshi08ef4672014-05-08 11:43:18 +0530302 },
303 {
304 "type": "doctype",
305 "name": "Currency",
306 "description": _("Enable / disable currencies.")
307 },
308 {
309 "type": "doctype",
310 "name": "Currency Exchange",
311 "description": _("Currency exchange rate master.")
312 },
313 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530314 "type": "doctype",
315 "name": "Payment Gateway Account",
316 "description": _("Setup Gateway accounts.")
317 },
318 {
319 "type": "doctype",
Nabin Hait7d4fd352017-10-05 12:20:33 +0530320 "name": "POS Settings",
321 "description": _("Setup mode of POS (Online / Offline)")
322 },
323 {
324 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530325 "name": "POS Profile",
326 "label": _("Point-of-Sale Profile"),
Nabin Hait7d4fd352017-10-05 12:20:33 +0530327 "description": _("Setup default values for POS Invoices")
Anand Doshi08ef4672014-05-08 11:43:18 +0530328 },
329 {
330 "type": "doctype",
331 "name":"Terms and Conditions",
332 "label": _("Terms and Conditions Template"),
333 "description": _("Template of terms or contract.")
334 },
335 {
336 "type": "doctype",
337 "name":"Mode of Payment",
338 "description": _("e.g. Bank, Cash, Credit Card")
339 },
340 {
341 "type": "doctype",
342 "name":"C-Form",
343 "description": _("C-Form records"),
344 "country": "India"
345 }
346 ]
347 },
348 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530349 "label": _("To Bill"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530350 "items": [
351 {
352 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530353 "name": "Ordered Items To Be Billed",
354 "is_query_report": True,
355 "doctype": "Sales Invoice"
356 },
357 {
358 "type": "report",
359 "name": "Delivered Items To Be Billed",
360 "is_query_report": True,
361 "doctype": "Sales Invoice"
362 },
363 {
364 "type": "report",
365 "name": "Purchase Order Items To Be Billed",
366 "is_query_report": True,
367 "doctype": "Purchase Invoice"
368 },
369 {
370 "type": "report",
371 "name": "Received Items To Be Billed",
372 "is_query_report": True,
373 "doctype": "Purchase Invoice"
374 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530375 ]
376
377 },
378 {
379 "label": _("Analytics"),
380 "items": [
381 {
Anand Doshi08ef4672014-05-08 11:43:18 +0530382 "type": "report",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530383 "name": "Gross Profit",
384 "doctype": "Sales Invoice",
385 "is_query_report": True
386 },
387 {
388 "type": "report",
389 "name": "Purchase Invoice Trends",
Anand Doshi08ef4672014-05-08 11:43:18 +0530390 "is_query_report": True,
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530391 "doctype": "Purchase Invoice"
392 },
393 {
394 "type": "report",
395 "name": "Sales Invoice Trends",
396 "is_query_report": True,
397 "doctype": "Sales Invoice"
398 },
399 ]
400 },
401 {
402 "label": _("Other Reports"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530403 "icon": "fa fa-table",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530404 "items": [
405 {
406 "type": "report",
Nabin Haitcd0e8ce2016-04-09 16:06:28 +0530407 "name": "Asset Depreciation Ledger",
408 "doctype": "Asset",
409 "is_query_report": True,
410 },
411 {
412 "type": "report",
413 "name": "Asset Depreciations and Balances",
414 "doctype": "Asset",
415 "is_query_report": True,
416 },
417 {
418 "type": "report",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530419 "name": "Trial Balance for Party",
420 "doctype": "GL Entry",
421 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530422 },
423 {
424 "type": "report",
Nabin Haitfd23fa72016-11-21 16:57:39 +0530425 "name": "Profitability Analysis",
426 "doctype": "GL Entry",
427 "is_query_report": True,
428 },
429 {
430 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530431 "name": "Payment Period Based On Invoice Date",
432 "is_query_report": True,
Nabin Hait23d2a532014-12-25 17:14:18 +0530433 "doctype": "Journal Entry"
Anand Doshi08ef4672014-05-08 11:43:18 +0530434 },
435 {
436 "type": "report",
437 "name": "Sales Partners Commission",
438 "is_query_report": True,
439 "doctype": "Sales Invoice"
440 },
441 {
442 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530443 "name": "Item-wise Sales Register",
444 "is_query_report": True,
445 "doctype": "Sales Invoice"
446 },
447 {
448 "type": "report",
449 "name": "Item-wise Purchase Register",
450 "is_query_report": True,
451 "doctype": "Purchase Invoice"
452 },
453 {
454 "type": "report",
Nabin Haite6370862014-10-30 15:50:03 +0530455 "name": "Accounts Receivable Summary",
456 "doctype": "Sales Invoice",
457 "is_query_report": True
458 },
459 {
460 "type": "report",
ankitjavalkarworke6e65b02014-11-04 14:36:50 +0530461 "name": "Accounts Payable Summary",
462 "doctype": "Purchase Invoice",
463 "is_query_report": True
464 },
465 {
466 "type": "report",
Nabin Haite6370862014-10-30 15:50:03 +0530467 "is_query_report": True,
468 "name": "Customer Credit Balance",
469 "doctype": "Customer"
470 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530471 ]
472 },
Rushabh Mehta67712402015-05-25 18:30:53 +0530473 {
474 "label": _("Help"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530475 "icon": "fa fa-facetime-video",
Rushabh Mehta67712402015-05-25 18:30:53 +0530476 "items": [
477 {
478 "type": "help",
479 "label": _("Chart of Accounts"),
480 "youtube_id": "DyR-DST-PyA"
481 },
482 {
483 "type": "help",
484 "label": _("Opening Accounting Balance"),
485 "youtube_id": "kdgM20Q-q68"
486 },
487 {
488 "type": "help",
489 "label": _("Setting up Taxes"),
490 "youtube_id": "nQ1zZdPgdaQ"
491 }
492 ]
493 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530494 ]