From 0f1edbf9697fa0d428e252cdc5a6d8975b4d0a0f Mon Sep 17 00:00:00 2001 From: "Ravi Gohil (Open ERP)" Date: Thu, 5 Apr 2012 11:12:17 +0530 Subject: [PATCH] [FIX] stock: Improved help tool-tip : (Maintenance Case : 573452) lp bug: https://launchpad.net/bugs/944341 fixed bzr revid: rgo@tinyerp.com-20120405054217-hmqle867j93y8lgi --- addons/stock/i18n/stock.pot | 4 ++-- addons/stock/stock.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/stock/i18n/stock.pot b/addons/stock/i18n/stock.pot index 13ed0445770..a198722cf16 100644 --- a/addons/stock/i18n/stock.pot +++ b/addons/stock/i18n/stock.pot @@ -1162,8 +1162,8 @@ msgstr "" #. module: stock #: help:stock.location,chained_company_id:0 msgid "" -"The company the Picking List containing the chained move will belong to " -"(leave empty to use the default company determination rules" +"Picking List containing the chained move will belong to this company " +"( leave empty to use the default company determination rules )." msgstr "" #. module: stock diff --git a/addons/stock/stock.py b/addons/stock/stock.py index 83a36aaeec9..2fab1fd9f80 100644 --- a/addons/stock/stock.py +++ b/addons/stock/stock.py @@ -188,7 +188,7 @@ class stock_location(osv.osv): "by a worker. With 'Automatic No Step Added', the location is replaced in the original move." ), 'chained_picking_type': fields.selection([('out', 'Sending Goods'), ('in', 'Getting Goods'), ('internal', 'Internal')], 'Shipping Type', help="Shipping Type of the Picking List that will contain the chained move (leave empty to automatically detect the type based on the source and destination locations)."), - 'chained_company_id': fields.many2one('res.company', 'Chained Company', help='The company the Picking List containing the chained move will belong to (leave empty to use the default company determination rules'), + 'chained_company_id': fields.many2one('res.company', 'Chained Company', help="Picking List containing the chained move will belong to this company ( leave empty to use the default company determination rules )."), 'chained_delay': fields.integer('Chaining Lead Time',help="Delay between original move and chained move in days"), 'address_id': fields.many2one('res.partner.address', 'Location Address',help="Address of customer or supplier."), 'icon': fields.selection(tools.icons, 'Icon', size=64,help="Icon show in hierarchical tree view"),