[IMP]product: improve tool-tip

bzr revid: mma@tinyerp.com-20121018085142-c8g4v72xlf7rmfne
This commit is contained in:
Mayur Maheshwari (OpenERP) 2012-10-18 14:21:42 +05:30
parent b26d5a8877
commit 604f6f8b09
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ class product_category(osv.osv):
'parent_id': fields.many2one('product.category','Parent Category', select=True, ondelete='cascade'),
'child_id': fields.one2many('product.category', 'parent_id', string='Child Categories'),
'sequence': fields.integer('Sequence', select=True, help="Gives the sequence order when displaying a list of product categories."),
'type': fields.selection([('view','View'), ('normal','Normal')], 'Category Type', help="A category of the view type is a virtual category that can be used as the parent of another category to create hierarchical structure."),
'type': fields.selection([('view','View'), ('normal','Normal')], 'Category Type', help="A category of the view type is a virtual category that can be used as the parent of another category to create a hierarchical structure."),
'parent_left': fields.integer('Left Parent', select=1),
'parent_right': fields.integer('Right Parent', select=1),
}