123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {
- 'name': "协作平台",
- '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': [
- 'archives',
- 'base_setup',
- 'base',
- 'mail',
- 'web',
- # 'decimal_precision',
- ],
- # always loaded
- 'data': [
- 'security/security.xml',
- 'security/ir.model.access.csv',
- 'views/views.xml',
- 'views/plan.xml',
- 'views/project_schedule.xml',
- 'views/task_manage.xml',
- 'views/meeting_summary.xml',
- # 知识
- 'models/knowledge/knowledge.xml',
- 'security/groups_menu.xml', # 放在最后面
- ],
- 'qweb': [],
- # only loaded in demonstration mode
- 'demo': [
- # 'demo/demo.xml',
- ],
- }
|