-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
25 lines (24 loc) · 889 Bytes
/
__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
# © 2016-2017 Akretion (Alexis de Lattre <[email protected]>)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Sale Order Import",
"version": "14.0.1.5.0",
"category": "Sales Management",
"license": "AGPL-3",
"summary": "Import RFQ or sale orders from files",
"author": "Akretion, Camptocamp, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/edi",
"depends": [
# OCA/sale-workflow
"sale_commercial_partner",
# OCA/edi
"base_business_document_import",
# OCA/server-tools
"onchange_helper",
# TODO: this dependency should be removed
# and support for PDF import should be moved to a glue module
"pdf_helper",
],
"data": ["security/ir.model.access.csv", "wizard/sale_order_import_view.xml"],
"installable": True,
}