-
-
Notifications
You must be signed in to change notification settings - Fork 246
/
__manifest__.py
65 lines (63 loc) · 1.86 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
54
55
56
57
58
59
60
61
62
63
64
65
# Copyright (C) 2019 Renato Lima - Akretion
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
{
"name": "NF-e",
"summary": "Eletronic Invoicing for Brazil / NF-e",
"category": "Localisation",
"license": "AGPL-3",
"author": "Akretion," "KMEE," "Odoo Community Association (OCA)",
"maintainers": ["rvalyi", "renatonlima"],
"website": "https://github.com/OCA/l10n-brazil",
"development_status": "Beta",
"version": "14.0.19.1.1",
"depends": [
"l10n_br_fiscal_edi",
"l10n_br_fiscal_certificate",
"l10n_br_nfe_spec",
"spec_driven_model",
"l10n_br_fiscal_dfe",
],
"data": [
# Data
"data/ir_config_parameter.xml",
# Security
"security/nfe_security.xml",
"security/ir.model.access.csv",
# Views
"views/res_company_view.xml",
"views/nfe_document_view.xml",
"views/res_config_settings_view.xml",
"views/mde/mde_views.xml",
"views/dfe/dfe_views.xml",
"views/supplier_info_view.xml",
# Report
"report/reports.xml",
"report/danfe_nfce.xml",
"report/danfe_report.xml",
# Wizards
"wizards/import_document.xml",
# Actions,
"views/nfe_action.xml",
# Menus
"views/nfe_menu.xml",
],
"demo": [
"demo/res_users_demo.xml",
"demo/fiscal_document_demo.xml",
"demo/company_demo.xml",
],
"post_init_hook": "post_init_hook",
"installable": True,
"auto_install": False,
"external_dependencies": {
"python": [
"nfelib<=2.0.7",
"erpbrasil.assinatura>=1.7.0",
"erpbrasil.transmissao>=1.1.0",
"erpbrasil.edoc>=2.5.2",
"erpbrasil.edoc.pdf",
"erpbrasil.base>=2.3.0",
"brazilfiscalreport",
],
},
}