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
+48
View File
@@ -0,0 +1,48 @@
{
'name': "gantt_view_ck",
'summary': "Short (1 phrase/line) summary of the module's purpose",
'description': """
Long description of module's purpose
""",
'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',
# any module necessary for this one to work correctly
'depends': ['base','project'],
# always loaded
'data': [
# 'security/ir.model.access.csv',
'views/project_view.xml',
'views/views.xml',
],
# only loaded in demonstration mode
'demo': [
'demo/demo.xml',
],
'assets': {
'web.assets_backend': [
# 1. Load the Frappe Gantt Library FIRST
'gantt_view_ck/static/src/lib/frappe-gantt.min.css',
'gantt_view_ck/static/src/lib/frappe-gantt.min.js',
# 2. Load your custom module CSS and OWL components
'gantt_view_ck/static/src/css/gantt_styles.css',
'gantt_view_ck/static/src/xml/gantt_view_template.xml',
'gantt_view_ck/static/src/js/gantt_controller.js',
],
},
'installable': True,
'application': True,
'license': 'LGPL-3',
}