forked from Mapan/odoo17e
77 lines
2.3 KiB
Python
77 lines
2.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': 'EDI for Mexico',
|
|
'countries': ['mx'],
|
|
'version': '0.3',
|
|
'category': 'Accounting/Localizations/EDI',
|
|
'summary': 'Mexican Localization for EDI documents',
|
|
'description': """
|
|
EDI Mexican Localization
|
|
========================
|
|
Allow the user to generate the EDI document for Mexican invoicing.
|
|
|
|
This module allows the creation of the EDI documents and the communication with the Mexican certification providers (PACs) to sign/cancel them.
|
|
""",
|
|
'depends': [
|
|
'account_accountant',
|
|
'l10n_mx',
|
|
'base_vat',
|
|
'product_unspsc'
|
|
],
|
|
'external_dependencies': {
|
|
'python': ['pyOpenSSL'],
|
|
},
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'security/l10n_mx_edi_certificate.xml',
|
|
|
|
'data/4.0/cfdi.xml',
|
|
'data/4.0/payment20.xml',
|
|
'data/l10n_mx_edi_payment_method_data.xml',
|
|
'data/ir_cron.xml',
|
|
'data/res_currency_data.xml',
|
|
'data/l10n_mx_uom_unspsc.xml',
|
|
|
|
'views/account_journal_view.xml',
|
|
'views/account_move_view.xml',
|
|
'views/account_payment_views.xml',
|
|
'views/account_payment_register_views.xml',
|
|
'views/account_tax_view.xml',
|
|
'views/ir_ui_view.xml',
|
|
'views/l10n_mx_edi_certificate_view.xml',
|
|
'views/l10n_mx_edi_payment_method_view.xml',
|
|
"views/report_invoice.xml",
|
|
"views/report_payment.xml",
|
|
'views/res_partner_view.xml',
|
|
'views/res_bank_view.xml',
|
|
'views/res_config_settings_view.xml',
|
|
'views/res_country_view.xml',
|
|
|
|
'wizard/account_move_send_views.xml',
|
|
'wizard/l10n_mx_edi_invoice_cancel.xml',
|
|
'wizard/l10n_mx_edi_global_invoice_create.xml',
|
|
|
|
'data/res_country_data.xml',
|
|
],
|
|
'demo': [
|
|
'demo/demo_cfdi.xml',
|
|
'demo/demo_addenda.xml',
|
|
],
|
|
'post_init_hook': 'post_init_hook',
|
|
'installable': True,
|
|
'auto_install': ['l10n_mx'],
|
|
'license': 'OEEL-1',
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'l10n_mx_edi/static/src/components/**/*',
|
|
],
|
|
'web.report_assets_pdf': [
|
|
'l10n_mx_edi/static/src/scss/**/*',
|
|
],
|
|
'web.report_assets_common': [
|
|
'l10n_mx_edi/static/src/scss/**/*',
|
|
],
|
|
}
|
|
}
|