[IMP] hr_payroll:improved help for salary rules.

bzr revid: mtr@mtr-20110302085359-19ayfxa43pe2aasa
This commit is contained in:
mtr 2011-03-02 14:23:59 +05:30
parent 4723e2da6b
commit cbaaaba383
1 changed files with 2 additions and 2 deletions

View File

@ -1276,8 +1276,8 @@ class hr_salary_rule(osv.osv):
_name = 'hr.salary.rule'
_columns = {
'appears_on_payslip': fields.boolean('Appears on Payslip', help="Do you want to display rule on payslip?"),
'min_range': fields.float('Minimum Range', required=False, help="The minimum amount that can be applied for this rule."),
'max_range': fields.float('Maximum Range', required=False, help="The maximum amount that can be applied for this rule."),
'min_range': fields.float('Minimum Range', required=False, help="The minimum amount, applied for this rule."),
'max_range': fields.float('Maximum Range', required=False, help="The maximum amount, applied for this rule."),
'sal_rule_id':fields.many2one('hr.salary.rule', 'Parent Salary Structure', select=True),
'child_depend':fields.boolean('Children Rule'),
'child_ids':fields.one2many('hr.salary.rule', 'sal_rule_id', 'Child Salary Sructure'),