Odoo18-Base/addons/l10n_din5008/__manifest__.py
2025-01-06 10:57:38 +07:00

25 lines
703 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'DIN 5008',
'version': '1.0',
'category': 'Accounting/Localizations',
'description': "This is the base module that defines the DIN 5008 standard in Odoo.",
'depends': ['account'],
'auto_install': True,
'countries': ['de', 'ch'],
'data': [
'report/din5008_base_document_layout.xml',
'report/din5008_report.xml',
'report/din5008_account_move_layout.xml',
'data/report_layout.xml',
],
'assets': {
'web.report_assets_common': [
'l10n_din5008/static/src/**/*',
],
},
'license': 'LGPL-3',
}