From 19c39797b0de8fb3b65b015bbd3404b2a49963a7 Mon Sep 17 00:00:00 2001 From: "sbh (Open ERP)" Date: Tue, 31 Aug 2010 16:59:56 +0530 Subject: [PATCH] [ADD] stock: Add the tooltips on posx,posy,posz bzr revid: sbh@tinyerp.com-20100831112956-t91f8ewyg3ta36w6 --- addons/stock/stock.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/stock/stock.py b/addons/stock/stock.py index f1fb10ce46d..bfabffd4bdf 100644 --- a/addons/stock/stock.py +++ b/addons/stock/stock.py @@ -212,9 +212,9 @@ class stock_location(osv.osv): 'icon': fields.selection(tools.icons, 'Icon', size=64,help="Icon show in hierarchical tree view"), 'comment': fields.text('Additional Information'), - 'posx': fields.integer('Corridor (X)'), - 'posy': fields.integer('Shelves (Y)'), - 'posz': fields.integer('Height (Z)'), + 'posx': fields.integer('Corridor (X)',help="Optional localization details, for information purpose only"), + 'posy': fields.integer('Shelves (Y)', help="Optional localization details, for information purpose only"), + 'posz': fields.integer('Height (Z)', help="Optional localization details, for information purpose only"), 'parent_left': fields.integer('Left Parent', select=1), 'parent_right': fields.integer('Right Parent', select=1),