Removed asset doctypes files from accounts module and patches

This commit is contained in:
Nabin Hait
2017-11-28 16:56:53 +05:30
97 changed files with 4486 additions and 198 deletions

View File

@@ -98,14 +98,6 @@ def get_data():
{
"type": "doctype",
"name": "Item",
},
{
"type": "doctype",
"name": "Asset",
},
{
"type": "doctype",
"name": "Asset Category",
}
]
},
@@ -274,11 +266,6 @@ def get_data():
"name": "Period Closing Voucher",
"description": _("Close Balance Sheet and book Profit or Loss.")
},
{
"type": "doctype",
"name": "Asset Movement",
"description": _("Transfer an asset from one warehouse to another")
},
{
"type": "doctype",
"name": "Cheque Print Template",

77
erpnext/config/assets.py Normal file
View File

@@ -0,0 +1,77 @@
from __future__ import unicode_literals
from frappe import _
def get_data():
return [
{
"label": _("Assets"),
"items": [
{
"type": "doctype",
"name": "Asset",
},
{
"type": "doctype",
"name": "Asset Category",
}
]
},
{
"label": _("Maintenance"),
"items": [
{
"type": "doctype",
"name": "Asset Maintenance Team",
},
{
"type": "doctype",
"name": "Asset Maintenance",
},
{
"type": "doctype",
"name": "Asset Maintenance Tasks",
},
{
"type": "doctype",
"name": "Asset Maintenance Log",
},
{
"type": "doctype",
"name": "Asset Repair",
},
]
},
{
"label": _("Tools"),
"items": [
{
"type": "doctype",
"name": "Asset Movement",
"description": _("Transfer an asset from one warehouse to another")
},
]
},
{
"label": _("Reports"),
"icon": "fa fa-table",
"items": [
{
"type": "report",
"name": "Asset Depreciation Ledger",
"doctype": "Asset",
"is_query_report": True,
},
{
"type": "report",
"name": "Asset Depreciations and Balances",
"doctype": "Asset",
"is_query_report": True,
},
{
"type": "report",
"name": "Asset Maintenance",
"doctype": "Asset Maintenance"
},
]
}
]

View File

@@ -293,5 +293,11 @@ def get_data():
"_doctype": "Restaurant",
"link": "List/Restaurant",
"label": _("Restaurant")
}
},
{
"module_name": "Assets",
"color": "#4286f4",
"icon": "octicon octicon-database",
"type": "module"
},
]