product_uom_change/__manifest__.py

20 lines
660 B
Python

{
'name': 'Product UOM Change',
'version': '19.0.1.0.0',
'summary': 'Allow changing Product UOM even if stock moves exist',
'description': """
This module adds a wizard to allow changing the Unit of Measure (UOM) of a product
even if it has existing stock moves, provided the new UOM is in the same category.
WARNING: This bypasses Odoo's standard validation. Use with caution.
""",
'category': 'Inventory',
'author': 'Suherdy Yacob',
'depends': ['stock', 'product'],
'data': [
'security/ir.model.access.csv',
'wizard/change_uom_views.xml',
],
'license': 'LGPL-3',
}