42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "Слои показателей - Базовый модуль",
|
|
|
|
'summary': """
|
|
Базовые компоненты реализации слоев показателей""",
|
|
|
|
'description': """
|
|
Базовые компоненты реализации слоев показателей
|
|
""",
|
|
|
|
'author': "MK.Lab",
|
|
'website': "https://www.inf-centre.ru",
|
|
|
|
# Categories can be used to filter modules in modules listing
|
|
# Check https://github.com/odoo/odoo/blob/16.0/odoo/addons/base/data/ir_module_category_data.xml
|
|
# for the full list
|
|
'category': 'Uncategorized',
|
|
'version': '19.0.2025.11.17',
|
|
|
|
# any module necessary for this one to work correctly
|
|
'depends': ['base'],
|
|
|
|
# always loaded
|
|
'data': [
|
|
'security/res_groups.xml',
|
|
'security/ir.model.access.csv',
|
|
'views/views.xml',
|
|
],
|
|
'demo': [
|
|
'demo/demo.xml',
|
|
],
|
|
'test': [
|
|
'tests/test_hg_index_code.py',
|
|
'tests/test_hg_node.py',
|
|
'tests/test_hg_index.py',
|
|
'tests/test_hg_value.py',
|
|
'tests/test_hg_link.py',
|
|
'tests/test_hg_mixin.py',
|
|
],
|
|
}
|