__openerp__.py 1.27 KB
# -*- 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': """
       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.
    """,

    '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,
}