blob: 02aa14b13840a02d6216b92c4da53dabced93fa0 [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 },
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 {
202 "label": _("Budget and Cost Center"),
203 "items": [
204 {
Saurabh52ec0ed2016-07-05 18:02:38 +0530205 "type": "doctype",
206 "name": "Cost Center",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530207 "icon": "fa fa-sitemap",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530208 "label": _("Chart of Cost Centers"),
Saurabhec8babe2016-06-21 15:55:54 +0530209 "route": "Tree/Cost Center",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530210 "description": _("Tree of financial Cost Centers."),
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530211 },
212 {
Nabin Haitb9bc7d62016-05-16 14:38:47 +0530213 "type": "doctype",
214 "name": "Budget",
215 "description": _("Define budget for a financial year.")
216 },
217 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530218 "type": "report",
219 "name": "Budget Variance Report",
220 "is_query_report": True,
221 "doctype": "Cost Center"
222 },
223 {
224 "type":"doctype",
225 "name": "Monthly Distribution",
226 "description": _("Seasonality for setting budgets, targets etc.")
227 },
228 ]
229 },
230 {
231 "label": _("Tools"),
232 "items": [
233 {
234 "type": "doctype",
235 "name": "Period Closing Voucher",
236 "description": _("Close Balance Sheet and book Profit or Loss.")
237 },
Nabin Hait70f05df2016-04-25 18:49:17 +0530238 {
239 "type": "doctype",
240 "name": "Asset Movement",
241 "description": _("Transfer an asset from one warehouse to another")
242 },
Saurabh066ae8e2016-07-05 12:41:20 +0530243 {
244 "type": "doctype",
245 "name": "Cheque Print Template",
246 "description": _("Setup cheque dimensions for printing")
247 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530248 ]
249 },
250 {
251 "label": _("Setup"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530252 "icon": "fa fa-cog",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530253 "items": [
254 {
255 "type": "doctype",
256 "name": "Accounts Settings",
257 "description": _("Default settings for accounting transactions.")
Anand Doshi08ef4672014-05-08 11:43:18 +0530258 },
259 {
260 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530261 "name": "Fiscal Year",
262 "description": _("Financial / accounting year.")
Anand Doshi08ef4672014-05-08 11:43:18 +0530263 },
264 {
265 "type": "doctype",
266 "name": "Currency",
267 "description": _("Enable / disable currencies.")
268 },
269 {
270 "type": "doctype",
271 "name": "Currency Exchange",
272 "description": _("Currency exchange rate master.")
273 },
274 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530275 "type": "doctype",
276 "name": "Payment Gateway Account",
277 "description": _("Setup Gateway accounts.")
278 },
279 {
280 "type": "doctype",
281 "name": "POS Profile",
282 "label": _("Point-of-Sale Profile"),
283 "description": _("Rules to calculate shipping amount for a sale")
Anand Doshi08ef4672014-05-08 11:43:18 +0530284 },
285 {
286 "type": "doctype",
287 "name":"Terms and Conditions",
288 "label": _("Terms and Conditions Template"),
289 "description": _("Template of terms or contract.")
290 },
291 {
292 "type": "doctype",
293 "name":"Mode of Payment",
294 "description": _("e.g. Bank, Cash, Credit Card")
295 },
296 {
297 "type": "doctype",
298 "name":"C-Form",
299 "description": _("C-Form records"),
300 "country": "India"
301 }
302 ]
303 },
304 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530305 "label": _("To Bill"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530306 "items": [
307 {
308 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530309 "name": "Ordered Items To Be Billed",
310 "is_query_report": True,
311 "doctype": "Sales Invoice"
312 },
313 {
314 "type": "report",
315 "name": "Delivered Items To Be Billed",
316 "is_query_report": True,
317 "doctype": "Sales Invoice"
318 },
319 {
320 "type": "report",
321 "name": "Purchase Order Items To Be Billed",
322 "is_query_report": True,
323 "doctype": "Purchase Invoice"
324 },
325 {
326 "type": "report",
327 "name": "Received Items To Be Billed",
328 "is_query_report": True,
329 "doctype": "Purchase Invoice"
330 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530331 ]
332
333 },
334 {
335 "label": _("Analytics"),
336 "items": [
337 {
Anand Doshi08ef4672014-05-08 11:43:18 +0530338 "type": "report",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530339 "name": "Gross Profit",
340 "doctype": "Sales Invoice",
341 "is_query_report": True
342 },
343 {
344 "type": "report",
345 "name": "Purchase Invoice Trends",
Anand Doshi08ef4672014-05-08 11:43:18 +0530346 "is_query_report": True,
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530347 "doctype": "Purchase Invoice"
348 },
349 {
350 "type": "report",
351 "name": "Sales Invoice Trends",
352 "is_query_report": True,
353 "doctype": "Sales Invoice"
354 },
355 ]
356 },
357 {
358 "label": _("Other Reports"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530359 "icon": "fa fa-table",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530360 "items": [
361 {
362 "type": "report",
Nabin Haitcd0e8ce2016-04-09 16:06:28 +0530363 "name": "Asset Depreciation Ledger",
364 "doctype": "Asset",
365 "is_query_report": True,
366 },
367 {
368 "type": "report",
369 "name": "Asset Depreciations and Balances",
370 "doctype": "Asset",
371 "is_query_report": True,
372 },
373 {
374 "type": "report",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530375 "name": "Trial Balance for Party",
376 "doctype": "GL Entry",
377 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530378 },
379 {
380 "type": "report",
Nabin Haitfd23fa72016-11-21 16:57:39 +0530381 "name": "Profitability Analysis",
382 "doctype": "GL Entry",
383 "is_query_report": True,
384 },
385 {
386 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530387 "name": "Payment Period Based On Invoice Date",
388 "is_query_report": True,
Nabin Hait23d2a532014-12-25 17:14:18 +0530389 "doctype": "Journal Entry"
Anand Doshi08ef4672014-05-08 11:43:18 +0530390 },
391 {
392 "type": "report",
393 "name": "Sales Partners Commission",
394 "is_query_report": True,
395 "doctype": "Sales Invoice"
396 },
397 {
398 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530399 "name": "Item-wise Sales Register",
400 "is_query_report": True,
401 "doctype": "Sales Invoice"
402 },
403 {
404 "type": "report",
405 "name": "Item-wise Purchase Register",
406 "is_query_report": True,
407 "doctype": "Purchase Invoice"
408 },
409 {
410 "type": "report",
Nabin Haite6370862014-10-30 15:50:03 +0530411 "name": "Accounts Receivable Summary",
412 "doctype": "Sales Invoice",
413 "is_query_report": True
414 },
415 {
416 "type": "report",
ankitjavalkarworke6e65b02014-11-04 14:36:50 +0530417 "name": "Accounts Payable Summary",
418 "doctype": "Purchase Invoice",
419 "is_query_report": True
420 },
421 {
422 "type": "report",
Nabin Haite6370862014-10-30 15:50:03 +0530423 "is_query_report": True,
424 "name": "Customer Credit Balance",
425 "doctype": "Customer"
426 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530427 ]
428 },
Rushabh Mehta67712402015-05-25 18:30:53 +0530429 {
430 "label": _("Help"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530431 "icon": "fa fa-facetime-video",
Rushabh Mehta67712402015-05-25 18:30:53 +0530432 "items": [
433 {
434 "type": "help",
435 "label": _("Chart of Accounts"),
436 "youtube_id": "DyR-DST-PyA"
437 },
438 {
439 "type": "help",
440 "label": _("Opening Accounting Balance"),
441 "youtube_id": "kdgM20Q-q68"
442 },
443 {
444 "type": "help",
445 "label": _("Setting up Taxes"),
446 "youtube_id": "nQ1zZdPgdaQ"
447 }
448 ]
449 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530450 ]