forked from OCA/l10n-brazil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
55 lines (53 loc) · 1.48 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
# Copyright (C) 2019 Renato Lima - Akretion
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
{
"name": "NF-e",
"summary": "Brazilian Eletronic Invoice NF-e .",
"category": "Localisation",
"license": "AGPL-3",
"author": "Akretion," "KMEE," "Odoo Community Association (OCA)",
"website": "https://github.com/OCA/l10n-brazil",
"development_status": "Beta",
"version": "12.0.11.1.0",
"depends": [
"l10n_br_fiscal",
"l10n_br_nfe_spec",
"spec_driven_model",
],
"data": [
# Data
"data/ir_config_parameter.xml",
# Security
"security/nfe_security.xml",
# Views
"views/res_company_view.xml",
"views/nfe_document_view.xml",
"views/nfe_document_line_view.xml",
"views/res_config_settings_view.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",
"erpbrasil.base",
"erpbrasil.assinatura",
"erpbrasil.transmissao",
"erpbrasil.edoc",
"erpbrasil.edoc.pdf",
"xmldiff",
],
},
}