blob: 4cf7cf080672b036228824fd095bb56e9a31ec59 [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",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053026 "name": "Asset Movement",
27 "description": _("Transfer an asset from one warehouse to another")
28 },
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053029 ]
30 },
31 {
32 "label": _("Maintenance"),
33 "items": [
34 {
35 "type": "doctype",
36 "name": "Asset Maintenance Team",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053037 "onboard": 1,
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053038 },
39 {
40 "type": "doctype",
41 "name": "Asset Maintenance",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053042 "onboard": 1,
43 "dependencies": ["Asset Maintenance Team"],
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053044 },
45 {
46 "type": "doctype",
47 "name": "Asset Maintenance Tasks",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053048 "onboard": 1,
49 "dependencies": ["Asset Maintenance"],
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053050 },
51 {
52 "type": "doctype",
53 "name": "Asset Maintenance Log",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053054 "dependencies": ["Asset Maintenance"],
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053055 },
56 {
57 "type": "doctype",
rohitwaghchauree647c1f2018-06-15 13:06:28 +053058 "name": "Asset Value Adjustment",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053059 "dependencies": ["Asset"],
Rohit Waghchaure16bc8532018-05-12 12:06:00 +053060 },
61 {
62 "type": "doctype",
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053063 "name": "Asset Repair",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053064 "dependencies": ["Asset"],
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053065 },
66 ]
67 },
68 {
69 "label": _("Reports"),
70 "icon": "fa fa-table",
71 "items": [
72 {
73 "type": "report",
74 "name": "Asset Depreciation Ledger",
75 "doctype": "Asset",
76 "is_query_report": True,
Prateeksha Singh063af4e2019-02-06 17:02:41 +053077 "dependencies": ["Asset"],
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053078 },
79 {
80 "type": "report",
81 "name": "Asset Depreciations and Balances",
82 "doctype": "Asset",
83 "is_query_report": True,
Prateeksha Singh063af4e2019-02-06 17:02:41 +053084 "dependencies": ["Asset"],
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053085 },
86 {
87 "type": "report",
88 "name": "Asset Maintenance",
Prateeksha Singh063af4e2019-02-06 17:02:41 +053089 "doctype": "Asset Maintenance",
90 "dependencies": ["Asset Maintenance"]
Kanchan Chauhane58a41a2017-10-17 15:17:24 +053091 },
92 ]
93 }
Charles-Henri Decultot34e335b2018-01-05 17:49:06 +000094 ]