first push message

This commit is contained in:
2026-07-01 14:41:49 +07:00
parent 6667dec2bf
commit 58b5f46cc4
2951 changed files with 316619 additions and 0 deletions
@@ -0,0 +1,52 @@
{
'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,
}