12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- 'name': "Tab Settings",
- 'summary': """
- 列表,看板,图标。。。页签可设置""",
- 'description': """
- 列表,看板,图标。。。页签可设置
- """,
- 'author': "ZCDM 开发",
- 'website': "http://www.zcdmdata.com",
- 'sequence': 2,
- # Categories can be used to filter modules in modules listing
- # Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml
- # for the full list
- 'category': '',
- 'version': '0.3',
- 'installable': True,
- 'application': True,
- # any module necessary for this one to work correctly
- 'depends': [
- 'web'
- ],
- # always loaded
- 'data': [
- 'security/ir.model.access.csv',
- 'views/header.xml',
- 'views/tab_settings.xml',
- ],
- 'qweb': ['static/src/xml/*.xml', ],
- # only loaded in demonstration mode
- 'demo': [
- # 'demo/demo.xml',
- ],
- }
|