blob: 9dd50f8c7237bbc86f4f2efcdbef5bd75488b4d3 [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 {
25 "type": "report",
26 "name": "Accounts Receivable",
27 "doctype": "Sales Invoice",
28 "is_query_report": True
29 },
30 {
31 "type": "report",
32 "name": "Accounts Payable",
33 "doctype": "Purchase Invoice",
34 "is_query_report": True
35 },
36 ]
37
38 },
39 {
40 "label": _("Company and Accounts"),
41 "items": [
42 {
43 "type": "doctype",
44 "name": "Company",
45 "description": _("Company (not Customer or Supplier) master.")
46 },
47 {
48 "type": "doctype",
Nabin Hait221fa982016-06-28 17:07:16 +053049 "name": "Payment Entry",
50 "description": _("Payment entries against party or for internal transfer")
51 },
52 {
53 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053054 "name": "Journal Entry",
55 "description": _("Accounting journal entries.")
56 },
57 {
58 "type": "page",
Saurabh17022732016-06-21 13:19:17 +053059 "name": "Tree",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053060 "icon": "icon-sitemap",
61 "label": _("Chart of Accounts"),
Saurabh17022732016-06-21 13:19:17 +053062 "route": "Tree/Account",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053063 "description": _("Tree of financial accounts."),
64 "doctype": "Account",
65 },
66 {
67 "type": "report",
68 "name":"General Ledger",
69 "doctype": "GL Entry",
70 "is_query_report": True,
71 },
72 ]
73 },
74 {
75 "label": _("Masters"),
76 "items": [
77 {
78 "type": "doctype",
Anand Doshi08ef4672014-05-08 11:43:18 +053079 "name": "Customer",
80 "description": _("Customer database.")
81 },
82 {
83 "type": "doctype",
84 "name": "Supplier",
85 "description": _("Supplier database.")
86 },
87 {
Saurabh3ba22672015-12-21 18:24:49 +053088 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053089 "name": "Item",
Anand Doshi08ef4672014-05-08 11:43:18 +053090 },
Nabin Hait9501a1e2016-03-30 15:06:19 +053091 {
92 "type": "doctype",
93 "name": "Asset",
94 },
95 {
96 "type": "doctype",
97 "name": "Asset Category",
98 }
Anand Doshi08ef4672014-05-08 11:43:18 +053099 ]
100 },
101 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530102 "label": _("Accounting Statements"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530103 "items": [
104 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530105 "type": "report",
106 "name": "Trial Balance",
107 "doctype": "GL Entry",
108 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530109 },
ankitjavalkarworkb0cffac2014-07-22 15:02:59 +0530110 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530111 "type": "report",
112 "name": "Balance Sheet",
113 "doctype": "GL Entry",
114 "is_query_report": True
ankitjavalkarworkb0cffac2014-07-22 15:02:59 +0530115 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530116 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530117 "type": "report",
118 "name": "Cash Flow",
119 "doctype": "GL Entry",
120 "is_query_report": True
Anand Doshi08ef4672014-05-08 11:43:18 +0530121 },
Ankit Javalkar8e7ca412014-09-12 15:18:53 +0530122 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530123 "type": "report",
124 "name": "Profit and Loss Statement",
125 "doctype": "GL Entry",
126 "is_query_report": True
127 },
128 ]
129 },
130 {
131 "label": _("Banking and Payments"),
132 "items": [
133 {
Ankit Javalkar8e7ca412014-09-12 15:18:53 +0530134 "type": "doctype",
135 "name": "Payment Tool",
136 "description": _("Create Payment Entries against Orders or Invoices.")
137 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530138 {
139 "type": "doctype",
140 "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 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530162 ]
163 },
164 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530165 "label": _("Taxes"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530166 "items": [
167 {
168 "type": "doctype",
Rushabh Mehtabcdea3e2015-05-06 18:45:47 +0530169 "name": "Sales Taxes and Charges Template",
Anand Doshi08ef4672014-05-08 11:43:18 +0530170 "description": _("Tax template for selling transactions.")
171 },
172 {
173 "type": "doctype",
Rushabh Mehtabcdea3e2015-05-06 18:45:47 +0530174 "name": "Purchase Taxes and Charges Template",
Anand Doshi08ef4672014-05-08 11:43:18 +0530175 "description": _("Tax template for buying transactions.")
176 },
177 {
178 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530179 "name": "Tax Rule",
180 "description": _("Tax Rule for transactions.")
181 },
182 {
183 "type": "report",
184 "name": "Sales Register",
185 "doctype": "Sales Invoice",
186 "is_query_report": True
187 },
188 {
189 "type": "report",
190 "name": "Purchase Register",
191 "doctype": "Purchase Invoice",
192 "is_query_report": True
193 },
194 ]
195 },
196 {
197 "label": _("Budget and Cost Center"),
198 "items": [
199 {
200 "type": "page",
Saurabhec8babe2016-06-21 15:55:54 +0530201 "name": "Tree",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530202 "icon": "icon-sitemap",
203 "label": _("Chart of Cost Centers"),
Saurabhec8babe2016-06-21 15:55:54 +0530204 "route": "Tree/Cost Center",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530205 "description": _("Tree of financial Cost Centers."),
206 "doctype": "Cost Center",
207 },
208 {
Nabin Haitb9bc7d62016-05-16 14:38:47 +0530209 "type": "doctype",
210 "name": "Budget",
211 "description": _("Define budget for a financial year.")
212 },
213 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530214 "type": "report",
215 "name": "Budget Variance Report",
216 "is_query_report": True,
217 "doctype": "Cost Center"
218 },
219 {
220 "type":"doctype",
221 "name": "Monthly Distribution",
222 "description": _("Seasonality for setting budgets, targets etc.")
223 },
224 ]
225 },
226 {
227 "label": _("Tools"),
228 "items": [
229 {
230 "type": "doctype",
231 "name": "Period Closing Voucher",
232 "description": _("Close Balance Sheet and book Profit or Loss.")
233 },
Nabin Hait70f05df2016-04-25 18:49:17 +0530234 {
235 "type": "doctype",
236 "name": "Asset Movement",
237 "description": _("Transfer an asset from one warehouse to another")
238 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530239 ]
240 },
241 {
242 "label": _("Setup"),
243 "icon": "icon-cog",
244 "items": [
245 {
246 "type": "doctype",
247 "name": "Accounts Settings",
248 "description": _("Default settings for accounting transactions.")
Anand Doshi08ef4672014-05-08 11:43:18 +0530249 },
250 {
251 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530252 "name": "Fiscal Year",
253 "description": _("Financial / accounting year.")
Anand Doshi08ef4672014-05-08 11:43:18 +0530254 },
255 {
256 "type": "doctype",
257 "name": "Currency",
258 "description": _("Enable / disable currencies.")
259 },
260 {
261 "type": "doctype",
262 "name": "Currency Exchange",
263 "description": _("Currency exchange rate master.")
264 },
265 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530266 "type": "doctype",
267 "name": "Payment Gateway Account",
268 "description": _("Setup Gateway accounts.")
269 },
270 {
271 "type": "doctype",
272 "name": "POS Profile",
273 "label": _("Point-of-Sale Profile"),
274 "description": _("Rules to calculate shipping amount for a sale")
Anand Doshi08ef4672014-05-08 11:43:18 +0530275 },
276 {
277 "type": "doctype",
278 "name":"Terms and Conditions",
279 "label": _("Terms and Conditions Template"),
280 "description": _("Template of terms or contract.")
281 },
282 {
283 "type": "doctype",
284 "name":"Mode of Payment",
285 "description": _("e.g. Bank, Cash, Credit Card")
286 },
287 {
288 "type": "doctype",
289 "name":"C-Form",
290 "description": _("C-Form records"),
291 "country": "India"
292 }
293 ]
294 },
295 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530296 "label": _("To Bill"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530297 "items": [
298 {
299 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530300 "name": "Ordered Items To Be Billed",
301 "is_query_report": True,
302 "doctype": "Sales Invoice"
303 },
304 {
305 "type": "report",
306 "name": "Delivered Items To Be Billed",
307 "is_query_report": True,
308 "doctype": "Sales Invoice"
309 },
310 {
311 "type": "report",
312 "name": "Purchase Order Items To Be Billed",
313 "is_query_report": True,
314 "doctype": "Purchase Invoice"
315 },
316 {
317 "type": "report",
318 "name": "Received Items To Be Billed",
319 "is_query_report": True,
320 "doctype": "Purchase Invoice"
321 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530322 ]
323
324 },
325 {
326 "label": _("Analytics"),
327 "items": [
328 {
Anand Doshi08ef4672014-05-08 11:43:18 +0530329 "type": "report",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530330 "name": "Gross Profit",
331 "doctype": "Sales Invoice",
332 "is_query_report": True
333 },
334 {
335 "type": "report",
336 "name": "Purchase Invoice Trends",
Anand Doshi08ef4672014-05-08 11:43:18 +0530337 "is_query_report": True,
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530338 "doctype": "Purchase Invoice"
339 },
340 {
341 "type": "report",
342 "name": "Sales Invoice Trends",
343 "is_query_report": True,
344 "doctype": "Sales Invoice"
345 },
346 ]
347 },
348 {
349 "label": _("Other Reports"),
350 "icon": "icon-table",
351 "items": [
352 {
353 "type": "report",
Nabin Haitcd0e8ce2016-04-09 16:06:28 +0530354 "name": "Asset Depreciation Ledger",
355 "doctype": "Asset",
356 "is_query_report": True,
357 },
358 {
359 "type": "report",
360 "name": "Asset Depreciations and Balances",
361 "doctype": "Asset",
362 "is_query_report": True,
363 },
364 {
365 "type": "report",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530366 "name": "Trial Balance for Party",
367 "doctype": "GL Entry",
368 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530369 },
370 {
371 "type": "report",
372 "name": "Payment Period Based On Invoice Date",
373 "is_query_report": True,
Nabin Hait23d2a532014-12-25 17:14:18 +0530374 "doctype": "Journal Entry"
Anand Doshi08ef4672014-05-08 11:43:18 +0530375 },
376 {
377 "type": "report",
378 "name": "Sales Partners Commission",
379 "is_query_report": True,
380 "doctype": "Sales Invoice"
381 },
382 {
383 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530384 "name": "Item-wise Sales Register",
385 "is_query_report": True,
386 "doctype": "Sales Invoice"
387 },
388 {
389 "type": "report",
390 "name": "Item-wise Purchase Register",
391 "is_query_report": True,
392 "doctype": "Purchase Invoice"
393 },
394 {
395 "type": "report",
Nabin Haite6370862014-10-30 15:50:03 +0530396 "name": "Accounts Receivable Summary",
397 "doctype": "Sales Invoice",
398 "is_query_report": True
399 },
400 {
401 "type": "report",
ankitjavalkarworke6e65b02014-11-04 14:36:50 +0530402 "name": "Accounts Payable Summary",
403 "doctype": "Purchase Invoice",
404 "is_query_report": True
405 },
406 {
407 "type": "report",
Nabin Haite6370862014-10-30 15:50:03 +0530408 "is_query_report": True,
409 "name": "Customer Credit Balance",
410 "doctype": "Customer"
411 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530412 ]
413 },
Rushabh Mehta67712402015-05-25 18:30:53 +0530414 {
415 "label": _("Help"),
416 "icon": "icon-facetime-video",
417 "items": [
418 {
419 "type": "help",
420 "label": _("Chart of Accounts"),
421 "youtube_id": "DyR-DST-PyA"
422 },
423 {
424 "type": "help",
425 "label": _("Opening Accounting Balance"),
426 "youtube_id": "kdgM20Q-q68"
427 },
428 {
429 "type": "help",
430 "label": _("Setting up Taxes"),
431 "youtube_id": "nQ1zZdPgdaQ"
432 }
433 ]
434 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530435 ]