forked from OCA/wms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
26 lines (26 loc) · 879 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
26
# Copyright 2020 Camptocamp SA
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl)
{
"name": "Delivery Carrier Preference",
"summary": "Advanced selection of preferred shipping methods",
"version": "14.0.1.0.0",
"category": "Operations/Inventory/Delivery",
"website": "https://github.com/OCA/wms",
"author": "Camptocamp, Odoo Community Association (OCA)",
"license": "AGPL-3",
"application": False,
"installable": True,
"depends": [
"delivery",
"product_total_weight_from_packaging",
"stock_available_to_promise_release",
"stock_picking_group_by_partner_by_carrier",
],
"data": [
"security/ir.model.access.csv",
"views/delivery_carrier_preference.xml",
"views/stock_move.xml",
"views/stock_picking.xml",
"views/stock_location_route.xml",
],
}