[IMP] improve the tooltip on code field of hr.salary.rule object

bzr revid: psi@tinyerp.co.in-20110428133056-cramofq63y4s9nhy
This commit is contained in:
psi (Open ERP) 2011-04-28 19:00:56 +05:30
parent 740aceecc3
commit c44fef6526
1 changed files with 1 additions and 1 deletions

View File

@ -638,7 +638,7 @@ class hr_salary_rule(osv.osv):
_name = 'hr.salary.rule'
_columns = {
'name':fields.char('Name', size=256, required=True, readonly=False),
'code':fields.char('Code', size=64, required=True, help="Code is case sensitive."),
'code':fields.char('Code', size=64, required=True, help="The code of salary rules can be used as reference in computation of other rules. In that case, it is case sensitive."),
'sequence': fields.integer('Sequence', required=True, help='Use to arrange calculation sequence'),
'category_id':fields.many2one('hr.salary.head', 'Salary Head', required=True),
'active':fields.boolean('Active', help="If the active field is set to false, it will allow you to hide the salary rule without removing it."),