|  | # Copyright 2016 上海开阖软件有限公司 (http://www.osbzr.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
    'name': "GoodERP 任务模块",
    'summary': """
        使用 GTD 理念支持员工记录日常工作进度 """,
    'description':
    '''
该模块实现了 GoodERP 中 任务管理 的功能。
将project拆分成task,并将task分配到人。每个人每天一张 timesheet 记录每个 task 的执行过程。
    ''',
    'author': "开阖软件",
    'website': "http://www.osbzr.com",
    'category': 'gooderp',
    'version': '18.0',
    "license": "AGPL-3",
    'depends': ['money'],
    'data': [
        'security/ir.model.access.csv',
        'security/groups.xml',
        'views/views.xml',
        'data/data.xml',
    ],
    'demo': [
        'demo/demo.xml',
    ],
    'application': True,
}
 |