12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- 'name': "综合报表",
- 'summary': """
- 自定义综合报表""",
- 'description': """
- 自定义综合报表
- """,
- 'author': "ZCDM 开发",
- 'website': "http://www.zcdmdata.com",
- 'sequence': 200,
- # 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.1',
- 'installable': True,
- 'application': True,
- # any module necessary for this one to work correctly
- 'depends': [
- 'web',
- 'archives'
- ],
- # always loaded
- 'data': [
- 'security/security.xml',
- 'security/ir.model.access.csv',
- 'views/views.xml',
- 'views/report_resource.xml',
- 'views/multi_report.xml',
- 'security/groups_menu.xml', # 放在最后面
- ],
- 'qweb': ['static/src/xml/*.xml', ],
- # only loaded in demonstration mode
- 'demo': [
- # 'demo/demo.xml',
- ],
- }
|