51 lines
2.1 KiB
Python
51 lines
2.1 KiB
Python
{
|
|
'name': 'FTP Custom Dashboards',
|
|
'summary': 'Advanced Dynamic Dashboards with 3D Views, Charts, and Real-time Data for Odoo 18 Community',
|
|
'category': 'Reporting',
|
|
'version': '1.0.0',
|
|
'author': 'Your Name',
|
|
'website': 'https://yourwebsite.com',
|
|
'license': 'LGPL-3',
|
|
'maintainers': ['yourgithubusername'],
|
|
'sequence': -100,
|
|
'depends': [
|
|
'base', 'web', 'hr', 'hr_recruitment_extended',
|
|
'website_hr_recruitment_extended', 'website_mail'
|
|
],
|
|
'data': [
|
|
'views/dashboard_menu.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
# Ensure jQuery and Odoo dependencies are loaded first
|
|
'web/static/lib/jquery/jquery.js',
|
|
'web/static/src/legacy/js/public/public_widget.js',
|
|
'web/static/src/legacy/js/public/minimal_dom.js',
|
|
'web/static/src/legacy/js/core/*',
|
|
'ftp_custom_dashboards/static/src/lib/Chart/Chart.js',
|
|
'ftp_custom_dashboards/static/src/lib/d3/d3.min.js',
|
|
'ftp_custom_dashboards/static/src/lib/three/three.min.js',
|
|
# 'ftp_custom_dashboards/static/src/lib/Chart/chartjs-plugin-datalabels.js',
|
|
|
|
# Local assets (Sortable.js and Select2)
|
|
'website_hr_recruitment_extended/static/src/lib/select2/selecttwo.css',
|
|
'website_hr_recruitment_extended/static/src/js/select2_init.js',
|
|
'ftp_custom_dashboards/static/src/lib/sortable/Sortable.min.js',
|
|
'ftp_custom_dashboards/static/src/lib/interact/interact.min.js',
|
|
|
|
# Custom module assets
|
|
'ftp_custom_dashboards/static/src/js/customRecruitmentDashboard.js',
|
|
'ftp_custom_dashboards/static/src/xml/customRecruitmentDashboard.xml',
|
|
'ftp_custom_dashboards/static/src/css/customRecruitmentDashboard.css',
|
|
'ftp_custom_dashboards/static/src/dashboard_item/dashboard_item.js',
|
|
'ftp_custom_dashboards/static/src/dashboard_item/dashboard_item.xml',
|
|
],
|
|
},
|
|
'external_dependencies': {
|
|
'python': ['numpy', 'pandas'],
|
|
},
|
|
'installable': True,
|
|
'application': True,
|
|
'auto_install': False,
|
|
}
|