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

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

29
web_map/__manifest__.py Normal file
View File

@@ -0,0 +1,29 @@
# -*- coding: utf-8 -*-
{
'name':"Map View",
'summary':"Defines the map view for odoo enterprise",
'description':"Allows the viewing of records on a map",
'category': 'Hidden',
'version':'1.0',
'depends':['web', 'base_setup'],
'data':[
"views/res_config_settings.xml",
"views/res_partner_views.xml",
],
'auto_install': True,
'license': 'OEEL-1',
'assets': {
'web.assets_backend': [
'web_map/static/src/**/*',
],
'web.qunit_suite_tests': [
'web_map/static/lib/**/*',
'web_map/static/tests/**/*',
('remove', 'web_map/static/tests/map_view/map_view_mobile_tests.js'),
],
'web.qunit_mobile_suite_tests': [
'web_map/static/tests/map_view/map_view_mobile_tests.js',
'web_map/static/lib/**/*',
],
}
}