forked from Mapan/odoo17e
25 lines
630 B
Python
25 lines
630 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Zambia - Accounting Reports',
|
|
'countries': ['zm'],
|
|
'version': '1.0',
|
|
'category': 'Accounting/Localizations/Reporting',
|
|
'description': """
|
|
Accounting reports for Zambia
|
|
================================
|
|
- Financial Reports (Balance Sheet & Profit and Loss & Tax Report)
|
|
""",
|
|
'depends': [
|
|
'l10n_zm_account',
|
|
'account_reports'
|
|
],
|
|
'data': [
|
|
'data/profit_loss.xml',
|
|
'data/balance_sheet.xml',
|
|
],
|
|
'auto_install': True,
|
|
'installable': True,
|
|
'license': 'OEEL-1',
|
|
}
|