2025-01-06 10:57:38 +07:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
{
|
2025-03-04 12:23:19 +07:00
|
|
|
'name': "Egypt E-Invoicing",
|
|
|
|
'summary': """
|
|
|
|
Egypt Tax Authority Invoice Integration
|
|
|
|
""",
|
2025-01-06 10:57:38 +07:00
|
|
|
'description': """
|
2025-03-04 12:23:19 +07:00
|
|
|
Egypt Tax Authority Invoice Integration
|
|
|
|
==============================================================================
|
|
|
|
Integrates with the ETA portal to automatically send and sign the Invoices to the Tax Authority.
|
2025-01-06 10:57:38 +07:00
|
|
|
""",
|
2025-03-04 12:23:19 +07:00
|
|
|
'author': 'Odoo S.A., Plementus',
|
2025-01-06 10:57:38 +07:00
|
|
|
'category': 'account',
|
|
|
|
'version': '0.2',
|
|
|
|
'license': 'LGPL-3',
|
|
|
|
'depends': ['account_edi', 'l10n_eg'],
|
2025-03-04 12:23:19 +07:00
|
|
|
'icon': '/account/static/description/l10n.png',
|
|
|
|
'countries': ['eg'],
|
2025-01-06 10:57:38 +07:00
|
|
|
'data': [
|
|
|
|
'data/account_edi_data.xml',
|
|
|
|
'data/l10n_eg_edi.activity.type.csv',
|
|
|
|
'data/l10n_eg_edi.uom.code.csv',
|
|
|
|
'data/uom.uom.csv',
|
|
|
|
'security/ir.model.access.csv',
|
|
|
|
'security/eta_thumb_drive_security.xml',
|
|
|
|
'views/uom_uom_view.xml',
|
|
|
|
'views/account_move_view.xml',
|
|
|
|
'views/account_journal_view.xml',
|
|
|
|
'views/eta_thumb_drive.xml',
|
|
|
|
'views/product_template_views.xml',
|
|
|
|
'views/res_config_settings_view.xml',
|
|
|
|
'views/report_invoice.xml',
|
|
|
|
'data/res_country_data.xml',
|
|
|
|
],
|
|
|
|
'assets': {
|
|
|
|
'web.assets_backend': [
|
|
|
|
'l10n_eg_edi_eta/static/src/**/*.js',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
'external_dependencies': {
|
|
|
|
'python': ['asn1crypto'],
|
|
|
|
},
|
|
|
|
}
|