forked from OCA/stock-logistics-warehouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
30 lines (29 loc) · 950 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
27
28
29
30
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Stock Reservation Rules",
"summary": "Configure reservation rules by location",
"version": "14.0.1.3.0",
"author": "Camptocamp, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/stock-logistics-warehouse",
"category": "Stock Management",
"depends": [
"stock",
"stock_helper",
"product_packaging_type", # OCA/product-attribute
],
"demo": [
"demo/product_demo.xml",
"demo/stock_location_demo.xml",
"demo/stock_reserve_rule_demo.xml",
"demo/stock_inventory_demo.xml",
"demo/stock_picking_demo.xml",
],
"data": [
"views/stock_reserve_rule_views.xml",
"security/ir.model.access.csv",
"security/stock_reserve_rule_security.xml",
],
"installable": True,
"development_status": "Beta",
"license": "AGPL-3",
}