-
-
Notifications
You must be signed in to change notification settings - Fork 521
/
__manifest__.py
53 lines (52 loc) · 2.04 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
53
# Copyright 2004-2011 Luis Manuel Angueira Blanco - Pexego
# Copyright 2013-2019 Ignacio Ibeas - Acysos S.L. (http://acysos.com)
# Copyright 2015 Ainara Galdona <agaldona@avanzosc.com>
# Copyright 2016 Antonio Espinosa <antonio.espinosa@tecnativa.com>
# Copyright 2018 Juan Vicente Pascual <jvpascual@puntsistemes.es>
# Copyright 2019 Tecnativa - Carlos Dauden
# Copyright 2022 Moduon - Eduardo de Miguel
# Copyright 2024 David Ramia
# Copyright 2013-2024 Tecnativa - Pedro M. Baeza
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl
{
"name": "AEAT Base",
"summary": "Modulo base para declaraciones de la AEAT",
"version": "17.0.2.0.2",
"author": "Pexego, "
"Acysos S.L., "
"AvanzOSC, "
"Tecnativa, "
"Odoo Community Association (OCA)",
"license": "AGPL-3",
"website": "https://github.com/OCA/l10n-spain",
"category": "Accounting & Finance",
"development_status": "Mature",
"depends": ["l10n_es", "account_tax_balance"],
# odoo_test_helper is needed for the tests
"external_dependencies": {"python": ["unidecode", "cryptography"]},
"data": [
"security/aeat_security.xml",
"security/ir.model.access.csv",
"data/aeat_partner.xml",
"data/ir_config_parameter.xml",
"data/aeat_tax_agency_data.xml",
"wizard/export_to_boe_wizard.xml",
"wizard/compare_boe_file_views.xml",
"wizard/aeat_certificate_password_view.xml",
"views/aeat_menuitem.xml", # it should be before the other views
"views/aeat_map_tax_views.xml",
"views/aeat_report_view.xml",
"views/aeat_tax_agency_view.xml",
"views/aeat_tax_line_view.xml",
"views/aeat_export_configuration_view.xml",
"views/account_move_line_view.xml",
"views/res_company_view.xml",
"views/res_partner_view.xml",
"views/aeat_certificate_view.xml",
"views/account_journal_view.xml",
"views/account_move_view.xml",
],
"installable": True,
"maintainers": ["pedrobaeza"],
"pre_init_hook": "pre_init_hook",
}