forked from Mapan/odoo17e
23 lines
550 B
Python
23 lines
550 B
Python
# -*- encoding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Kenya - Accounting Reports',
|
|
'countries': ['ke'],
|
|
'version': '1.0',
|
|
'description': """
|
|
Accounting reports for Kenya
|
|
============================
|
|
|
|
""",
|
|
'category': 'Accounting/Localizations/Reporting',
|
|
'depends': ['l10n_ke', 'account_reports'],
|
|
'data': [
|
|
'data/balance_sheet.xml',
|
|
'data/profit_loss.xml',
|
|
],
|
|
'auto_install': True,
|
|
'installable': True,
|
|
'license': 'OEEL-1',
|
|
}
|