flectra/addons/l10n_generic_coa/__manifest__.py
flectra-admin 769eafb483 [INIT] Inception of Flectra from Odoo
Flectra is Forked from Odoo v11 commit : (6135e82d73)
2018-01-16 11:45:59 +05:30

32 lines
921 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Generic - Accounting',
'version': '1.1',
'category': 'Localization',
'description': """
This is the base module to manage the generic accounting chart in Odoo.
==============================================================================
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',
],
'website': 'https://www.odoo.com/page/accounting',
}