__manifest__.py 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. 'name': "综合报表",
  3. 'summary': """
  4. 自定义综合报表""",
  5. 'description': """
  6. 自定义综合报表
  7. """,
  8. 'author': "ZCDM 开发",
  9. 'website': "http://www.zcdmdata.com",
  10. 'sequence': 200,
  11. # Categories can be used to filter modules in modules listing
  12. # Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml
  13. # for the full list
  14. 'category': '',
  15. 'version': '0.1',
  16. 'installable': True,
  17. 'application': True,
  18. # any module necessary for this one to work correctly
  19. 'depends': [
  20. 'web',
  21. 'archives'
  22. ],
  23. # always loaded
  24. 'data': [
  25. 'security/security.xml',
  26. 'security/ir.model.access.csv',
  27. 'views/views.xml',
  28. 'views/report_resource.xml',
  29. 'views/multi_report.xml',
  30. 'security/groups_menu.xml', # 放在最后面
  31. ],
  32. 'qweb': ['static/src/xml/*.xml', ],
  33. # only loaded in demonstration mode
  34. 'demo': [
  35. # 'demo/demo.xml',
  36. ],
  37. }