blob: a17679e116bd92c74b05af3e6f21b1a163a94864 [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",
Rushabh Mehta919a74a2017-06-22 16:37:04 +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 },
Ishan Loya09fe8e02017-04-25 14:26:33 +0530162 {
163 "type": "doctype",
164 "name": "Bank Guarantee",
165 "doctype": "Bank Guarantee"
166 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530167 ]
168 },
169 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530170 "label": _("Taxes"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530171 "items": [
172 {
173 "type": "doctype",
Rushabh Mehtabcdea3e2015-05-06 18:45:47 +0530174 "name": "Sales Taxes and Charges Template",
Anand Doshi08ef4672014-05-08 11:43:18 +0530175 "description": _("Tax template for selling transactions.")
176 },
177 {
178 "type": "doctype",
Rushabh Mehtabcdea3e2015-05-06 18:45:47 +0530179 "name": "Purchase Taxes and Charges Template",
Anand Doshi08ef4672014-05-08 11:43:18 +0530180 "description": _("Tax template for buying transactions.")
181 },
182 {
183 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530184 "name": "Tax Rule",
185 "description": _("Tax Rule for transactions.")
186 },
187 {
188 "type": "report",
189 "name": "Sales Register",
190 "doctype": "Sales Invoice",
191 "is_query_report": True
192 },
193 {
194 "type": "report",
195 "name": "Purchase Register",
196 "doctype": "Purchase Invoice",
197 "is_query_report": True
198 },
199 ]
200 },
201 {
Rushabh Mehta919a74a2017-06-22 16:37:04 +0530202 "label": _("Goods and Services Tax (GST India)"),
203 "items": [
204 {
205 "type": "doctype",
206 "name": "GST HSN Code",
207 },
208 {
209 "type": "report",
210 "name": "GST Sales Register",
211 "is_query_report": True
212 },
213 {
214 "type": "report",
215 "name": "GST Purchase Register",
216 "is_query_report": True
217 },
218 {
219 "type": "report",
220 "name": "GST Itemised Sales Register",
221 "is_query_report": True
222 },
223 {
224 "type": "report",
225 "name": "GST Itemised Purchase Register",
226 "is_query_report": True
227 },
228 ]
229 },
230 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530231 "label": _("Budget and Cost Center"),
232 "items": [
233 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530234 "type": "doctype",
235 "name": "Cost Center",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530236 "icon": "fa fa-sitemap",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530237 "label": _("Chart of Cost Centers"),
Saurabhec8babe2016-06-21 15:55:54 +0530238 "route": "Tree/Cost Center",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530239 "description": _("Tree of financial Cost Centers."),
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530240 },
241 {
Nabin Haitb9bc7d62016-05-16 14:38:47 +0530242 "type": "doctype",
243 "name": "Budget",
244 "description": _("Define budget for a financial year.")
245 },
246 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530247 "type": "report",
248 "name": "Budget Variance Report",
249 "is_query_report": True,
250 "doctype": "Cost Center"
251 },
252 {
253 "type":"doctype",
254 "name": "Monthly Distribution",
255 "description": _("Seasonality for setting budgets, targets etc.")
256 },
257 ]
258 },
259 {
260 "label": _("Tools"),
261 "items": [
262 {
263 "type": "doctype",
264 "name": "Period Closing Voucher",
265 "description": _("Close Balance Sheet and book Profit or Loss.")
266 },
Nabin Hait70f05df2016-04-25 18:49:17 +0530267 {
268 "type": "doctype",
269 "name": "Asset Movement",
270 "description": _("Transfer an asset from one warehouse to another")
271 },
Saurabh066ae8e2016-07-05 12:41:20 +0530272 {
273 "type": "doctype",
274 "name": "Cheque Print Template",
275 "description": _("Setup cheque dimensions for printing")
276 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530277 ]
278 },
279 {
280 "label": _("Setup"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530281 "icon": "fa fa-cog",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530282 "items": [
283 {
284 "type": "doctype",
285 "name": "Accounts Settings",
286 "description": _("Default settings for accounting transactions.")
Anand Doshi08ef4672014-05-08 11:43:18 +0530287 },
288 {
289 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530290 "name": "Fiscal Year",
291 "description": _("Financial / accounting year.")
Anand Doshi08ef4672014-05-08 11:43:18 +0530292 },
293 {
294 "type": "doctype",
295 "name": "Currency",
296 "description": _("Enable / disable currencies.")
297 },
298 {
299 "type": "doctype",
300 "name": "Currency Exchange",
301 "description": _("Currency exchange rate master.")
302 },
303 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530304 "type": "doctype",
305 "name": "Payment Gateway Account",
306 "description": _("Setup Gateway accounts.")
307 },
308 {
309 "type": "doctype",
310 "name": "POS Profile",
311 "label": _("Point-of-Sale Profile"),
312 "description": _("Rules to calculate shipping amount for a sale")
Anand Doshi08ef4672014-05-08 11:43:18 +0530313 },
314 {
315 "type": "doctype",
316 "name":"Terms and Conditions",
317 "label": _("Terms and Conditions Template"),
318 "description": _("Template of terms or contract.")
319 },
320 {
321 "type": "doctype",
322 "name":"Mode of Payment",
323 "description": _("e.g. Bank, Cash, Credit Card")
324 },
325 {
326 "type": "doctype",
327 "name":"C-Form",
328 "description": _("C-Form records"),
329 "country": "India"
330 }
331 ]
332 },
333 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530334 "label": _("To Bill"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530335 "items": [
336 {
337 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530338 "name": "Ordered Items To Be Billed",
339 "is_query_report": True,
340 "doctype": "Sales Invoice"
341 },
342 {
343 "type": "report",
344 "name": "Delivered Items To Be Billed",
345 "is_query_report": True,
346 "doctype": "Sales Invoice"
347 },
348 {
349 "type": "report",
350 "name": "Purchase Order Items To Be Billed",
351 "is_query_report": True,
352 "doctype": "Purchase Invoice"
353 },
354 {
355 "type": "report",
356 "name": "Received Items To Be Billed",
357 "is_query_report": True,
358 "doctype": "Purchase Invoice"
359 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530360 ]
361
362 },
363 {
364 "label": _("Analytics"),
365 "items": [
366 {
Anand Doshi08ef4672014-05-08 11:43:18 +0530367 "type": "report",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530368 "name": "Gross Profit",
369 "doctype": "Sales Invoice",
370 "is_query_report": True
371 },
372 {
373 "type": "report",
374 "name": "Purchase Invoice Trends",
Anand Doshi08ef4672014-05-08 11:43:18 +0530375 "is_query_report": True,
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530376 "doctype": "Purchase Invoice"
377 },
378 {
379 "type": "report",
380 "name": "Sales Invoice Trends",
381 "is_query_report": True,
382 "doctype": "Sales Invoice"
383 },
384 ]
385 },
386 {
387 "label": _("Other Reports"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530388 "icon": "fa fa-table",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530389 "items": [
390 {
391 "type": "report",
Nabin Haitcd0e8ce2016-04-09 16:06:28 +0530392 "name": "Asset Depreciation Ledger",
393 "doctype": "Asset",
394 "is_query_report": True,
395 },
396 {
397 "type": "report",
398 "name": "Asset Depreciations and Balances",
399 "doctype": "Asset",
400 "is_query_report": True,
401 },
402 {
403 "type": "report",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530404 "name": "Trial Balance for Party",
405 "doctype": "GL Entry",
406 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530407 },
408 {
409 "type": "report",
Nabin Haitfd23fa72016-11-21 16:57:39 +0530410 "name": "Profitability Analysis",
411 "doctype": "GL Entry",
412 "is_query_report": True,
413 },
414 {
415 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530416 "name": "Payment Period Based On Invoice Date",
417 "is_query_report": True,
Nabin Hait23d2a532014-12-25 17:14:18 +0530418 "doctype": "Journal Entry"
Anand Doshi08ef4672014-05-08 11:43:18 +0530419 },
420 {
421 "type": "report",
422 "name": "Sales Partners Commission",
423 "is_query_report": True,
424 "doctype": "Sales Invoice"
425 },
426 {
427 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530428 "name": "Item-wise Sales Register",
429 "is_query_report": True,
430 "doctype": "Sales Invoice"
431 },
432 {
433 "type": "report",
434 "name": "Item-wise Purchase Register",
435 "is_query_report": True,
436 "doctype": "Purchase Invoice"
437 },
438 {
439 "type": "report",
Nabin Haite6370862014-10-30 15:50:03 +0530440 "name": "Accounts Receivable Summary",
441 "doctype": "Sales Invoice",
442 "is_query_report": True
443 },
444 {
445 "type": "report",
ankitjavalkarworke6e65b02014-11-04 14:36:50 +0530446 "name": "Accounts Payable Summary",
447 "doctype": "Purchase Invoice",
448 "is_query_report": True
449 },
450 {
451 "type": "report",
Nabin Haite6370862014-10-30 15:50:03 +0530452 "is_query_report": True,
453 "name": "Customer Credit Balance",
454 "doctype": "Customer"
455 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530456 ]
457 },
Rushabh Mehta67712402015-05-25 18:30:53 +0530458 {
459 "label": _("Help"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530460 "icon": "fa fa-facetime-video",
Rushabh Mehta67712402015-05-25 18:30:53 +0530461 "items": [
462 {
463 "type": "help",
464 "label": _("Chart of Accounts"),
465 "youtube_id": "DyR-DST-PyA"
466 },
467 {
468 "type": "help",
469 "label": _("Opening Accounting Balance"),
470 "youtube_id": "kdgM20Q-q68"
471 },
472 {
473 "type": "help",
474 "label": _("Setting up Taxes"),
475 "youtube_id": "nQ1zZdPgdaQ"
476 }
477 ]
478 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530479 ]