forked from OCA/stock-logistics-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
26 lines (25 loc) · 910 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 2017 Camptocamp SA - Damien Crier, Alexandre Fayolle
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
# Copyright 2017 Serpent Consulting Services Pvt. Ltd.
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
"name": "Stock picking lines with sequence number",
"summary": "Manages the order of stock moves by displaying its sequence",
"version": "16.0.1.0.1",
"category": "Warehouse Management",
"author": "Camptocamp, "
"Eficent, "
"Serpent CS, "
"Odoo Community Association (OCA), "
"ArcheTI",
"website": "https://github.com/OCA/stock-logistics-workflow",
"depends": ["stock", "sale", "sale_stock"],
"data": [
"views/stock_view.xml",
"report/report_deliveryslip.xml",
],
"post_init_hook": "post_init_hook",
"installable": True,
"auto_install": False,
"license": "AGPL-3",
}