36 lines
1.0 KiB
Python
36 lines
1.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Assets Management',
|
|
'depends': ['account_accountant'],
|
|
'description': """
|
|
Assets management
|
|
=================
|
|
Manage assets owned by a company or a person.
|
|
Keeps track of depreciations, and creates corresponding journal entries.
|
|
|
|
""",
|
|
'website': 'https://www.odoo.com/page/accounting',
|
|
'category': 'Accounting',
|
|
'sequence': 32,
|
|
'demo': [
|
|
'data/account_asset_demo.yml',
|
|
],
|
|
'data': [
|
|
'security/account_asset_security.xml',
|
|
'security/ir.model.access.csv',
|
|
'wizard/asset_depreciation_confirmation_wizard_views.xml',
|
|
'wizard/asset_modify_views.xml',
|
|
'views/account_asset_views.xml',
|
|
'views/account_invoice_views.xml',
|
|
'views/account_asset_templates.xml',
|
|
'views/product_views.xml',
|
|
'report/account_asset_report_views.xml',
|
|
'data/account_asset_data.xml',
|
|
],
|
|
'qweb': [
|
|
"static/src/xml/account_asset_template.xml",
|
|
],
|
|
}
|