合并企业版代码(未测试,先提交到测试分支)

This commit is contained in:
qihao.gong@jikimo.com
2023-04-14 17:42:23 +08:00
parent 7a7b3d7126
commit d28525526a
1300 changed files with 513579 additions and 5426 deletions

25
web_grid/__manifest__.py Normal file
View File

@@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
{
'name': "Grid View",
'summary': "Basic 2D Grid view for odoo",
'category': 'Hidden',
'version': '0.1',
'depends': ['web'],
'assets': {
'web.assets_backend': [
'web_grid/static/src/**/*',
'web_grid/static/src/xml/**/*',
],
'web.qunit_suite_tests': [
'web_grid/static/tests/grid_tests.js',
'web_grid/static/tests/mock_server.js',
],
'web.qunit_mobile_suite_tests': [
'web_grid/static/tests/grid_mobile_tests.js',
'web_grid/static/tests/mock_server.js',
],
},
'auto_install': True,
'license': 'OEEL-1',
}