-
-
Notifications
You must be signed in to change notification settings - Fork 195
/
Copy path__manifest__.py
41 lines (40 loc) · 1.27 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 2020 Camptocamp SA (http://www.camptocamp.com)
# Copyright 2020 Akretion (http://www.akretion.com)
# Copyright 2020 BCIM
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
{
"name": "Shopfloor Base",
"summary": "Core module for creating mobile apps",
"version": "16.0.1.1.0",
"development_status": "Beta",
"category": "Inventory",
"website": "https://github.com/OCA/wms",
"author": "Camptocamp, BCIM, Akretion, Odoo Community Association (OCA)",
"maintainers": ["guewen", "simahawk", "sebalix"],
"license": "LGPL-3",
"application": True,
"depends": [
"jsonifier",
"base_rest",
"component",
"base_sparse_field",
"endpoint_route_handler",
],
"data": [
"data/module_category_data.xml",
"data/server_action.xml",
"security/groups.xml",
"security/ir.model.access.csv",
"views/shopfloor_app.xml",
"views/shopfloor_menu.xml",
"views/shopfloor_scenario_views.xml",
"views/shopfloor_profile_views.xml",
"views/menus.xml",
],
"demo": [
"demo/res_users_demo.xml",
"demo/shopfloor_scenario_demo.xml",
"demo/shopfloor_menu_demo.xml",
"demo/shopfloor_profile_demo.xml",
],
}