-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path__manifest__.py
32 lines (32 loc) · 1.03 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
# Copyright (C) 2022-Today: GRAP (http://www.grap.coop)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Joint Buying - Sale",
"version": "12.0.1.1.14",
"category": "GRAP - Logistics",
"author": "GRAP",
"website": "https://github.com/grap/odoo-addons-logistics",
"license": "AGPL-3",
"depends": [
"sale",
# OCA
"sale_order_weight",
# GRAP
"joint_buying_product",
],
"data": [
"wizards/view_joint_buying_create_sale_order_wizard.xml",
"wizards/view_joint_buying_create_transport_request_wizard.xml",
"views/view_joint_buying_purchase_order.xml",
"views/view_joint_buying_purchase_order_grouped.xml",
"views/view_joint_buying_transport_request.xml",
"views/view_sale_order.xml",
],
"demo": [
"demo/sale_order.xml",
"demo/joint_buying_transport_request.xml",
],
"installable": True,
"auto_install": True,
}