-
-
Notifications
You must be signed in to change notification settings - Fork 310
/
__manifest__.py
28 lines (27 loc) · 950 Bytes
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright 2016-2020 Akretion France (http://www.akretion.com/)
# @author: Alexis de Lattre <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Account Invoice Factur-X",
"version": "14.0.1.1.3",
"category": "Invoicing Management",
"license": "AGPL-3",
"summary": "Generate Factur-X/ZUGFeRD customer invoices",
"author": "Akretion,Odoo Community Association (OCA)",
"maintainers": ["alexis-via"],
"website": "https://github.com/OCA/edi",
"depends": [
"account_einvoice_generate",
"account_payment_partner",
"base_facturx",
"base_vat",
],
"external_dependencies": {"python": ["factur-x<=3.1"]},
"data": [
"views/res_partner.xml",
"views/res_config_settings.xml",
"views/report_invoice.xml",
],
"post_init_hook": "set_xml_format_in_pdf_invoice_to_facturx",
"installable": True,
}