Odoo18-Base/addons/account_peppol/__manifest__.py
2025-03-10 10:52:11 +07:00

37 lines
1.0 KiB
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': "Peppol",
'summary': "This module is used to send/receive documents with PEPPOL",
'description': """
- Register as a PEPPOL participant
- Send and receive documents via PEPPOL network in Peppol BIS Billing 3.0 format
""",
'category': 'Accounting/Accounting',
'version': '1.0',
'depends': [
'account_edi_proxy_client',
'account_edi_ubl_cii',
],
'data': [
'data/cron.xml',
'data/mail_templates_email_layouts.xml',
'views/account_journal_dashboard_views.xml',
'views/account_move_views.xml',
'views/res_partner_views.xml',
'views/res_config_settings_views.xml',
'wizard/account_move_send_views.xml',
],
'demo': [
'demo/account_peppol_demo.xml',
],
'license': 'LGPL-3',
'assets': {
'web.assets_backend': [
'account_peppol/static/src/components/**/*',
],
},
'pre_init_hook': 'pre_init_hook',
}