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': 'Generic - Accounting',
|
2018-01-16 12:05:52 +01:00
|
|
|
'author' : 'Odoo S.A',
|
2018-01-16 06:58:15 +01:00
|
|
|
'version': '1.1',
|
|
|
|
'category': 'Localization',
|
|
|
|
'description': """
|
2018-01-16 11:34:37 +01:00
|
|
|
This is the base module to manage the generic accounting chart in Odoo, Flectra.
|
2018-01-16 10:04:24 +01:00
|
|
|
================================================================================
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
Install some generic chart of accounts.
|
|
|
|
""",
|
|
|
|
'depends': [
|
|
|
|
'account',
|
|
|
|
],
|
|
|
|
'data': [
|
|
|
|
'data/account_data.xml',
|
|
|
|
'data/l10n_generic_coa_chart_data.xml',
|
|
|
|
'data/account_chart_template_data.yml',
|
|
|
|
],
|
|
|
|
'test': [
|
|
|
|
'../account/test/account_bank_statement.yml',
|
|
|
|
'../account/test/account_invoice_state.yml',
|
|
|
|
],
|
|
|
|
'demo': [
|
|
|
|
'../account/demo/account_bank_statement.yml',
|
|
|
|
'../account/demo/account_invoice_demo.yml',
|
|
|
|
],
|
2018-01-16 11:34:37 +01:00
|
|
|
'website': 'https://flectrahq.com/page/accounting',
|
2018-01-16 06:58:15 +01:00
|
|
|
}
|