mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-21 01:52:03 +02:00
27 lines
725 B
Python
27 lines
725 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Units of measure',
|
|
'version': '1.0',
|
|
'category': 'Sales/Sales',
|
|
'depends': ['base'],
|
|
'description': """
|
|
This is the base module for managing Units of measure.
|
|
========================================================================
|
|
""",
|
|
'data': [
|
|
'data/uom_data.xml',
|
|
'security/uom_security.xml',
|
|
'security/ir.model.access.csv',
|
|
'views/uom_uom_views.xml',
|
|
],
|
|
'installable': True,
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'uom/static/src/components/**/*',
|
|
],
|
|
},
|
|
'author': 'Odoo S.A.',
|
|
'license': 'LGPL-3',
|
|
}
|