[IMP] MRP: Rename fields in res_config.py

bzr revid: jap@tinyerp.com-20120426132549-4cd6lpr1fkv042mz
This commit is contained in:
Jagdish Panchal (Open ERP) 2012-04-26 18:55:49 +05:30
parent dad95e6283
commit f32a92bd5b
1 changed files with 4 additions and 4 deletions

View File

@ -44,12 +44,12 @@ class mrp_config_settings(osv.osv_memory):
'module_mrp_operations': fields.boolean("Track Dates in Work Order Operations",
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 Different Products from one Production",
'module_mrp_subproduct': fields.boolean("Produce Several Product from One Production",
help="""You can configure sub-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."""),
'module_mrp_jit': fields.boolean("Just in Time Scheduling",
'module_mrp_jit': fields.boolean("Real-Time Scheduling",
help="""This allows Just In Time computation of procurement orders.
All procurement orders will be processed immediately, which could in some
cases entail a small performance impact.
@ -59,9 +59,9 @@ class mrp_config_settings(osv.osv_memory):
help="""Routings allow you to create and manage the manufacturing operations that should be followed
within your work centers in order to produce a product. They are attached to bills of materials
that will define the required raw materials."""),
'group_mrp_properties': fields.boolean("Manage Properties",
'group_mrp_properties': fields.boolean("Allow Several BoMs per Product",
implied_group='product.group_mrp_properties',
help="""Allows to define specific property that can be assigned to your bill of materials."""),
help="""The selection of the right Bill of Material to use will depend on the properties specified on the sale order and the Bill of Material."""),
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: