forked from OCA/edi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
37 lines (36 loc) · 1.06 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
# Copyright 2022 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "EDI Sales",
"summary": """
Configuration and special behaviors for EDI on sales.
""",
"version": "14.0.1.0.0",
"development_status": "Alpha",
"license": "AGPL-3",
"author": "Camptocamp,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/edi",
"depends": [
"sale_order_import_ubl",
"edi_sale_oca",
"edi_ubl_oca",
"edi_xml_oca",
"edi_exchange_template_oca",
"edi_exchange_template_party_data",
"edi_state_oca",
# This could be made optional
# but the delivery part would need another source of data
"sale_stock",
],
"data": [
"data/edi_state.xml",
"templates/qweb_tmpl_party.xml",
"templates/qweb_tmpl_order_response.xml",
"views/sale_order.xml",
],
"demo": [
"demo/edi_exchange_type.xml",
"demo/edi_configuration.xml",
"demo/exc_templ_order_response.xml",
],
}