-
-
Notifications
You must be signed in to change notification settings - Fork 521
/
__manifest__.py
52 lines (51 loc) · 1.63 KB
/
__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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Copyright 2009 Alejandro Sanchez <[email protected]>
# Copyright 2015 Ismael Calvo <[email protected]>
# Copyright 2015 Tecon
# Copyright 2015 Omar Castiñeira (Comunitea)
# Copyright 2016-2020 Tecnativa - Pedro M. Baeza
# Copyright 2022 Moduon - Eduardo de Miguel
# Copyright 2022 NuoBiT - Eric Antones
# Copyright 2024 Tecnativa - Carolina Fernandez
# Copyright 2017-2023 CreuBlanca
# Copyright 2024 Dixmit
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
"name": "Creación de Facturae",
"version": "17.0.1.1.0",
"author": "ASR-OSS, "
"FactorLibre, "
"Tecon, "
"Comunitea, "
"Tecnativa, "
"Creu Blanca, "
"Odoo Community Association (OCA)",
"category": "Accounting & Finance",
"website": "https://github.com/OCA/l10n-spain",
"license": "AGPL-3",
"depends": [
"account_payment_partner",
"l10n_es_partner",
"l10n_es",
"base_iso3166",
"base_vat",
"report_xml",
"report_qweb_parameter",
"l10n_es_aeat",
],
"data": [
"security/ir.model.access.csv",
"views/res_partner_view.xml",
"views/res_company.xml",
"views/payment_mode_view.xml",
"views/account_tax_view.xml",
"views/report_facturae.xml",
"wizard/create_facturae_view.xml",
"wizard/account_move_reversal_view.xml",
"views/account_move_view.xml",
"views/account_journal_view.xml",
],
"external_dependencies": {"python": ["pycountry", "xmlsig", "cryptography==3.4.8"]},
"post_init_hook": "post_init_hook",
"installable": True,
"maintainers": ["etobella"],
}