From 117238fcc1ff5ecedf279551de866dc494010f13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lionel=20Sausin=20=28Num=C3=A9rigraphe=29?= Date: Mon, 28 Jul 2014 11:51:55 +0200 Subject: [PATCH] [IMP] stock: Make the description of the UoS feature not misleading The description was misleading because sales and invoices are using the UoS quantity. It's actually the WMS that does not use it. Closes #1413 --- addons/stock/res_config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/stock/res_config.py b/addons/stock/res_config.py index b0c9088e051..852550976da 100644 --- a/addons/stock/res_config.py +++ b/addons/stock/res_config.py @@ -82,10 +82,10 @@ This installs the module product_expiry."""), 'group_uom': fields.boolean("Manage different units of measure for products", implied_group='product.group_uom', help="""Allows you to select and maintain different units of measure for products."""), - 'group_uos': fields.boolean("Invoice products in a different unit of measure than the sales order", + 'group_uos': fields.boolean("Store products in a different unit of measure than the sales order", implied_group='product.group_uos', - help='Allows you to sell units of a product, but invoice based on a different unit of measure.\n' - 'For instance, you can sell pieces of meat that you invoice based on their weight.'), + help='Allows you to store units of a product, but sell and invoice based on a different unit of measure.\n' + 'For instance, you can store pieces of meat that you sell and invoice based on their weight.'), 'group_stock_packaging': fields.boolean("Allow to define several packaging methods on products", implied_group='product.group_stock_packaging', help="""Allows you to create and manage your packaging dimensions and types you want to be maintained in your system."""),