blob: d0629e7cb0e34cce49f0009a06b26a06176d379a [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",
49 "name": "Journal Entry",
50 "description": _("Accounting journal entries.")
51 },
52 {
53 "type": "page",
54 "name": "Accounts Browser",
55 "icon": "icon-sitemap",
56 "label": _("Chart of Accounts"),
57 "route": "Accounts Browser/Account",
58 "description": _("Tree of financial accounts."),
59 "doctype": "Account",
60 },
61 {
62 "type": "report",
63 "name":"General Ledger",
64 "doctype": "GL Entry",
65 "is_query_report": True,
66 },
67 ]
68 },
69 {
70 "label": _("Masters"),
71 "items": [
72 {
73 "type": "doctype",
Anand Doshi08ef4672014-05-08 11:43:18 +053074 "name": "Customer",
75 "description": _("Customer database.")
76 },
77 {
78 "type": "doctype",
79 "name": "Supplier",
80 "description": _("Supplier database.")
81 },
82 {
Saurabh3ba22672015-12-21 18:24:49 +053083 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053084 "name": "Item",
Anand Doshi08ef4672014-05-08 11:43:18 +053085 },
Nabin Hait9501a1e2016-03-30 15:06:19 +053086 {
87 "type": "doctype",
88 "name": "Asset",
89 },
90 {
91 "type": "doctype",
92 "name": "Asset Category",
93 }
Anand Doshi08ef4672014-05-08 11:43:18 +053094 ]
95 },
96 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053097 "label": _("Accounting Statements"),
Anand Doshi08ef4672014-05-08 11:43:18 +053098 "items": [
99 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530100 "type": "report",
101 "name": "Trial Balance",
102 "doctype": "GL Entry",
103 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530104 },
ankitjavalkarworkb0cffac2014-07-22 15:02:59 +0530105 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530106 "type": "report",
107 "name": "Balance Sheet",
108 "doctype": "GL Entry",
109 "is_query_report": True
ankitjavalkarworkb0cffac2014-07-22 15:02:59 +0530110 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530111 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530112 "type": "report",
113 "name": "Cash Flow",
114 "doctype": "GL Entry",
115 "is_query_report": True
Anand Doshi08ef4672014-05-08 11:43:18 +0530116 },
Ankit Javalkar8e7ca412014-09-12 15:18:53 +0530117 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530118 "type": "report",
119 "name": "Profit and Loss Statement",
120 "doctype": "GL Entry",
121 "is_query_report": True
122 },
123 ]
124 },
125 {
126 "label": _("Banking and Payments"),
127 "items": [
128 {
Ankit Javalkar8e7ca412014-09-12 15:18:53 +0530129 "type": "doctype",
130 "name": "Payment Tool",
131 "description": _("Create Payment Entries against Orders or Invoices.")
132 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530133 {
134 "type": "doctype",
135 "label": _("Update Bank Transaction Dates"),
136 "name": "Bank Reconciliation",
137 "description": _("Update bank payment dates with journals.")
138 },
139 {
140 "type": "doctype",
141 "label": _("Match Payments with Invoices"),
142 "name": "Payment Reconciliation",
143 "description": _("Match non-linked Invoices and Payments.")
144 },
145 {
146 "type": "report",
147 "name": "Bank Reconciliation Statement",
148 "is_query_report": True,
149 "doctype": "Journal Entry"
150 },
151 {
152 "type": "report",
153 "name": "Bank Clearance Summary",
154 "is_query_report": True,
155 "doctype": "Journal Entry"
156 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530157 ]
158 },
159 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530160 "label": _("Taxes"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530161 "items": [
162 {
163 "type": "doctype",
Rushabh Mehtabcdea3e2015-05-06 18:45:47 +0530164 "name": "Sales Taxes and Charges Template",
Anand Doshi08ef4672014-05-08 11:43:18 +0530165 "description": _("Tax template for selling transactions.")
166 },
167 {
168 "type": "doctype",
Rushabh Mehtabcdea3e2015-05-06 18:45:47 +0530169 "name": "Purchase Taxes and Charges Template",
Anand Doshi08ef4672014-05-08 11:43:18 +0530170 "description": _("Tax template for buying transactions.")
171 },
172 {
173 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530174 "name": "Tax Rule",
175 "description": _("Tax Rule for transactions.")
176 },
177 {
178 "type": "report",
179 "name": "Sales Register",
180 "doctype": "Sales Invoice",
181 "is_query_report": True
182 },
183 {
184 "type": "report",
185 "name": "Purchase Register",
186 "doctype": "Purchase Invoice",
187 "is_query_report": True
188 },
189 ]
190 },
191 {
192 "label": _("Budget and Cost Center"),
193 "items": [
194 {
195 "type": "page",
196 "name": "Accounts Browser",
197 "icon": "icon-sitemap",
198 "label": _("Chart of Cost Centers"),
199 "route": "Accounts Browser/Cost Center",
200 "description": _("Tree of financial Cost Centers."),
201 "doctype": "Cost Center",
202 },
203 {
204 "type": "report",
205 "name": "Budget Variance Report",
206 "is_query_report": True,
207 "doctype": "Cost Center"
208 },
209 {
210 "type":"doctype",
211 "name": "Monthly Distribution",
212 "description": _("Seasonality for setting budgets, targets etc.")
213 },
214 ]
215 },
216 {
217 "label": _("Tools"),
218 "items": [
219 {
220 "type": "doctype",
221 "name": "Period Closing Voucher",
222 "description": _("Close Balance Sheet and book Profit or Loss.")
223 },
Nabin Hait70f05df2016-04-25 18:49:17 +0530224 {
225 "type": "doctype",
226 "name": "Asset Movement",
227 "description": _("Transfer an asset from one warehouse to another")
228 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530229 ]
230 },
231 {
232 "label": _("Setup"),
233 "icon": "icon-cog",
234 "items": [
235 {
236 "type": "doctype",
237 "name": "Accounts Settings",
238 "description": _("Default settings for accounting transactions.")
Anand Doshi08ef4672014-05-08 11:43:18 +0530239 },
240 {
241 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530242 "name": "Fiscal Year",
243 "description": _("Financial / accounting year.")
Anand Doshi08ef4672014-05-08 11:43:18 +0530244 },
245 {
246 "type": "doctype",
247 "name": "Currency",
248 "description": _("Enable / disable currencies.")
249 },
250 {
251 "type": "doctype",
252 "name": "Currency Exchange",
253 "description": _("Currency exchange rate master.")
254 },
255 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530256 "type": "doctype",
257 "name": "Payment Gateway Account",
258 "description": _("Setup Gateway accounts.")
259 },
260 {
261 "type": "doctype",
262 "name": "POS Profile",
263 "label": _("Point-of-Sale Profile"),
264 "description": _("Rules to calculate shipping amount for a sale")
Anand Doshi08ef4672014-05-08 11:43:18 +0530265 },
266 {
267 "type": "doctype",
268 "name":"Terms and Conditions",
269 "label": _("Terms and Conditions Template"),
270 "description": _("Template of terms or contract.")
271 },
272 {
273 "type": "doctype",
274 "name":"Mode of Payment",
275 "description": _("e.g. Bank, Cash, Credit Card")
276 },
277 {
278 "type": "doctype",
279 "name":"C-Form",
280 "description": _("C-Form records"),
281 "country": "India"
282 }
283 ]
284 },
285 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530286 "label": _("To Bill"),
Anand Doshi08ef4672014-05-08 11:43:18 +0530287 "items": [
288 {
289 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530290 "name": "Ordered Items To Be Billed",
291 "is_query_report": True,
292 "doctype": "Sales Invoice"
293 },
294 {
295 "type": "report",
296 "name": "Delivered Items To Be Billed",
297 "is_query_report": True,
298 "doctype": "Sales Invoice"
299 },
300 {
301 "type": "report",
302 "name": "Purchase Order Items To Be Billed",
303 "is_query_report": True,
304 "doctype": "Purchase Invoice"
305 },
306 {
307 "type": "report",
308 "name": "Received Items To Be Billed",
309 "is_query_report": True,
310 "doctype": "Purchase Invoice"
311 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530312 ]
313
314 },
315 {
316 "label": _("Analytics"),
317 "items": [
318 {
319 "type": "page",
320 "name": "financial-analytics",
321 "label": _("Financial Analytics"),
322 "icon": "icon-bar-chart",
323 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530324 {
325 "type": "report",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530326 "name": "Gross Profit",
327 "doctype": "Sales Invoice",
328 "is_query_report": True
329 },
330 {
331 "type": "report",
332 "name": "Purchase Invoice Trends",
Anand Doshi08ef4672014-05-08 11:43:18 +0530333 "is_query_report": True,
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530334 "doctype": "Purchase Invoice"
335 },
336 {
337 "type": "report",
338 "name": "Sales Invoice Trends",
339 "is_query_report": True,
340 "doctype": "Sales Invoice"
341 },
342 ]
343 },
344 {
345 "label": _("Other Reports"),
346 "icon": "icon-table",
347 "items": [
348 {
349 "type": "report",
Nabin Haitcd0e8ce2016-04-09 16:06:28 +0530350 "name": "Asset Depreciation Ledger",
351 "doctype": "Asset",
352 "is_query_report": True,
353 },
354 {
355 "type": "report",
356 "name": "Asset Depreciations and Balances",
357 "doctype": "Asset",
358 "is_query_report": True,
359 },
360 {
361 "type": "report",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530362 "name": "Trial Balance for Party",
363 "doctype": "GL Entry",
364 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530365 },
366 {
367 "type": "report",
368 "name": "Payment Period Based On Invoice Date",
369 "is_query_report": True,
Nabin Hait23d2a532014-12-25 17:14:18 +0530370 "doctype": "Journal Entry"
Anand Doshi08ef4672014-05-08 11:43:18 +0530371 },
372 {
373 "type": "report",
374 "name": "Sales Partners Commission",
375 "is_query_report": True,
376 "doctype": "Sales Invoice"
377 },
378 {
379 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530380 "name": "Item-wise Sales Register",
381 "is_query_report": True,
382 "doctype": "Sales Invoice"
383 },
384 {
385 "type": "report",
386 "name": "Item-wise Purchase Register",
387 "is_query_report": True,
388 "doctype": "Purchase Invoice"
389 },
390 {
391 "type": "report",
Nabin Haite6370862014-10-30 15:50:03 +0530392 "name": "Accounts Receivable Summary",
393 "doctype": "Sales Invoice",
394 "is_query_report": True
395 },
396 {
397 "type": "report",
ankitjavalkarworke6e65b02014-11-04 14:36:50 +0530398 "name": "Accounts Payable Summary",
399 "doctype": "Purchase Invoice",
400 "is_query_report": True
401 },
402 {
403 "type": "report",
Nabin Haite6370862014-10-30 15:50:03 +0530404 "is_query_report": True,
405 "name": "Customer Credit Balance",
406 "doctype": "Customer"
407 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530408 ]
409 },
Rushabh Mehta67712402015-05-25 18:30:53 +0530410 {
411 "label": _("Help"),
412 "icon": "icon-facetime-video",
413 "items": [
414 {
415 "type": "help",
416 "label": _("Chart of Accounts"),
417 "youtube_id": "DyR-DST-PyA"
418 },
419 {
420 "type": "help",
421 "label": _("Opening Accounting Balance"),
422 "youtube_id": "kdgM20Q-q68"
423 },
424 {
425 "type": "help",
426 "label": _("Setting up Taxes"),
427 "youtube_id": "nQ1zZdPgdaQ"
428 }
429 ]
430 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530431 ]