__openerp__.py 1.27 KB
Newer Older
1 2 3 4 5 6 7 8
# -*- coding: utf-8 -*-
{
    'name': "La Cagette Sales Helper",

    'summary': """
        Retrieve and display products information to help with future sales - via API or Odoo Menu""",

    'description': """
9 10 11
       Display on the product page buttons with total losses, autoconsommation,
       employees meals & and nb of discounts in sales.\n
       These Odoo system parameters need to be set: losses, autoconso and meals locations id.
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
    """,

    'author': "damien.moulard",
    '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.3.2',

    # any module necessary for this one to work correctly
    'depends': ['base', 'point_of_sale'],
    'qweb': ['static/src/xml/qweb.xml'],
    # always loaded
    'data': [
        # be careful : called sequently (exterenal ID must be put before)
        #'security/ir.model.access.csv',
        #'templates.xml',
        'static/src/xml/templates.xml',
        'views/view_product_data_details.xml',
        'views/product_template_view.xml',
        'data/ir_config_parameter_data.xml'
    ],
    'installable': True,
}