-
-
Notifications
You must be signed in to change notification settings - Fork 192
/
__manifest__.py
30 lines (29 loc) · 966 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
# Copyright 2021 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Stock Picking Batch Creation",
"summary": """
Create a batch of pickings to be processed all together""",
"version": "16.0.1.0.0",
"license": "AGPL-3",
"author": "ACSONE SA/NV,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/wms",
"category": "Warehouse Management",
"application": False,
"installable": True,
"depends": [
"delivery", # weight on picking
"stock_picking_batch",
"stock_picking_volume", # OCA/stock-logistics-warehouse
],
"data": [
"views/stock_device_type.xml",
"views/stock_picking_batch.xml",
"views/stock_picking.xml",
"wizards/make_picking_batch.xml",
"security/ir.model.access.csv",
],
"development_status": "Beta",
"maintainers": ["lmignon"],
"pre_init_hook": "pre_init_hook",
}