forked from OCA/edi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
45 lines (44 loc) · 1.43 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
# Copyright 2020 ACSONE
# Copyright 2021 Camptocamp
# @author: Simone Orsi <[email protected]>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
{
"name": "EDI",
"summary": """
Define backends, exchange types, exchange records,
basic automation and views for handling EDI exchanges.
""",
"version": "14.0.1.16.3",
"website": "https://github.com/OCA/edi",
"development_status": "Beta",
"license": "LGPL-3",
"author": "ACSONE,Creu Blanca,Camptocamp,Odoo Community Association (OCA)",
"maintainers": ["simahawk", "etobella"],
"depends": [
"base_edi",
"component_event",
"mail",
"base_sparse_field",
"queue_job",
],
"external_dependencies": {"python": ["pyyaml"]},
"data": [
"wizards/edi_exchange_record_create_wiz.xml",
"data/cron.xml",
"data/sequence.xml",
"data/job_channel.xml",
"data/job_function.xml",
"security/res_groups.xml",
"security/ir_model_access.xml",
"views/edi_backend_views.xml",
"views/edi_backend_type_views.xml",
"views/edi_exchange_record_views.xml",
"views/edi_exchange_type_views.xml",
"views/menuitems.xml",
"templates/exchange_chatter_msg.xml",
"templates/exchange_mixin_buttons.xml",
"templates/assets.xml",
],
"qweb": ["static/src/xml/widget_edi.xml"],
"demo": ["demo/edi_backend_demo.xml"],
}