mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
This UOM should be convertable (in the same category) as the normal stock UOM for the product. Example: If you want to sell 'units' of 50lbs then you should make a "50lbs" UOM in the Weight category and use that as the sale and purchase UOM, then your "Catch Weight UOM" can be the stock "lb(s)" UOM.
21 lines
434 B
Python
21 lines
434 B
Python
{
|
|
'name': 'Product Catch Weight',
|
|
'version': '11.0.1.0.0',
|
|
'category': 'Warehouse',
|
|
'depends': [
|
|
'sale_stock',
|
|
'purchase',
|
|
],
|
|
'description': """
|
|
""",
|
|
'author': 'Hibou Corp.',
|
|
'license': 'AGPL-3',
|
|
'website': 'https://hibou.io/',
|
|
'data': [
|
|
'views/account_invoice_views.xml',
|
|
'views/stock_views.xml',
|
|
],
|
|
'installable': True,
|
|
'application': False,
|
|
}
|