[FIX] hr_payroll : hr payroll please correct text

lp bug: https://launchpad.net/bugs/916526 fixed

bzr revid: mdi@tinyerp.com-20120118122936-yb4d9mc7gz9bkw0y
This commit is contained in:
Divyesh Makwana (Open ERP) 2012-01-18 17:59:36 +05:30
parent 24ef362e7f
commit 885d596dc5
1 changed files with 1 additions and 1 deletions

View File

@ -772,7 +772,7 @@ class hr_salary_rule(osv.osv):
'parent_rule_id':fields.many2one('hr.salary.rule', 'Parent Salary Rule', select=True),
'company_id':fields.many2one('res.company', 'Company', required=False),
'condition_select': fields.selection([('none', 'Always True'),('range', 'Range'), ('python', 'Python Expression')], "Condition Based on", required=True),
'condition_range':fields.char('Range Based on',size=1024, readonly=False, help='This will use to computer the % fields values, in general its on basic, but You can use all categories code field in small letter as a variable name i.e. hra, ma, lta, etc...., also you can use, static varible basic'),
'condition_range':fields.char('Range Based on',size=1024, readonly=False, help='This will use to compute the % fields values, in general its on basic, but You can use all categories code field in small letter as a variable name i.e. hra, ma, lta, etc...., also you can use, static variable basic'),
'condition_python':fields.text('Python Condition', required=True, readonly=False, help='Applied this rule for calculation if condition is true. You can specify condition like basic > 1000.'),#old name = conditions
'condition_range_min': fields.float('Minimum Range', required=False, help="The minimum amount, applied for this rule."),
'condition_range_max': fields.float('Maximum Range', required=False, help="The maximum amount, applied for this rule."),