-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__manifest__.py
More file actions
54 lines (52 loc) · 2.05 KB
/
__manifest__.py
File metadata and controls
54 lines (52 loc) · 2.05 KB
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
# pylint: disable=pointless-statement
# Part of OpenSPP. See LICENSE file for full copyright and licensing details.
{
"name": "OpenSPP Base (Common)",
"category": "OpenSPP/Core",
"version": "19.0.2.0.0",
"sequence": 1,
"author": "OpenSPP.org",
"website": "https://github.com/OpenSPP/OpenSPP2",
"license": "LGPL-3",
"development_status": "Production/Stable",
"maintainers": ["jeremi", "gonzalesedwin1123", "emjay0921"],
"depends": [
"base",
# "theme_openspp_muk", # Removed for Odoo 19 Community Edition compatibility
"spp_user_roles",
"spp_hide_menus_base",
"spp_base_setting",
"spp_registry",
"spp_security",
],
"excludes": [],
"external_dependencies": {},
"data": [
"data/global_roles.xml",
"data/local_roles.xml",
"security/security_access.xml",
"security/ir.model.access.csv",
"views/main_view.xml",
"views/phone_validation_view.xml",
],
"assets": {
"web.assets_backend": [
"spp_base_common/static/src/scss/navbar.scss",
"spp_base_common/static/src/js/custom_list_create.js",
"spp_base_common/static/src/xml/custom_list_create_template.xml",
"spp_base_common/static/src/js/filterable_radio_field.js",
"spp_base_common/static/src/xml/filterable_radio_field.xml",
],
"web._assets_primary_variables": [
"spp_base_common/static/src/scss/colors.scss",
"spp_base_common/static/src/scss/colors_light.scss",
],
"web.assets_web_dark": ["spp_base_common/static/src/scss/colors_dark.scss"],
},
"demo": [],
"images": [],
"application": False,
"installable": True,
"auto_install": False,
"summary": "The OpenSPP base module that provides the main menu, generic configuration, user role management base module, area management base module, hiding of non-openspp menus. All implementation specific base modules depends on this module. (Odoo 19 Community Edition - uses default theme)",
}