__manifest__.py 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. 'name': "协作平台",
  3. 'summary': """
  4. 协作平台相关""",
  5. 'description': """
  6. 计划以及任务相关的管控
  7. """,
  8. 'author': "ZCDM 开发",
  9. 'website': "http://www.zcdmdata.com",
  10. 'sequence': 2,
  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.3',
  16. 'installable': True,
  17. 'application': True,
  18. # any module necessary for this one to work correctly
  19. 'depends': [
  20. 'archives',
  21. 'base_setup',
  22. 'base',
  23. 'mail',
  24. 'web',
  25. # 'decimal_precision',
  26. ],
  27. # always loaded
  28. 'data': [
  29. 'security/security.xml',
  30. 'security/ir.model.access.csv',
  31. 'views/views.xml',
  32. 'views/plan.xml',
  33. 'views/project_schedule.xml',
  34. 'views/task_manage.xml',
  35. 'views/meeting_summary.xml',
  36. # 知识
  37. 'models/knowledge/knowledge.xml',
  38. 'security/groups_menu.xml', # 放在最后面
  39. ],
  40. 'qweb': [],
  41. # only loaded in demonstration mode
  42. 'demo': [
  43. # 'demo/demo.xml',
  44. ],
  45. }