53 lines
1.7 KiB
Python
53 lines
1.7 KiB
Python
|
|
{
|
||
|
|
'name': "project_dashboard_advanced",
|
||
|
|
|
||
|
|
'summary': "Short (1 phrase/line) summary of the module's purpose",
|
||
|
|
|
||
|
|
'description': """
|
||
|
|
Project Dashboard Advanced Odoo app provides a comprehensive and visually rich dashboard
|
||
|
|
for analyzing projects and tasks efficiently. It includes KPI counter cards displaying
|
||
|
|
key metrics such as total projects, active tasks, overdue tasks, today's tasks, and
|
||
|
|
personal task assignments.
|
||
|
|
""",
|
||
|
|
|
||
|
|
'author': "My Company",
|
||
|
|
'website': "https://www.yourcompany.com",
|
||
|
|
|
||
|
|
# Categories can be used to filter modules in modules listing
|
||
|
|
# Check https://github.com/odoo/odoo/blob/15.0/odoo/addons/base/data/ir_module_category_data.xml
|
||
|
|
# for the full list
|
||
|
|
'category': 'Uncategorized',
|
||
|
|
'version': '0.1',
|
||
|
|
'license': 'LGPL-3',
|
||
|
|
# any module necessary for this one to work correctly
|
||
|
|
'depends': ['project',
|
||
|
|
'hr_timesheet',
|
||
|
|
'mail',],
|
||
|
|
|
||
|
|
# always loaded
|
||
|
|
'data': [
|
||
|
|
'security/ir.model.access.csv',
|
||
|
|
'security/ir.model.access.csv',
|
||
|
|
'security/dashboard_security.xml',
|
||
|
|
'views/report_templates.xml',
|
||
|
|
'views/menu_view.xml',
|
||
|
|
],
|
||
|
|
# only loaded in demonstration mode
|
||
|
|
'demo': [
|
||
|
|
'demo/demo.xml',
|
||
|
|
],
|
||
|
|
'assets': {
|
||
|
|
'web.assets_backend': [
|
||
|
|
'project_dashboard_advanced/static/lib/chartjs/Chart.js',
|
||
|
|
'project_dashboard_advanced/static/src/css/dashboard.css',
|
||
|
|
'project_dashboard_advanced/static/src/js/dashboard.js',
|
||
|
|
'project_dashboard_advanced/static/src/xml/dashboard.xml',
|
||
|
|
],
|
||
|
|
},
|
||
|
|
'images': ['static/description/icon.png'],
|
||
|
|
'installable': True,
|
||
|
|
'application': True,
|
||
|
|
'auto_install': False,
|
||
|
|
}
|
||
|
|
|