forked from OCA/stock-logistics-warehouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
41 lines (41 loc) · 1.45 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
# Copyright 2019 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Vertical Lift",
"summary": "Provides the core for integration with Vertical Lifts",
"version": "14.0.1.1.2",
"category": "Stock",
"author": "Camptocamp, Odoo Community Association (OCA)",
"license": "AGPL-3",
"depends": [
"stock",
"barcodes",
"base_sparse_field",
"stock_location_tray", # OCA/stock-logistics-warehouse
"web_notify", # OCA/web
"web_ir_actions_act_view_reload", # OCA/web
],
"website": "https://github.com/OCA/stock-logistics-warehouse",
"demo": [
"demo/stock_location_demo.xml",
"demo/vertical_lift_shuttle_demo.xml",
"demo/product_demo.xml",
"demo/stock_inventory_demo.xml",
"demo/stock_picking_demo.xml",
],
"data": [
"views/stock_location_views.xml",
"views/stock_move_line_views.xml",
"views/vertical_lift_shuttle_views.xml",
"views/vertical_lift_operation_base_views.xml",
"views/vertical_lift_operation_pick_views.xml",
"views/vertical_lift_operation_put_views.xml",
"views/vertical_lift_operation_inventory_views.xml",
"views/stock_vertical_lift_templates.xml",
"views/shuttle_screen_templates.xml",
"security/ir.model.access.csv",
"data/ir_sequence.xml",
],
"installable": True,
"development_status": "Alpha",
}