__openerp__.py 847 Bytes
# -*- coding: utf-8 -*-
{
    'name': "La Cagette - Shifts",

    'summary': """
        Specific actions related to Shifts""",

    'description': """
        Actions currently implemented:
        - Retrieve all shifts, counting for each of them only active registrations
    """,

    'author': "damien.moulard / fracolo",
    'website': "https://lacagette-coop.fr",

    # 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': 'Uncategorized',
    'version': '0.0.2',

    # any module necessary for this one to work correctly
    'depends': ['base', 'coop_shift'],
    # always loaded
    'data': [
        'data/ir_cron.xml',
        'data/email_template_data.xml'
    ],
    'installable': True,
}