__openerp__.py 1.05 KB
# -*- coding: utf-8 -*-
{
    'name': "La Cagette CPO personnalisé",

    'summary': """
        Add products list to inventory""",

    'description': """
       Add create list function
       Add lacagette_cpo.proxy_url parameter to process file
       (ex http://10.246.163.159:34001/inventory/generate_inventory_list)
    """,

    'author': "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': 'Purchase',
    'version': '0.0.1',

    # any module necessary for this one to work correctly
    'depends': ['base', 'purchase'],
    # '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',
        'data/ir_config_parameter_data.xml'
    ],
    'installable': True,
}