合并企业版代码(未测试,先提交到测试分支)
This commit is contained in:
32
web_gantt/__manifest__.py
Normal file
32
web_gantt/__manifest__.py
Normal file
@@ -0,0 +1,32 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Web Gantt',
|
||||
'category': 'Hidden',
|
||||
'description': """
|
||||
Odoo Web Gantt chart view.
|
||||
=============================
|
||||
|
||||
""",
|
||||
'version': '2.0',
|
||||
'depends': ['web'],
|
||||
'assets': {
|
||||
'web._assets_primary_variables': [
|
||||
'web_gantt/static/src/scss/web_gantt.variables.scss',
|
||||
],
|
||||
'web.assets_backend': [
|
||||
'web_gantt/static/src/**/*',
|
||||
'web_gantt/static/src/xml/**/*',
|
||||
],
|
||||
'web.qunit_suite_tests': [
|
||||
'web_gantt/static/tests/**/*',
|
||||
('remove', 'web_gantt/static/tests/gantt_mobile_tests.js'),
|
||||
],
|
||||
'web.qunit_mobile_suite_tests': [
|
||||
'web_gantt/static/tests/gantt_mobile_tests.js',
|
||||
],
|
||||
},
|
||||
'auto_install': True,
|
||||
'license': 'OEEL-1',
|
||||
}
|
||||
Reference in New Issue
Block a user