blob: 3c9452f5a4f722d828fa8877080113b18688d695 [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",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053012 "onboard": 1,
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053013 },
14 {
15 "type": "doctype",
Rohit Waghchaureaa7b4342018-05-11 01:56:05 +053016 "name": "Location",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053017 "onboard": 1,
Charles-Henri Decultot34e335b2018-01-05 17:49:06 +000018 },
19 {
20 "type": "doctype",
Rohit Waghchaureaa7b4342018-05-11 01:56:05 +053021 "name": "Asset Category",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053022 "onboard": 1,
Rohit Waghchaurec6deb132018-05-07 15:58:41 +053023 },
24 {
25 "type": "doctype",
Charles-Henri Decultot34e335b2018-01-05 17:49:06 +000026 "name": "Asset Settings",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053027 },
28 {
29 "type": "doctype",
30 "name": "Asset Movement",
31 "description": _("Transfer an asset from one warehouse to another")
32 },
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053033 ]
34 },
35 {
36 "label": _("Maintenance"),
37 "items": [
38 {
39 "type": "doctype",
40 "name": "Asset Maintenance Team",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053041 "onboard": 1,
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053042 },
43 {
44 "type": "doctype",
45 "name": "Asset Maintenance",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053046 "onboard": 1,
47 "dependencies": ["Asset Maintenance Team"],
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053048 },
49 {
50 "type": "doctype",
51 "name": "Asset Maintenance Tasks",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053052 "onboard": 1,
53 "dependencies": ["Asset Maintenance"],
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053054 },
55 {
56 "type": "doctype",
57 "name": "Asset Maintenance Log",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053058 "dependencies": ["Asset Maintenance"],
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053059 },
60 {
61 "type": "doctype",
rohitwaghchauree647c1f2018-06-15 13:06:28 +053062 "name": "Asset Value Adjustment",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053063 "dependencies": ["Asset"],
Rohit Waghchaure16bc8532018-05-12 12:06:00 +053064 },
65 {
66 "type": "doctype",
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053067 "name": "Asset Repair",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053068 "dependencies": ["Asset"],
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053069 },
70 ]
71 },
72 {
73 "label": _("Reports"),
74 "icon": "fa fa-table",
75 "items": [
76 {
77 "type": "report",
78 "name": "Asset Depreciation Ledger",
79 "doctype": "Asset",
80 "is_query_report": True,
Prateeksha Singh063af4e2019-02-06 17:02:41 +053081 "dependencies": ["Asset"],
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053082 },
83 {
84 "type": "report",
85 "name": "Asset Depreciations and Balances",
86 "doctype": "Asset",
87 "is_query_report": True,
Prateeksha Singh063af4e2019-02-06 17:02:41 +053088 "dependencies": ["Asset"],
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053089 },
90 {
91 "type": "report",
92 "name": "Asset Maintenance",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053093 "doctype": "Asset Maintenance",
94 "dependencies": ["Asset Maintenance"]
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053095 },
96 ]
97 }
Charles-Henri Decultot34e335b2018-01-05 17:49:06 +000098 ]