2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
'name': 'Assets Management',
|
2018-01-16 12:05:52 +01:00
|
|
|
'author': 'Odoo S.A',
|
2018-01-16 06:58:15 +01:00
|
|
|
'depends': ['account'],
|
|
|
|
'description': """
|
|
|
|
Assets management
|
|
|
|
=================
|
|
|
|
Manage assets owned by a company or a person.
|
|
|
|
Keeps track of depreciations, and creates corresponding journal entries.
|
|
|
|
|
|
|
|
""",
|
2018-01-16 11:34:37 +01:00
|
|
|
'website': 'https://flectrahq.com/page/accounting',
|
2018-01-16 06:58:15 +01:00
|
|
|
'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',
|
|
|
|
'views/res_config_settings_views.xml',
|
|
|
|
'report/account_asset_report_views.xml',
|
|
|
|
'data/account_asset_data.xml',
|
|
|
|
],
|
|
|
|
'qweb': [
|
|
|
|
"static/src/xml/account_asset_template.xml",
|
|
|
|
],
|
|
|
|
}
|