blob: 73c1aee87a4065e25f7ce98b9051da5e0e5295d9 [file] [log] [blame]
Kanchan Chauhane58a41a2017-10-17 15:17:24 +05301from __future__ import unicode_literals
2from frappe import _
3
4def get_data():
5 return [
6 {
7 "label": _("Assets"),
8 "items": [
9 {
10 "type": "doctype",
11 "name": "Asset",
12 },
13 {
14 "type": "doctype",
15 "name": "Asset Category",
Charles-Henri Decultot34e335b2018-01-05 17:49:06 +000016 },
17 {
18 "type": "doctype",
19 "name": "Asset Settings",
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053020 }
21 ]
22 },
23 {
24 "label": _("Maintenance"),
25 "items": [
26 {
27 "type": "doctype",
28 "name": "Asset Maintenance Team",
29 },
30 {
31 "type": "doctype",
32 "name": "Asset Maintenance",
33 },
34 {
35 "type": "doctype",
36 "name": "Asset Maintenance Tasks",
37 },
38 {
39 "type": "doctype",
40 "name": "Asset Maintenance Log",
41 },
42 {
43 "type": "doctype",
44 "name": "Asset Repair",
45 },
46 ]
47 },
48 {
49 "label": _("Tools"),
50 "items": [
51 {
52 "type": "doctype",
53 "name": "Asset Movement",
54 "description": _("Transfer an asset from one warehouse to another")
55 },
56 ]
57 },
58 {
59 "label": _("Reports"),
60 "icon": "fa fa-table",
61 "items": [
62 {
63 "type": "report",
64 "name": "Asset Depreciation Ledger",
65 "doctype": "Asset",
66 "is_query_report": True,
67 },
68 {
69 "type": "report",
70 "name": "Asset Depreciations and Balances",
71 "doctype": "Asset",
72 "is_query_report": True,
73 },
74 {
75 "type": "report",
76 "name": "Asset Maintenance",
77 "doctype": "Asset Maintenance"
78 },
79 ]
80 }
Charles-Henri Decultot34e335b2018-01-05 17:49:06 +000081 ]