-
Notifications
You must be signed in to change notification settings - Fork 2
/
__manifest__.py
58 lines (57 loc) · 2.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Copyright 2020 Camptocamp SA (http://www.camptocamp.com)
# Copyright 2020 Akretion (http://www.akretion.com)
# Copyright 2020 BCIM
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Shopfloor",
"summary": "manage warehouse operations with barcode scanners",
"version": "13.0.4.13.1",
"development_status": "Alpha",
"category": "Inventory",
"website": "https://github.com/OCA/wms",
"author": "Camptocamp, BCIM, Akretion, Odoo Community Association (OCA)",
"maintainers": ["guewen", "simahawk", "sebalix"],
"license": "AGPL-3",
"application": True,
"depends": [
"shopfloor_base",
"stock",
"stock_picking_batch",
"base_jsonify",
"base_rest",
"base_sparse_field",
"auth_api_key",
# OCA / stock-logistics-warehouse
"stock_helper",
"stock_picking_completion_info",
"stock_quant_package_product_packaging",
# OCA / stock-logistics-workflow
"stock_quant_package_dimension",
# TODO: used for manuf info on prod detail.
# This must be an optional dep
"product_manufacturer",
# TODO: used for prod lot expire detail info.
# This must be an optional dep
"product_expiry",
# TODO: used for package.package_storage_type_id detail info.
# This must be an optional dep
"stock_storage_type",
# TODO: used for picking.carrier_id detail info
# and to validate packaging/carrier in checkout scenario
# This must be an optional dep
"delivery",
# OCA / product-attribute
"product_packaging_type",
# OCA / delivery
"stock_picking_delivery_link",
],
"data": [
"data/shopfloor_scenario_data.xml",
"security/groups.xml",
"views/shopfloor_menu.xml",
"views/stock_picking_type.xml",
"views/stock_location.xml",
"views/stock_move_line.xml",
],
"demo": ["demo/stock_picking_type_demo.xml", "demo/shopfloor_menu_demo.xml"],
}