[IMP] hr_payroll:improved help for salary rules.
authormtr <mtr@mtr>
Wed, 2 Mar 2011 08:53:59 +0000 (14:23 +0530)
committermtr <mtr@mtr>
Wed, 2 Mar 2011 08:53:59 +0000 (14:23 +0530)
bzr revid: mtr@mtr-20110302085359-19ayfxa43pe2aasa

addons/hr_payroll/hr_payroll.py

index 79214e5..7e88980 100644 (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'),