1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/l10n_pe_edi/__manifest__.py
2024-12-10 09:04:09 +07:00

61 lines
1.9 KiB
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'EDI for Peru',
'countries': ['pe'],
'version': '0.1',
'summary': 'Electronic Invoicing for Peru (OSE method) and UBL 2.1',
'category': 'Accounting/Localizations/EDI',
'author': 'Vauxoo',
'license': 'OEEL-1',
'description': """
EDI Peru Localization
======================
Allow the user to generate the EDI document for Peruvian invoicing.
By default, the system uses the IAP proxy. This has the advantage that you
can use the system immediately the moment you choose Digiflow as your OSE
in the SUNAT portal.
You can also directly send it to Digiflow if you bought an account from them
and even to SUNAT in case of contingency.
We support sending and cancelling of customer invoices.
""",
'depends': [
'iap',
'l10n_pe',
'product_unspsc',
'account_edi',
'account_edi_ubl_cii',
],
'auto_install': ['l10n_pe'],
"data": [
'security/ir.model.access.csv',
'data/ubl_pe_21_templates.xml',
'data/uom_data.xml',
'data/ir_sequence_data.xml',
'wizards/account_invoice_refund_views.xml',
'wizards/account_debit_note_views.xml',
'wizards/account_cancel_wizard_views.xml',
'views/res_company_views.xml',
'views/uom_uom_views.xml',
'views/account_move_views.xml',
'views/account_tax_views.xml',
'views/l10n_pe_edi_certificate_views.xml',
'views/res_config_settings_views.xml',
'views/report_invoice.xml',
'views/account_menuitem.xml',
'views/product_views.xml',
'data/account_edi_data.xml',
],
'demo': [
'demo/l10n_pe_edi_demo.xml',
'demo/product_product_demo.xml',
],
'external_dependencies': {
'python': ['pyOpenSSL']
},
'post_init_hook': 'post_init_hook',
'installable': True,
}