合并企业版代码(未测试,先提交到测试分支)
This commit is contained in:
29
web_map/__manifest__.py
Normal file
29
web_map/__manifest__.py
Normal 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/**/*',
|
||||
],
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user