You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.1 KiB
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Assets Management',
'description': """
Assets management
=================
Manage assets owned by a company or a person.
Keeps track of depreciations, and creates corresponding journal entries.
""",
'category': 'Accounting/Accounting',
'sequence': 32,
'depends': ['account_reports'],
'data': [
'security/account_asset_security.xml',
'security/ir.model.access.csv',
'wizard/asset_modify_views.xml',
'views/account_account_views.xml',
'views/account_asset_views.xml',
'views/account_deferred_revenue.xml',
'views/account_deferred_expense.xml',
'views/account_move_views.xml',
'data/asset_report.xml',
'data/account_report_actions.xml',
'data/menuitems.xml',
],
'demo': [
'demo/account_deferred_revenue_demo.xml',
],
'license': 'OEEL-1',
'auto_install': True,
'assets': {
'web.assets_backend': [
'account_asset/static/src/**/*',
],
}
}