forked from Mapan/odoo17e
20 lines
617 B
Python
20 lines
617 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': 'UNSPSC product codes',
|
|
'version': '0.2',
|
|
'category': 'Hidden',
|
|
'summary': 'UNSPSC product codes',
|
|
'description': """
|
|
Countries like Colombia, Peru, Mexico, Denmark need to be able to use the
|
|
UNSPSC code for their products and uoms.
|
|
""",
|
|
'depends': ['account'],
|
|
'data': ['views/product_views.xml',
|
|
'security/ir.model.access.csv'],
|
|
"post_init_hook": "post_init_hook",
|
|
'installable': True,
|
|
'uninstall_hook': 'uninstall_hook',
|
|
'license': 'OEEL-1',
|
|
}
|