__openerp__.py 787 Bytes
Newer Older
1 2 3 4 5 6 7 8
# -*- coding: utf-8 -*-
{
    'name': "La Cagette - Membership",

    'summary': """
        Tuning membership rules""",

    'description': """
9
        Specific rules are beeing implemented
10 11
        lacagette_membership.absence_status can be excused or absent

12 13
    """,

14
    'author': "fracolo/cooperatic",
15 16 17 18
    'website': "https://lacagette-coop.fr",

    #
    'category': 'Uncategorized',
19
    'version': '0.0.6',
20 21

    # any module necessary for this one to work correctly
22
    'depends': ['base', 'coop_membership', 'coop_shift'],
23 24
    # always loaded
    'data': [
25
        'security/ir.model.access.csv',
26
        'data/ir_cron.xml',
27 28 29 30
        'data/ir_config_parameter_data.xml',
        'static/src/xml/templates.xml',
        'views/res_partner.xml',

31 32 33
    ],
    'installable': True,
}