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.

67 lines
2.4 KiB
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Accounting',
'version': '1.1',
'category': 'Accounting/Accounting',
'sequence': 30,
'summary': 'Manage financial and analytic accounting',
'description': """
Accounting Access Rights
========================
It gives the Administrator user access to all accounting features such as journal items and the chart of accounts.
It assigns manager and user access rights to the Administrator for the accounting application and only user rights to the Demo user.
""",
'website': 'https://www.odoo.com/app/accounting',
'depends': ['account', 'mail_enterprise', 'web_tour'],
'data': [
'data/account_accountant_data.xml',
'data/ir_cron.xml',
'data/digest_data.xml',
'security/ir.model.access.csv',
'security/account_accountant_security.xml',
'views/account_account_views.xml',
'views/account_fiscal_year_view.xml',
'views/account_journal_dashboard_views.xml',
'views/account_move_views.xml',
'views/account_payment_views.xml',
'views/account_reconcile_model_views.xml',
'views/account_accountant_menuitems.xml',
'views/digest_views.xml',
'views/res_config_settings_views.xml',
'views/product_views.xml',
'views/bank_rec_widget_views.xml',
'wizard/account_change_lock_date.xml',
'wizard/reconcile_model_wizard.xml',
],
'demo': ['data/account_accountant_demo.xml'],
'installable': True,
'application': True,
'post_init_hook': '_account_accountant_post_init',
'uninstall_hook': "uninstall_hook",
'license': 'OEEL-1',
'assets': {
'web.assets_backend': [
'account_accountant/static/src/js/tours/account_accountant.js',
'account_accountant/static/src/js/reconciliation/*.js',
'account_accountant/static/src/scss/account_reconciliation.scss',
'account_accountant/static/src/components/**/*',
'account_accountant/static/src/**/*.xml',
],
'web.dark_mode_assets_backend': [
'account_accountant/static/src/scss/*.dark.scss',
],
'web.assets_tests': [
'account_accountant/static/tests/tours/**/*',
],
'web.qunit_suite_tests': [
'account_accountant/static/tests/*.js',
'account_accountant/static/tests/helpers/*.js',
],
}
}