diff --git a/addons/mrp/mrp.py b/addons/mrp/mrp.py index f8b53583a8c..00324d4c870 100644 --- a/addons/mrp/mrp.py +++ b/addons/mrp/mrp.py @@ -196,8 +196,8 @@ class mrp_bom(osv.osv): 'code': fields.char('Reference', size=16), 'active': fields.boolean('Active', help="If the active field is set to False, it will allow you to hide the bills of material without removing it."), 'type': fields.selection([('normal','Normal BoM'),('phantom','Sets / Phantom')], 'BoM Type', required=True, - help= "If a sub-product is used in several products, it can be useful to create its own BoM. "\ - "Though if you don't want separated production orders for this sub-product, select Set/Phantom as BoM type. "\ + help= "If a by-product is used in several products, it can be useful to create its own BoM. "\ + "Though if you don't want separated production orders for this by-product, select Set/Phantom as BoM type. "\ "If a Phantom BoM is used for a root product, it will be sold and shipped as a set of components, instead of being produced."), 'method': fields.function(_compute_type, string='Method', type='selection', selection=[('',''),('stock','On Stock'),('order','On Order'),('set','Set / Pack')]), 'date_start': fields.date('Valid From', help="Validity of this BoM or component. Keep empty if it's always valid."), @@ -230,7 +230,7 @@ class mrp_bom(osv.osv): _parent_name = "bom_id" _sql_constraints = [ ('bom_qty_zero', 'CHECK (product_qty>0)', 'All product quantities must be greater than 0.\n' \ - 'You should install the mrp_subproduct module if you want to manage extra products on BoMs !'), + 'You should install the mrp_byproduct module if you want to manage extra products on BoMs !'), ] def _check_recursion(self, cr, uid, ids, context=None): diff --git a/addons/mrp/mrp_view.xml b/addons/mrp/mrp_view.xml index 42a6f6ca833..5593a103bab 100644 --- a/addons/mrp/mrp_view.xml +++ b/addons/mrp/mrp_view.xml @@ -507,7 +507,7 @@

Click to add a component to a bill of material.

- Bills of materials components are components and sub-products + Bills of materials components are components and by-products used to create master bills of materials. Use this menu to search in which BoM a specific component is used.

diff --git a/addons/mrp/res_config.py b/addons/mrp/res_config.py index 2cb9fd77f80..c1712b81a26 100644 --- a/addons/mrp/res_config.py +++ b/addons/mrp/res_config.py @@ -44,11 +44,11 @@ class mrp_config_settings(osv.osv_memory): 'module_mrp_operations': fields.boolean("Allow detailed planning of work order", help="""This allows to add state, date_start,date_stop in production order operation lines (in the "Work Centers" tab). This installs the module mrp_operations."""), - 'module_mrp_subproduct': fields.boolean("Produce several products from one manufacturing order", - help="""You can configure sub-products in the bill of material. + 'module_mrp_byproduct': fields.boolean("Produce several products from one manufacturing order", + help="""You can configure by-products in the bill of material. Without this module: A + B + C -> D. With this module: A + B + C -> D + E. - This installs the module mrp_subproduct."""), + This installs the module mrp_byproduct."""), 'module_mrp_jit': fields.boolean("Generate procurement in real time", help="""This allows Just In Time computation of procurement orders. All procurement orders will be processed immediately, which could in some diff --git a/addons/mrp/res_config_view.xml b/addons/mrp/res_config_view.xml index 92b8abc92d1..6b4058fb7b4 100644 --- a/addons/mrp/res_config_view.xml +++ b/addons/mrp/res_config_view.xml @@ -28,8 +28,8 @@